grpc 1.56.2 → 1.57.0.pre1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Makefile +29 -22
- data/include/grpc/event_engine/event_engine.h +22 -32
- data/include/grpc/impl/grpc_types.h +3 -0
- data/include/grpc/support/port_platform.h +29 -23
- data/src/core/ext/filters/client_channel/client_channel.cc +44 -8
- data/src/core/ext/filters/client_channel/dynamic_filters.h +3 -3
- data/src/core/ext/filters/client_channel/http_proxy.cc +5 -0
- data/src/core/ext/filters/client_channel/lb_policy/address_filtering.cc +21 -52
- data/src/core/ext/filters/client_channel/lb_policy/address_filtering.h +19 -7
- data/src/core/ext/filters/client_channel/lb_policy/child_policy_handler.cc +25 -35
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +78 -132
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.cc +2 -1
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc +4 -3
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h +3 -1
- data/src/core/ext/filters/client_channel/lb_policy/health_check_client.cc +38 -15
- data/src/core/ext/filters/client_channel/lb_policy/health_check_client.h +3 -5
- data/src/core/ext/filters/client_channel/lb_policy/health_check_client_internal.h +22 -6
- data/src/core/ext/filters/client_channel/lb_policy/oob_backend_metric_internal.h +2 -0
- data/src/core/ext/filters/client_channel/lb_policy/outlier_detection/outlier_detection.cc +97 -71
- data/src/core/ext/filters/client_channel/lb_policy/outlier_detection/outlier_detection.h +2 -16
- data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +56 -11
- data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.h +25 -0
- data/src/core/ext/filters/client_channel/lb_policy/priority/priority.cc +6 -32
- data/src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.cc +4 -6
- data/src/core/ext/filters/client_channel/lb_policy/rls/rls.cc +20 -79
- data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +1 -1
- data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +31 -19
- data/src/core/ext/filters/client_channel/lb_policy/weighted_round_robin/weighted_round_robin.cc +1 -1
- data/src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc +7 -41
- data/src/core/ext/filters/client_channel/lb_policy/xds/cds.cc +3 -67
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_channel_args.h +8 -0
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_impl.cc +31 -74
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_manager.cc +7 -51
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_resolver.cc +16 -87
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_override_host.cc +16 -50
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_wrr_locality.cc +12 -74
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +1 -4
- data/src/core/ext/filters/client_channel/resolver/dns/event_engine/event_engine_client_channel_resolver.cc +69 -59
- data/src/core/ext/filters/client_channel/resolver/polling_resolver.cc +7 -2
- data/src/core/ext/filters/client_channel/resolver/polling_resolver.h +1 -0
- data/src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc +25 -13
- data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +366 -311
- data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.h +17 -1
- data/src/core/ext/filters/client_channel/retry_filter.cc +39 -2498
- data/src/core/ext/filters/client_channel/retry_filter.h +91 -1
- data/src/core/ext/filters/client_channel/retry_filter_legacy_call_data.cc +2052 -0
- data/src/core/ext/filters/client_channel/retry_filter_legacy_call_data.h +442 -0
- data/src/core/ext/filters/client_channel/service_config_channel_arg_filter.cc +38 -58
- data/src/core/ext/filters/client_channel/subchannel.h +3 -3
- data/src/core/ext/filters/client_channel/subchannel_interface_internal.h +3 -0
- data/src/core/ext/filters/rbac/rbac_filter.cc +40 -111
- data/src/core/ext/filters/rbac/rbac_filter.h +12 -30
- data/src/core/ext/filters/stateful_session/stateful_session_filter.cc +162 -86
- data/src/core/ext/filters/stateful_session/stateful_session_filter.h +0 -6
- data/src/core/ext/transport/chttp2/server/chttp2_server.cc +7 -4
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +131 -186
- data/src/core/ext/transport/chttp2/transport/decode_huff.cc +6569 -174
- data/src/core/ext/transport/chttp2/transport/decode_huff.h +2278 -441
- data/src/core/ext/transport/chttp2/transport/frame_ping.cc +2 -3
- data/src/core/ext/transport/chttp2/transport/hpack_parse_result.h +4 -3
- data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +9 -8
- data/src/core/ext/transport/chttp2/transport/hpack_parser_table.cc +4 -4
- data/src/core/ext/transport/chttp2/transport/hpack_parser_table.h +3 -2
- data/src/core/ext/transport/chttp2/transport/internal.h +8 -4
- data/src/core/ext/transport/chttp2/transport/parsing.cc +15 -3
- data/src/core/ext/transport/chttp2/transport/writing.cc +2 -3
- data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.c +27 -6
- data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.h +143 -0
- data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.c +2 -9
- data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.h +0 -39
- data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.c +13 -8
- data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.h +35 -6
- data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.c +17 -13
- data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.h +85 -20
- data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.c +26 -7
- data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.h +45 -3
- data/src/core/ext/upb-generated/envoy/config/metrics/v3/metrics_service.upb.c +4 -3
- data/src/core/ext/upb-generated/envoy/config/metrics/v3/metrics_service.upb.h +21 -0
- data/src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.c +30 -6
- data/src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.h +180 -0
- data/src/core/ext/upb-generated/envoy/data/accesslog/v3/accesslog.upb.c +558 -0
- data/src/core/ext/upb-generated/envoy/data/accesslog/v3/accesslog.upb.h +2710 -0
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.c +30 -11
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.h +53 -24
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.c +30 -5
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.h +110 -0
- data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.c +41 -15
- data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +150 -27
- data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb.c +47 -0
- data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb.h +93 -0
- data/src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.c +88 -76
- data/src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.c +11 -12
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.h +0 -5
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_service.upbdefs.c +162 -160
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.c +129 -118
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.c +141 -135
- data/src/core/ext/upbdefs-generated/envoy/config/metrics/v3/metrics_service.upbdefs.c +19 -12
- data/src/core/ext/upbdefs-generated/envoy/config/overload/v3/overload.upbdefs.c +38 -30
- data/src/core/ext/upbdefs-generated/envoy/config/overload/v3/overload.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-generated/envoy/data/accesslog/v3/accesslog.upbdefs.c +402 -0
- data/src/core/ext/upbdefs-generated/envoy/data/accesslog/v3/accesslog.upbdefs.h +111 -0
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3/fault.upbdefs.c +80 -74
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.c +63 -47
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c +315 -293
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.c +29 -29
- data/src/core/ext/xds/xds_bootstrap_grpc.cc +33 -30
- data/src/core/ext/xds/xds_bootstrap_grpc.h +5 -13
- data/src/core/ext/xds/xds_client_grpc.cc +11 -6
- data/src/core/ext/xds/xds_client_grpc.h +16 -2
- data/src/core/ext/xds/xds_client_stats.h +10 -0
- data/src/core/ext/xds/xds_cluster.cc +26 -16
- data/src/core/ext/xds/xds_endpoint.cc +4 -7
- data/src/core/ext/xds/xds_health_status.cc +0 -17
- data/src/core/ext/xds/xds_health_status.h +5 -25
- data/src/core/ext/xds/xds_lb_policy_registry.cc +39 -0
- data/src/core/ext/xds/xds_route_config.cc +4 -0
- data/src/core/ext/xds/xds_transport_grpc.cc +1 -3
- data/src/core/lib/address_utils/parse_address.cc +63 -1
- data/src/core/lib/address_utils/parse_address.h +8 -0
- data/src/core/lib/address_utils/sockaddr_utils.cc +46 -1
- data/src/core/lib/address_utils/sockaddr_utils.h +2 -2
- data/src/core/lib/channel/channel_args.cc +21 -10
- data/src/core/lib/channel/channel_args.h +3 -0
- data/src/core/lib/channel/connected_channel.cc +4 -1
- data/src/core/lib/channel/promise_based_filter.h +1 -0
- data/src/core/lib/debug/trace.cc +1 -4
- data/src/core/lib/event_engine/cf_engine/cf_engine.cc +2 -1
- data/src/core/lib/event_engine/cf_engine/cf_engine.h +1 -1
- data/src/core/lib/event_engine/event_engine.cc +0 -12
- data/src/core/lib/event_engine/forkable.cc +47 -42
- data/src/core/lib/event_engine/handle_containers.h +0 -4
- data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.cc +4 -6
- data/src/core/lib/event_engine/posix_engine/ev_poll_posix.cc +4 -6
- data/src/core/lib/event_engine/posix_engine/posix_endpoint.cc +25 -11
- data/src/core/lib/event_engine/posix_engine/posix_endpoint.h +3 -1
- data/src/core/lib/event_engine/posix_engine/posix_engine.cc +2 -1
- data/src/core/lib/event_engine/posix_engine/posix_engine.h +8 -12
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener.cc +37 -27
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener.h +2 -0
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.cc +4 -2
- data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.cc +42 -2
- data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.h +6 -0
- data/src/core/lib/event_engine/posix_engine/timer.h +10 -37
- data/src/core/lib/event_engine/tcp_socket_utils.cc +67 -7
- data/src/core/lib/event_engine/tcp_socket_utils.h +3 -0
- data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.cc +90 -37
- data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.h +32 -12
- data/src/core/lib/event_engine/thready_event_engine/thready_event_engine.cc +12 -21
- data/src/core/lib/event_engine/thready_event_engine/thready_event_engine.h +8 -12
- data/src/core/lib/event_engine/windows/windows_endpoint.cc +55 -54
- data/src/core/lib/event_engine/windows/windows_endpoint.h +15 -12
- data/src/core/lib/event_engine/windows/windows_engine.cc +2 -1
- data/src/core/lib/event_engine/windows/windows_engine.h +8 -12
- data/src/core/lib/experiments/config.cc +60 -22
- data/src/core/lib/experiments/config.h +20 -8
- data/src/core/lib/experiments/experiments.cc +278 -0
- data/src/core/lib/experiments/experiments.h +59 -1
- data/src/core/lib/gprpp/dual_ref_counted.h +9 -9
- data/src/core/lib/gprpp/fork.cc +8 -9
- data/src/core/lib/gprpp/fork.h +6 -5
- data/src/core/lib/gprpp/if_list.h +4530 -0
- data/src/core/lib/gprpp/orphanable.h +3 -3
- data/src/core/lib/gprpp/ref_counted.h +6 -6
- data/src/core/lib/gprpp/sorted_pack.h +3 -12
- data/src/core/lib/gprpp/status_helper.h +16 -15
- data/src/core/lib/gprpp/time.h +12 -0
- data/src/core/lib/gprpp/type_list.h +32 -0
- data/src/core/lib/http/httpcli.h +6 -9
- data/src/core/lib/iomgr/error.cc +32 -2
- data/src/core/lib/iomgr/error.h +9 -10
- data/src/core/lib/iomgr/ev_epoll1_linux.cc +5 -7
- data/src/core/lib/iomgr/ev_poll_posix.cc +6 -5
- data/src/core/lib/iomgr/exec_ctx.h +11 -0
- data/src/core/lib/iomgr/pollset.h +4 -5
- data/src/core/lib/iomgr/port.h +10 -0
- data/src/core/lib/iomgr/resolve_address.cc +13 -1
- data/src/core/lib/iomgr/resolve_address.h +17 -3
- data/src/core/lib/iomgr/sockaddr_posix.h +7 -0
- data/src/core/lib/iomgr/socket_utils_common_posix.cc +29 -0
- data/src/core/lib/iomgr/socket_utils_posix.cc +2 -0
- data/src/core/lib/iomgr/socket_utils_posix.h +6 -0
- data/src/core/lib/iomgr/tcp_client_posix.cc +4 -1
- data/src/core/lib/iomgr/tcp_posix.cc +21 -4
- data/src/core/lib/iomgr/tcp_server_posix.cc +3 -2
- data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +5 -2
- data/src/core/lib/iomgr/tcp_windows.cc +1 -3
- data/src/core/lib/iomgr/vsock.cc +59 -0
- data/src/core/lib/iomgr/vsock.h +38 -0
- data/src/core/lib/iomgr/wakeup_fd_posix.h +3 -6
- data/src/core/lib/load_balancing/delegating_helper.h +115 -0
- data/src/core/lib/load_balancing/lb_policy.h +20 -0
- data/src/core/lib/load_balancing/subchannel_interface.h +6 -0
- data/src/core/lib/promise/party.h +1 -1
- data/src/core/lib/resolver/resolver_factory.h +3 -2
- data/src/core/lib/resolver/server_address.cc +9 -94
- data/src/core/lib/resolver/server_address.h +10 -64
- data/src/core/lib/resource_quota/memory_quota.h +1 -1
- data/src/core/lib/security/credentials/channel_creds_registry.h +51 -27
- data/src/core/lib/security/credentials/channel_creds_registry_init.cc +169 -9
- data/src/core/lib/security/credentials/composite/composite_credentials.cc +1 -1
- data/src/core/lib/security/credentials/composite/composite_credentials.h +3 -1
- data/src/core/lib/security/credentials/external/external_account_credentials.cc +40 -1
- data/src/core/lib/security/credentials/external/external_account_credentials.h +6 -0
- data/src/core/lib/security/credentials/fake/fake_credentials.cc +30 -38
- data/src/core/lib/security/credentials/fake/fake_credentials.h +28 -0
- data/src/core/lib/security/credentials/tls/tls_credentials.cc +1 -1
- data/src/core/lib/security/credentials/tls/tls_credentials.h +3 -1
- data/src/core/lib/service_config/service_config_call_data.h +5 -0
- data/src/core/lib/slice/slice.h +16 -0
- data/src/core/lib/surface/call.cc +31 -29
- data/src/core/lib/surface/server.h +2 -2
- data/src/core/lib/surface/version.cc +2 -2
- data/src/core/lib/transport/metadata_batch.cc +7 -7
- data/src/core/lib/transport/metadata_batch.h +86 -48
- data/src/core/lib/transport/parsed_metadata.h +34 -20
- data/src/core/lib/transport/simple_slice_based_metadata.h +9 -2
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc +4 -6
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc +1 -2
- data/src/core/tsi/ssl_transport_security.cc +28 -7
- data/src/ruby/bin/math_pb.rb +24 -18
- data/src/ruby/ext/grpc/extconf.rb +19 -18
- data/src/ruby/ext/grpc/rb_call.c +62 -39
- data/src/ruby/ext/grpc/rb_call_credentials.c +0 -1
- data/src/ruby/ext/grpc/rb_channel.c +126 -49
- data/src/ruby/ext/grpc/rb_channel.h +1 -0
- data/src/ruby/ext/grpc/rb_channel_args.c +16 -2
- data/src/ruby/ext/grpc/rb_channel_args.h +4 -0
- data/src/ruby/ext/grpc/rb_channel_credentials.c +0 -1
- data/src/ruby/ext/grpc/rb_compression_options.c +0 -1
- data/src/ruby/ext/grpc/rb_event_thread.c +22 -6
- data/src/ruby/ext/grpc/rb_event_thread.h +1 -0
- data/src/ruby/ext/grpc/rb_grpc.c +192 -30
- data/src/ruby/ext/grpc/rb_grpc.h +8 -2
- data/src/ruby/ext/grpc/rb_server.c +62 -45
- data/src/ruby/ext/grpc/rb_server_credentials.c +0 -1
- data/src/ruby/ext/grpc/rb_xds_channel_credentials.c +0 -1
- data/src/ruby/ext/grpc/rb_xds_server_credentials.c +0 -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/grpc/health/v1/health_pb.rb +24 -13
- data/src/ruby/pb/src/proto/grpc/testing/empty_pb.rb +24 -3
- data/src/ruby/pb/src/proto/grpc/testing/messages_pb.rb +25 -111
- data/src/ruby/pb/src/proto/grpc/testing/test_pb.rb +25 -2
- data/third_party/boringssl-with-bazel/err_data.c +552 -552
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_strnid.c +5 -5
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_time.c +34 -1
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_utctm.c +4 -1
- data/third_party/boringssl-with-bazel/src/crypto/bio/bio.c +3 -3
- data/third_party/boringssl-with-bazel/src/crypto/bio/bio_mem.c +7 -8
- data/third_party/boringssl-with-bazel/src/crypto/bio/connect.c +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/bio/fd.c +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/bio/file.c +8 -8
- data/third_party/boringssl-with-bazel/src/crypto/bio/socket.c +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/bio/socket_helper.c +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/chacha/chacha.c +19 -1
- data/third_party/boringssl-with-bazel/src/crypto/chacha/internal.h +8 -1
- data/third_party/boringssl-with-bazel/src/crypto/conf/conf.c +28 -185
- data/third_party/boringssl-with-bazel/src/crypto/conf/conf_def.h +3 -7
- data/third_party/boringssl-with-bazel/src/crypto/conf/internal.h +8 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_apple.c +3 -0
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519.c +49 -46
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519_64_adx.c +18 -0
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519_tables.h +2809 -7417
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/internal.h +27 -5
- data/third_party/boringssl-with-bazel/src/crypto/dsa/internal.h +20 -0
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_asn1.c +110 -72
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_derive.c +4 -3
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/hash_to_curve.c +15 -14
- data/third_party/boringssl-with-bazel/src/crypto/err/err.c +13 -10
- data/third_party/boringssl-with-bazel/src/crypto/evp/evp.c +35 -12
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec.c +2 -4
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec_asn1.c +3 -7
- data/third_party/boringssl-with-bazel/src/crypto/evp/pbkdf.c +3 -3
- data/third_party/boringssl-with-bazel/src/crypto/evp/print.c +7 -6
- data/third_party/boringssl-with-bazel/src/crypto/ex_data.c +34 -72
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div.c +12 -5
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd.c +5 -6
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/internal.h +12 -6
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery.c +17 -18
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery_inv.c +51 -15
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/rsaz_exp.c +7 -7
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/delocate.h +5 -6
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/internal.h +2 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/builtin_curves.h +277 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec.c +180 -404
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_key.c +3 -3
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_montgomery.c +24 -57
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/felem.c +17 -13
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/internal.h +33 -71
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/oct.c +18 -17
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p224-64.c +5 -7
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz.c +15 -18
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256.c +9 -11
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/scalar.c +24 -24
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple.c +11 -27
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple_mul.c +8 -8
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/wnaf.c +4 -4
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/ecdsa.c +9 -3
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hkdf/hkdf.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/fork_detect.c +40 -26
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/internal.h +21 -7
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/rand.c +38 -19
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/urandom.c +2 -29
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/internal.h +55 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.c +33 -52
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.c +3 -8
- data/third_party/boringssl-with-bazel/src/crypto/internal.h +198 -79
- data/third_party/boringssl-with-bazel/src/crypto/kyber/kyber.c +5 -4
- data/third_party/boringssl-with-bazel/src/crypto/mem.c +7 -8
- data/third_party/boringssl-with-bazel/src/crypto/obj/obj.c +19 -23
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/internal.h +3 -3
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/p5_pbev2.c +3 -3
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8.c +7 -7
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.c +8 -5
- data/third_party/boringssl-with-bazel/src/crypto/pool/internal.h +1 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/deterministic.c +7 -6
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/forkunsafe.c +6 -12
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/getentropy.c +48 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/{fuchsia.c → ios.c} +8 -8
- data/third_party/boringssl-with-bazel/src/crypto/{refcount_no_threads.c → rand_extra/trusty.c} +15 -19
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/windows.c +41 -19
- data/third_party/boringssl-with-bazel/src/crypto/{refcount_c11.c → refcount.c} +11 -17
- data/third_party/boringssl-with-bazel/src/crypto/stack/stack.c +147 -72
- data/third_party/boringssl-with-bazel/src/crypto/thread_none.c +0 -8
- data/third_party/boringssl-with-bazel/src/crypto/thread_pthread.c +6 -35
- data/third_party/boringssl-with-bazel/src/crypto/thread_win.c +5 -26
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/pmbtoken.c +14 -18
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/voprf.c +54 -143
- data/third_party/boringssl-with-bazel/src/crypto/x509/by_dir.c +7 -13
- data/third_party/boringssl-with-bazel/src/crypto/x509/internal.h +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_att.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_lu.c +2 -4
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_req.c +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_trs.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_v3.c +8 -12
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c +19 -20
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509name.c +11 -15
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_crl.c +5 -5
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_name.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_pubkey.c +7 -7
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_lib.c +2 -3
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_purp.c +4 -6
- data/third_party/boringssl-with-bazel/src/include/openssl/arm_arch.h +4 -119
- data/third_party/boringssl-with-bazel/src/include/openssl/asm_base.h +207 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +5 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/base.h +2 -116
- data/third_party/boringssl-with-bazel/src/include/openssl/bn.h +0 -2
- data/third_party/boringssl-with-bazel/src/include/openssl/chacha.h +6 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/conf.h +5 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/dsa.h +0 -21
- data/third_party/boringssl-with-bazel/src/include/openssl/ec.h +21 -2
- data/third_party/boringssl-with-bazel/src/include/openssl/ec_key.h +19 -6
- data/third_party/boringssl-with-bazel/src/include/openssl/evp.h +11 -7
- data/third_party/boringssl-with-bazel/src/include/openssl/rand.h +13 -14
- data/third_party/boringssl-with-bazel/src/include/openssl/rsa.h +0 -61
- data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +127 -81
- data/third_party/boringssl-with-bazel/src/include/openssl/stack.h +224 -209
- data/third_party/boringssl-with-bazel/src/include/openssl/target.h +154 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/thread.h +1 -29
- data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +4 -4
- data/third_party/boringssl-with-bazel/src/include/openssl/x509v3.h +3 -2
- data/third_party/boringssl-with-bazel/src/ssl/extensions.cc +9 -65
- data/third_party/boringssl-with-bazel/src/ssl/handoff.cc +20 -20
- data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +1 -1
- data/third_party/boringssl-with-bazel/src/ssl/internal.h +4 -11
- data/third_party/boringssl-with-bazel/src/ssl/ssl_cipher.cc +24 -18
- data/third_party/boringssl-with-bazel/src/ssl/ssl_key_share.cc +37 -30
- data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +125 -26
- data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +2 -3
- data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_64_adx.h +691 -0
- data/third_party/upb/upb/collections/map.c +3 -3
- metadata +27 -12
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_attributes.cc +0 -42
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_attributes.h +0 -64
- data/src/core/ext/transport/chttp2/transport/stream_map.cc +0 -177
- data/src/core/ext/transport/chttp2/transport/stream_map.h +0 -68
- data/third_party/boringssl-with-bazel/src/crypto/refcount_win.c +0 -89
@@ -51,6 +51,7 @@
|
|
51
51
|
#include "src/core/lib/iomgr/tcp_posix.h"
|
52
52
|
#include "src/core/lib/iomgr/timer.h"
|
53
53
|
#include "src/core/lib/iomgr/unix_sockets_posix.h"
|
54
|
+
#include "src/core/lib/iomgr/vsock.h"
|
54
55
|
#include "src/core/lib/slice/slice_internal.h"
|
55
56
|
|
56
57
|
extern grpc_core::TraceFlag grpc_tcp_trace;
|
@@ -111,11 +112,13 @@ static grpc_error_handle prepare_socket(
|
|
111
112
|
err = grpc_set_socket_rcvbuf(fd, options.tcp_receive_buffer_size);
|
112
113
|
if (!err.ok()) goto error;
|
113
114
|
}
|
114
|
-
if (!grpc_is_unix_socket(addr)) {
|
115
|
+
if (!grpc_is_unix_socket(addr) && !grpc_is_vsock(addr)) {
|
115
116
|
err = grpc_set_socket_low_latency(fd, 1);
|
116
117
|
if (!err.ok()) goto error;
|
117
118
|
err = grpc_set_socket_reuse_addr(fd, 1);
|
118
119
|
if (!err.ok()) goto error;
|
120
|
+
err = grpc_set_socket_dscp(fd, options.dscp);
|
121
|
+
if (!err.ok()) goto error;
|
119
122
|
err = grpc_set_socket_tcp_user_timeout(fd, options, true /* is_client */);
|
120
123
|
if (!err.ok()) goto error;
|
121
124
|
}
|
@@ -729,6 +729,9 @@ static void tcp_shutdown(grpc_endpoint* ep, grpc_error_handle why) {
|
|
729
729
|
grpc_tcp* tcp = reinterpret_cast<grpc_tcp*>(ep);
|
730
730
|
ZerocopyDisableAndWaitForRemaining(tcp);
|
731
731
|
grpc_fd_shutdown(tcp->em_fd, why);
|
732
|
+
tcp->read_mu.Lock();
|
733
|
+
tcp->memory_owner.Reset();
|
734
|
+
tcp->read_mu.Unlock();
|
732
735
|
}
|
733
736
|
|
734
737
|
static void tcp_free(grpc_tcp* tcp) {
|
@@ -775,6 +778,9 @@ static void tcp_destroy(grpc_endpoint* ep) {
|
|
775
778
|
gpr_atm_no_barrier_store(&tcp->stop_error_notification, true);
|
776
779
|
grpc_fd_set_error(tcp->em_fd);
|
777
780
|
}
|
781
|
+
tcp->read_mu.Lock();
|
782
|
+
tcp->memory_owner.Reset();
|
783
|
+
tcp->read_mu.Unlock();
|
778
784
|
TCP_UNREF(tcp, "destroy");
|
779
785
|
}
|
780
786
|
|
@@ -795,11 +801,14 @@ static void maybe_post_reclaimer(grpc_tcp* tcp)
|
|
795
801
|
ABSL_EXCLUSIVE_LOCKS_REQUIRED(tcp->read_mu) {
|
796
802
|
if (!tcp->has_posted_reclaimer) {
|
797
803
|
tcp->has_posted_reclaimer = true;
|
804
|
+
TCP_REF(tcp, "posted_reclaimer");
|
798
805
|
tcp->memory_owner.PostReclaimer(
|
799
806
|
grpc_core::ReclamationPass::kBenign,
|
800
807
|
[tcp](absl::optional<grpc_core::ReclamationSweep> sweep) {
|
801
|
-
if (
|
802
|
-
|
808
|
+
if (sweep.has_value()) {
|
809
|
+
perform_reclamation(tcp);
|
810
|
+
}
|
811
|
+
TCP_UNREF(tcp, "posted_reclaimer");
|
803
812
|
});
|
804
813
|
}
|
805
814
|
}
|
@@ -1088,7 +1097,7 @@ static void tcp_handle_read(void* arg /* grpc_tcp */, grpc_error_handle error) {
|
|
1088
1097
|
}
|
1089
1098
|
tcp->read_mu.Lock();
|
1090
1099
|
grpc_error_handle tcp_read_error;
|
1091
|
-
if (GPR_LIKELY(error.ok())) {
|
1100
|
+
if (GPR_LIKELY(error.ok()) && tcp->memory_owner.is_valid()) {
|
1092
1101
|
maybe_make_read_slices(tcp);
|
1093
1102
|
if (!tcp_do_read(tcp, &tcp_read_error)) {
|
1094
1103
|
// Maybe update rcv lowat value based on the number of bytes read in this
|
@@ -1101,7 +1110,12 @@ static void tcp_handle_read(void* arg /* grpc_tcp */, grpc_error_handle error) {
|
|
1101
1110
|
}
|
1102
1111
|
tcp_trace_read(tcp, tcp_read_error);
|
1103
1112
|
} else {
|
1104
|
-
|
1113
|
+
if (!tcp->memory_owner.is_valid() && error.ok()) {
|
1114
|
+
tcp_read_error =
|
1115
|
+
tcp_annotate_error(absl::InternalError("Socket closed"), tcp);
|
1116
|
+
} else {
|
1117
|
+
tcp_read_error = error;
|
1118
|
+
}
|
1105
1119
|
grpc_slice_buffer_reset_and_unref(tcp->incoming_buffer);
|
1106
1120
|
grpc_slice_buffer_reset_and_unref(&tcp->last_read_buffer);
|
1107
1121
|
}
|
@@ -2031,6 +2045,9 @@ void grpc_tcp_destroy_and_release_fd(grpc_endpoint* ep, int* fd,
|
|
2031
2045
|
gpr_atm_no_barrier_store(&tcp->stop_error_notification, true);
|
2032
2046
|
grpc_fd_set_error(tcp->em_fd);
|
2033
2047
|
}
|
2048
|
+
tcp->read_mu.Lock();
|
2049
|
+
tcp->memory_owner.Reset();
|
2050
|
+
tcp->read_mu.Unlock();
|
2034
2051
|
TCP_UNREF(tcp, "destroy");
|
2035
2052
|
}
|
2036
2053
|
|
@@ -25,7 +25,6 @@
|
|
25
25
|
// FIXME: "posix" files shouldn't be depending on _GNU_SOURCE
|
26
26
|
#ifndef _GNU_SOURCE
|
27
27
|
#define _GNU_SOURCE
|
28
|
-
#include <grpc/event_engine/event_engine.h>
|
29
28
|
#endif
|
30
29
|
|
31
30
|
#include "src/core/lib/iomgr/port.h"
|
@@ -50,6 +49,7 @@
|
|
50
49
|
|
51
50
|
#include <grpc/byte_buffer.h>
|
52
51
|
#include <grpc/event_engine/endpoint_config.h>
|
52
|
+
#include <grpc/event_engine/event_engine.h>
|
53
53
|
#include <grpc/support/alloc.h>
|
54
54
|
#include <grpc/support/log.h>
|
55
55
|
#include <grpc/support/sync.h>
|
@@ -76,6 +76,7 @@
|
|
76
76
|
#include "src/core/lib/iomgr/tcp_server.h"
|
77
77
|
#include "src/core/lib/iomgr/tcp_server_utils_posix.h"
|
78
78
|
#include "src/core/lib/iomgr/unix_sockets_posix.h"
|
79
|
+
#include "src/core/lib/iomgr/vsock.h"
|
79
80
|
#include "src/core/lib/resource_quota/api.h"
|
80
81
|
#include "src/core/lib/transport/error_utils.h"
|
81
82
|
|
@@ -776,7 +777,7 @@ static void tcp_server_start(grpc_tcp_server* s,
|
|
776
777
|
sp = s->head;
|
777
778
|
while (sp != nullptr) {
|
778
779
|
if (s->so_reuseport && !grpc_is_unix_socket(&sp->addr) &&
|
779
|
-
pollsets->size() > 1) {
|
780
|
+
!grpc_is_vsock(&sp->addr) && pollsets->size() > 1) {
|
780
781
|
GPR_ASSERT(GRPC_LOG_IF_ERROR(
|
781
782
|
"clone_port", clone_port(sp, (unsigned)(pollsets->size() - 1))));
|
782
783
|
for (i = 0; i < pollsets->size(); i++) {
|
@@ -44,6 +44,7 @@
|
|
44
44
|
#include "src/core/lib/iomgr/sockaddr.h"
|
45
45
|
#include "src/core/lib/iomgr/tcp_server_utils_posix.h"
|
46
46
|
#include "src/core/lib/iomgr/unix_sockets_posix.h"
|
47
|
+
#include "src/core/lib/iomgr/vsock.h"
|
47
48
|
|
48
49
|
#define MIN_SAFE_ACCEPT_QUEUE_SIZE 100
|
49
50
|
|
@@ -211,7 +212,7 @@ grpc_error_handle grpc_tcp_server_prepare_socket(
|
|
211
212
|
|
212
213
|
GPR_ASSERT(fd >= 0);
|
213
214
|
|
214
|
-
if (so_reuseport && !grpc_is_unix_socket(addr)) {
|
215
|
+
if (so_reuseport && !grpc_is_unix_socket(addr) && !grpc_is_vsock(addr)) {
|
215
216
|
err = grpc_set_socket_reuse_port(fd, 1);
|
216
217
|
if (!err.ok()) goto error;
|
217
218
|
}
|
@@ -227,11 +228,13 @@ grpc_error_handle grpc_tcp_server_prepare_socket(
|
|
227
228
|
if (!err.ok()) goto error;
|
228
229
|
err = grpc_set_socket_cloexec(fd, 1);
|
229
230
|
if (!err.ok()) goto error;
|
230
|
-
if (!grpc_is_unix_socket(addr)) {
|
231
|
+
if (!grpc_is_unix_socket(addr) && !grpc_is_vsock(addr)) {
|
231
232
|
err = grpc_set_socket_low_latency(fd, 1);
|
232
233
|
if (!err.ok()) goto error;
|
233
234
|
err = grpc_set_socket_reuse_addr(fd, 1);
|
234
235
|
if (!err.ok()) goto error;
|
236
|
+
err = grpc_set_socket_dscp(fd, s->options.dscp);
|
237
|
+
if (!err.ok()) goto error;
|
235
238
|
err =
|
236
239
|
grpc_set_socket_tcp_user_timeout(fd, s->options, false /* is_client */);
|
237
240
|
if (!err.ok()) goto error;
|
@@ -186,9 +186,7 @@ static void on_read(void* tcpp, grpc_error_handle error) {
|
|
186
186
|
|
187
187
|
if (error.ok()) {
|
188
188
|
if (info->wsa_error != 0 && !tcp->shutting_down) {
|
189
|
-
|
190
|
-
error = GRPC_ERROR_CREATE(utf8_message);
|
191
|
-
gpr_free(utf8_message);
|
189
|
+
error = GRPC_WSA_ERROR(info->wsa_error, "IOCP/Socket");
|
192
190
|
grpc_slice_buffer_reset_and_unref(tcp->read_slices);
|
193
191
|
} else {
|
194
192
|
if (info->bytes_transferred != 0 && !tcp->shutting_down) {
|
@@ -0,0 +1,59 @@
|
|
1
|
+
//
|
2
|
+
//
|
3
|
+
// Copyright 2023 gRPC authors.
|
4
|
+
//
|
5
|
+
// Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
// you may not use this file except in compliance with the License.
|
7
|
+
// You may obtain a copy of the License at
|
8
|
+
//
|
9
|
+
// http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
//
|
11
|
+
// Unless required by applicable law or agreed to in writing, software
|
12
|
+
// distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
// See the License for the specific language governing permissions and
|
15
|
+
// limitations under the License.
|
16
|
+
//
|
17
|
+
//
|
18
|
+
#include <grpc/support/port_platform.h>
|
19
|
+
|
20
|
+
#include "src/core/lib/iomgr/vsock.h"
|
21
|
+
|
22
|
+
#ifdef GRPC_HAVE_VSOCK
|
23
|
+
|
24
|
+
#include <string.h>
|
25
|
+
#include <sys/stat.h>
|
26
|
+
#include <sys/types.h>
|
27
|
+
|
28
|
+
#include "absl/strings/str_cat.h"
|
29
|
+
|
30
|
+
#include <grpc/support/alloc.h>
|
31
|
+
#include <grpc/support/log.h>
|
32
|
+
|
33
|
+
#include "src/core/lib/address_utils/parse_address.h"
|
34
|
+
#include "src/core/lib/gpr/useful.h"
|
35
|
+
#include "src/core/lib/gprpp/crash.h"
|
36
|
+
#include "src/core/lib/iomgr/sockaddr.h"
|
37
|
+
#include "src/core/lib/transport/error_utils.h"
|
38
|
+
|
39
|
+
absl::StatusOr<std::vector<grpc_resolved_address>> grpc_resolve_vsock_address(
|
40
|
+
absl::string_view name) {
|
41
|
+
grpc_resolved_address addr;
|
42
|
+
grpc_error_handle error = grpc_core::VSockaddrPopulate(name, &addr);
|
43
|
+
GRPC_RETURN_IF_ERROR(error);
|
44
|
+
return std::vector<grpc_resolved_address>({addr});
|
45
|
+
}
|
46
|
+
|
47
|
+
int grpc_is_vsock(const grpc_resolved_address* resolved_addr) {
|
48
|
+
const grpc_sockaddr* addr =
|
49
|
+
reinterpret_cast<const grpc_sockaddr*>(resolved_addr->addr);
|
50
|
+
return addr->sa_family == AF_VSOCK;
|
51
|
+
}
|
52
|
+
#else
|
53
|
+
absl::StatusOr<std::vector<grpc_resolved_address>> grpc_resolve_vsock_address(
|
54
|
+
absl::string_view /*name*/) {
|
55
|
+
return absl::InvalidArgumentError("VSOCK is not supported.");
|
56
|
+
}
|
57
|
+
|
58
|
+
int grpc_is_vsock(const grpc_resolved_address* /*resolved_addr*/) { return 0; }
|
59
|
+
#endif
|
@@ -0,0 +1,38 @@
|
|
1
|
+
//
|
2
|
+
//
|
3
|
+
// Copyright 2023 gRPC authors.
|
4
|
+
//
|
5
|
+
// Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
// you may not use this file except in compliance with the License.
|
7
|
+
// You may obtain a copy of the License at
|
8
|
+
//
|
9
|
+
// http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
//
|
11
|
+
// Unless required by applicable law or agreed to in writing, software
|
12
|
+
// distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
// See the License for the specific language governing permissions and
|
15
|
+
// limitations under the License.
|
16
|
+
//
|
17
|
+
//
|
18
|
+
|
19
|
+
#ifndef GRPC_SRC_CORE_LIB_IOMGR_VSOCK_H
|
20
|
+
#define GRPC_SRC_CORE_LIB_IOMGR_VSOCK_H
|
21
|
+
|
22
|
+
#include <grpc/support/port_platform.h>
|
23
|
+
|
24
|
+
#include <string>
|
25
|
+
|
26
|
+
#include "absl/strings/string_view.h"
|
27
|
+
|
28
|
+
#include <grpc/support/string_util.h>
|
29
|
+
|
30
|
+
#include "src/core/lib/iomgr/port.h"
|
31
|
+
#include "src/core/lib/iomgr/resolve_address.h"
|
32
|
+
|
33
|
+
absl::StatusOr<std::vector<grpc_resolved_address>> grpc_resolve_vsock_address(
|
34
|
+
absl::string_view name);
|
35
|
+
|
36
|
+
int grpc_is_vsock(const grpc_resolved_address* resolved_addr);
|
37
|
+
|
38
|
+
#endif /* GRPC_SRC_CORE_LIB_IOMGR_VSOCK_H */
|
@@ -81,12 +81,9 @@ extern int grpc_allow_pipe_wakeup_fd;
|
|
81
81
|
|
82
82
|
#define GRPC_WAKEUP_FD_GET_READ_FD(fd_info) ((fd_info)->read_fd)
|
83
83
|
|
84
|
-
grpc_error_handle grpc_wakeup_fd_init(grpc_wakeup_fd* fd_info)
|
85
|
-
|
86
|
-
grpc_error_handle
|
87
|
-
GRPC_MUST_USE_RESULT;
|
88
|
-
grpc_error_handle grpc_wakeup_fd_wakeup(grpc_wakeup_fd* fd_info)
|
89
|
-
GRPC_MUST_USE_RESULT;
|
84
|
+
grpc_error_handle grpc_wakeup_fd_init(grpc_wakeup_fd* fd_info);
|
85
|
+
grpc_error_handle grpc_wakeup_fd_consume_wakeup(grpc_wakeup_fd* fd_info);
|
86
|
+
grpc_error_handle grpc_wakeup_fd_wakeup(grpc_wakeup_fd* fd_info);
|
90
87
|
void grpc_wakeup_fd_destroy(grpc_wakeup_fd* fd_info);
|
91
88
|
|
92
89
|
// Defined in some specialized implementation's .c file, or by
|
@@ -0,0 +1,115 @@
|
|
1
|
+
//
|
2
|
+
// Copyright 2023 gRPC authors.
|
3
|
+
//
|
4
|
+
// Licensed under the Apache License, Version 2.0 (the "License");
|
5
|
+
// you may not use this file except in compliance with the License.
|
6
|
+
// You may obtain a copy of the License at
|
7
|
+
//
|
8
|
+
// http://www.apache.org/licenses/LICENSE-2.0
|
9
|
+
//
|
10
|
+
// Unless required by applicable law or agreed to in writing, software
|
11
|
+
// distributed under the License is distributed on an "AS IS" BASIS,
|
12
|
+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13
|
+
// See the License for the specific language governing permissions and
|
14
|
+
// limitations under the License.
|
15
|
+
//
|
16
|
+
|
17
|
+
#ifndef GRPC_SRC_CORE_LIB_LOAD_BALANCING_DELEGATING_HELPER_H
|
18
|
+
#define GRPC_SRC_CORE_LIB_LOAD_BALANCING_DELEGATING_HELPER_H
|
19
|
+
|
20
|
+
#include <grpc/support/port_platform.h>
|
21
|
+
|
22
|
+
#include <utility>
|
23
|
+
|
24
|
+
#include "absl/status/status.h"
|
25
|
+
#include "absl/strings/string_view.h"
|
26
|
+
|
27
|
+
#include <grpc/event_engine/event_engine.h>
|
28
|
+
#include <grpc/grpc.h>
|
29
|
+
#include <grpc/impl/connectivity_state.h>
|
30
|
+
|
31
|
+
#include "src/core/lib/channel/channel_args.h"
|
32
|
+
#include "src/core/lib/gprpp/debug_location.h"
|
33
|
+
#include "src/core/lib/gprpp/ref_counted_ptr.h"
|
34
|
+
#include "src/core/lib/load_balancing/lb_policy.h"
|
35
|
+
#include "src/core/lib/load_balancing/subchannel_interface.h"
|
36
|
+
#include "src/core/lib/resolver/server_address.h"
|
37
|
+
#include "src/core/lib/security/credentials/credentials.h"
|
38
|
+
|
39
|
+
namespace grpc_core {
|
40
|
+
|
41
|
+
/// A helper for use in parent policies. All methods delegate to a
|
42
|
+
/// parent policy's helper unless otherwise overridden.
|
43
|
+
class LoadBalancingPolicy::DelegatingChannelControlHelper
|
44
|
+
: public LoadBalancingPolicy::ChannelControlHelper {
|
45
|
+
public:
|
46
|
+
RefCountedPtr<SubchannelInterface> CreateSubchannel(
|
47
|
+
ServerAddress address, const ChannelArgs& args) override {
|
48
|
+
return parent_helper()->CreateSubchannel(std::move(address), args);
|
49
|
+
}
|
50
|
+
|
51
|
+
void UpdateState(grpc_connectivity_state state, const absl::Status& status,
|
52
|
+
RefCountedPtr<SubchannelPicker> picker) override {
|
53
|
+
parent_helper()->UpdateState(state, status, std::move(picker));
|
54
|
+
}
|
55
|
+
|
56
|
+
void RequestReresolution() override {
|
57
|
+
parent_helper()->RequestReresolution();
|
58
|
+
}
|
59
|
+
|
60
|
+
absl::string_view GetAuthority() override {
|
61
|
+
return parent_helper()->GetAuthority();
|
62
|
+
}
|
63
|
+
|
64
|
+
RefCountedPtr<grpc_channel_credentials> GetChannelCredentials() override {
|
65
|
+
return parent_helper()->GetChannelCredentials();
|
66
|
+
}
|
67
|
+
|
68
|
+
RefCountedPtr<grpc_channel_credentials> GetUnsafeChannelCredentials()
|
69
|
+
override {
|
70
|
+
return parent_helper()->GetUnsafeChannelCredentials();
|
71
|
+
}
|
72
|
+
|
73
|
+
grpc_event_engine::experimental::EventEngine* GetEventEngine() override {
|
74
|
+
return parent_helper()->GetEventEngine();
|
75
|
+
}
|
76
|
+
|
77
|
+
void AddTraceEvent(TraceSeverity severity,
|
78
|
+
absl::string_view message) override {
|
79
|
+
parent_helper()->AddTraceEvent(severity, message);
|
80
|
+
}
|
81
|
+
|
82
|
+
private:
|
83
|
+
/// Returns the parent helper that we should delegate to by default.
|
84
|
+
virtual ChannelControlHelper* parent_helper() const = 0;
|
85
|
+
};
|
86
|
+
|
87
|
+
/// A delegating helper that owns a ref to the parent policy.
|
88
|
+
template <typename ParentPolicy>
|
89
|
+
class LoadBalancingPolicy::ParentOwningDelegatingChannelControlHelper
|
90
|
+
: public LoadBalancingPolicy::DelegatingChannelControlHelper {
|
91
|
+
public:
|
92
|
+
explicit ParentOwningDelegatingChannelControlHelper(
|
93
|
+
RefCountedPtr<ParentPolicy> parent)
|
94
|
+
: parent_(std::move(parent)) {}
|
95
|
+
|
96
|
+
~ParentOwningDelegatingChannelControlHelper() override {
|
97
|
+
parent_.reset(DEBUG_LOCATION, "Helper");
|
98
|
+
}
|
99
|
+
|
100
|
+
protected:
|
101
|
+
ParentPolicy* parent() const {
|
102
|
+
return static_cast<ParentPolicy*>(parent_.get());
|
103
|
+
}
|
104
|
+
|
105
|
+
ChannelControlHelper* parent_helper() const override {
|
106
|
+
return parent_->channel_control_helper();
|
107
|
+
}
|
108
|
+
|
109
|
+
private:
|
110
|
+
RefCountedPtr<LoadBalancingPolicy> parent_;
|
111
|
+
};
|
112
|
+
|
113
|
+
} // namespace grpc_core
|
114
|
+
|
115
|
+
#endif // GRPC_SRC_CORE_LIB_LOAD_BALANCING_DELEGATING_HELPER_H
|
@@ -35,6 +35,7 @@
|
|
35
35
|
#include "absl/types/variant.h"
|
36
36
|
|
37
37
|
#include <grpc/event_engine/event_engine.h>
|
38
|
+
#include <grpc/grpc.h>
|
38
39
|
#include <grpc/impl/connectivity_state.h>
|
39
40
|
|
40
41
|
#include "src/core/ext/filters/client_channel/lb_policy/backend_metric_data.h"
|
@@ -297,6 +298,20 @@ class LoadBalancingPolicy : public InternallyRefCounted<LoadBalancingPolicy> {
|
|
297
298
|
/// Returns the channel authority.
|
298
299
|
virtual absl::string_view GetAuthority() = 0;
|
299
300
|
|
301
|
+
/// Returns the channel credentials from the parent channel. This can
|
302
|
+
/// be used to create a control-plane channel inside an LB policy.
|
303
|
+
virtual RefCountedPtr<grpc_channel_credentials> GetChannelCredentials() = 0;
|
304
|
+
|
305
|
+
/// Returns the UNSAFE ChannelCredentials used to construct the channel,
|
306
|
+
/// including bearer tokens. LB policies should generally have no use for
|
307
|
+
/// these credentials, and use of them is heavily discouraged. These must
|
308
|
+
/// be used VERY carefully to avoid sending bearer tokens to untrusted
|
309
|
+
/// servers, as the server could then impersonate the client. Generally,
|
310
|
+
/// it is safe to use these credentials only when communicating with the
|
311
|
+
/// backends.
|
312
|
+
virtual RefCountedPtr<grpc_channel_credentials>
|
313
|
+
GetUnsafeChannelCredentials() = 0;
|
314
|
+
|
300
315
|
/// Returns the EventEngine to use for timers and async work.
|
301
316
|
virtual grpc_event_engine::experimental::EventEngine* GetEventEngine() = 0;
|
302
317
|
|
@@ -306,6 +321,11 @@ class LoadBalancingPolicy : public InternallyRefCounted<LoadBalancingPolicy> {
|
|
306
321
|
absl::string_view message) = 0;
|
307
322
|
};
|
308
323
|
|
324
|
+
class DelegatingChannelControlHelper;
|
325
|
+
|
326
|
+
template <typename ParentPolicy>
|
327
|
+
class ParentOwningDelegatingChannelControlHelper;
|
328
|
+
|
309
329
|
/// Interface for configuration data used by an LB policy implementation.
|
310
330
|
/// Individual implementations will create a subclass that adds methods to
|
311
331
|
/// return the parameters they need.
|
@@ -97,6 +97,9 @@ class SubchannelInterface : public DualRefCounted<SubchannelInterface> {
|
|
97
97
|
// Registers a new data watcher.
|
98
98
|
virtual void AddDataWatcher(
|
99
99
|
std::unique_ptr<DataWatcherInterface> watcher) = 0;
|
100
|
+
|
101
|
+
// Cancels a data watch.
|
102
|
+
virtual void CancelDataWatcher(DataWatcherInterface* watcher) = 0;
|
100
103
|
};
|
101
104
|
|
102
105
|
// A class that delegates to another subchannel, to be used in cases
|
@@ -125,6 +128,9 @@ class DelegatingSubchannel : public SubchannelInterface {
|
|
125
128
|
void AddDataWatcher(std::unique_ptr<DataWatcherInterface> watcher) override {
|
126
129
|
wrapped_subchannel_->AddDataWatcher(std::move(watcher));
|
127
130
|
}
|
131
|
+
void CancelDataWatcher(DataWatcherInterface* watcher) override {
|
132
|
+
wrapped_subchannel_->CancelDataWatcher(watcher);
|
133
|
+
}
|
128
134
|
|
129
135
|
private:
|
130
136
|
RefCountedPtr<SubchannelInterface> wrapped_subchannel_;
|
@@ -384,7 +384,7 @@ class Party : public Activity, private Wakeable {
|
|
384
384
|
// Should not be called by derived types except as a tail call to the base
|
385
385
|
// class RunParty when overriding this method to add custom context.
|
386
386
|
// Returns true if the party is over.
|
387
|
-
virtual bool RunParty()
|
387
|
+
GRPC_MUST_USE_RESULT virtual bool RunParty();
|
388
388
|
|
389
389
|
bool RefIfNonZero() { return sync_.RefIfNonZero(); }
|
390
390
|
|
@@ -66,9 +66,10 @@ class ResolverFactory {
|
|
66
66
|
virtual OrphanablePtr<Resolver> CreateResolver(ResolverArgs args) const = 0;
|
67
67
|
|
68
68
|
/// Returns a string representing the default authority to use for this
|
69
|
-
/// scheme.
|
69
|
+
/// scheme. By default, we %-encode the path part of the target URI,
|
70
|
+
/// excluding the initial '/' character.
|
70
71
|
virtual std::string GetDefaultAuthority(const URI& uri) const {
|
71
|
-
return
|
72
|
+
return URI::PercentEncodeAuthority(absl::StripPrefix(uri.path(), "/"));
|
72
73
|
}
|
73
74
|
};
|
74
75
|
|
@@ -23,8 +23,6 @@
|
|
23
23
|
#include <string.h>
|
24
24
|
|
25
25
|
#include <algorithm>
|
26
|
-
#include <initializer_list>
|
27
|
-
#include <memory>
|
28
26
|
#include <string>
|
29
27
|
#include <utility>
|
30
28
|
#include <vector>
|
@@ -32,119 +30,49 @@
|
|
32
30
|
#include "absl/status/status.h"
|
33
31
|
#include "absl/status/statusor.h"
|
34
32
|
#include "absl/strings/str_cat.h"
|
35
|
-
#include "absl/strings/str_format.h"
|
36
33
|
#include "absl/strings/str_join.h"
|
37
34
|
|
38
35
|
#include "src/core/lib/address_utils/sockaddr_utils.h"
|
39
36
|
#include "src/core/lib/channel/channel_args.h"
|
37
|
+
#include "src/core/lib/gpr/useful.h"
|
40
38
|
|
41
39
|
// IWYU pragma: no_include <sys/socket.h>
|
42
40
|
|
43
41
|
namespace grpc_core {
|
44
42
|
|
45
|
-
//
|
46
|
-
// ServerAddressWeightAttribute
|
47
|
-
//
|
48
|
-
const char* ServerAddressWeightAttribute::kServerAddressWeightAttributeKey =
|
49
|
-
"server_address_weight";
|
50
|
-
|
51
43
|
//
|
52
44
|
// ServerAddress
|
53
45
|
//
|
54
46
|
|
55
|
-
ServerAddress::ServerAddress(
|
56
|
-
|
57
|
-
|
58
|
-
: address_(address), args_(args), attributes_(std::move(attributes)) {}
|
47
|
+
ServerAddress::ServerAddress(const grpc_resolved_address& address,
|
48
|
+
const ChannelArgs& args)
|
49
|
+
: address_(address), args_(args) {}
|
59
50
|
|
60
51
|
ServerAddress::ServerAddress(const ServerAddress& other)
|
61
|
-
: address_(other.address_), args_(other.args_) {
|
62
|
-
|
63
|
-
attributes_[p.first] = p.second->Copy();
|
64
|
-
}
|
65
|
-
}
|
52
|
+
: address_(other.address_), args_(other.args_) {}
|
53
|
+
|
66
54
|
ServerAddress& ServerAddress::operator=(const ServerAddress& other) {
|
67
|
-
if (&other == this)
|
68
|
-
return *this;
|
69
|
-
}
|
55
|
+
if (&other == this) return *this;
|
70
56
|
address_ = other.address_;
|
71
57
|
args_ = other.args_;
|
72
|
-
attributes_.clear();
|
73
|
-
for (const auto& p : other.attributes_) {
|
74
|
-
attributes_[p.first] = p.second->Copy();
|
75
|
-
}
|
76
58
|
return *this;
|
77
59
|
}
|
78
60
|
|
79
61
|
ServerAddress::ServerAddress(ServerAddress&& other) noexcept
|
80
|
-
: address_(other.address_),
|
81
|
-
args_(std::move(other.args_)),
|
82
|
-
attributes_(std::move(other.attributes_)) {}
|
62
|
+
: address_(other.address_), args_(std::move(other.args_)) {}
|
83
63
|
|
84
64
|
ServerAddress& ServerAddress::operator=(ServerAddress&& other) noexcept {
|
85
65
|
address_ = other.address_;
|
86
66
|
args_ = std::move(other.args_);
|
87
|
-
attributes_ = std::move(other.attributes_);
|
88
67
|
return *this;
|
89
68
|
}
|
90
69
|
|
91
|
-
namespace {
|
92
|
-
|
93
|
-
int CompareAttributes(
|
94
|
-
const std::map<const char*,
|
95
|
-
std::unique_ptr<ServerAddress::AttributeInterface>>&
|
96
|
-
attributes1,
|
97
|
-
const std::map<const char*,
|
98
|
-
std::unique_ptr<ServerAddress::AttributeInterface>>&
|
99
|
-
attributes2) {
|
100
|
-
auto it2 = attributes2.begin();
|
101
|
-
for (auto it1 = attributes1.begin(); it1 != attributes1.end(); ++it1) {
|
102
|
-
// attributes2 has fewer elements than attributes1
|
103
|
-
if (it2 == attributes2.end()) return -1;
|
104
|
-
// compare keys
|
105
|
-
int retval = strcmp(it1->first, it2->first);
|
106
|
-
if (retval != 0) return retval;
|
107
|
-
// compare values
|
108
|
-
retval = it1->second->Cmp(it2->second.get());
|
109
|
-
if (retval != 0) return retval;
|
110
|
-
++it2;
|
111
|
-
}
|
112
|
-
// attributes1 has fewer elements than attributes2
|
113
|
-
if (it2 != attributes2.end()) return 1;
|
114
|
-
// equal
|
115
|
-
return 0;
|
116
|
-
}
|
117
|
-
|
118
|
-
} // namespace
|
119
|
-
|
120
70
|
int ServerAddress::Cmp(const ServerAddress& other) const {
|
121
71
|
if (address_.len > other.address_.len) return 1;
|
122
72
|
if (address_.len < other.address_.len) return -1;
|
123
73
|
int retval = memcmp(address_.addr, other.address_.addr, address_.len);
|
124
74
|
if (retval != 0) return retval;
|
125
|
-
|
126
|
-
if (retval != 0) return retval;
|
127
|
-
return CompareAttributes(attributes_, other.attributes_);
|
128
|
-
}
|
129
|
-
|
130
|
-
const ServerAddress::AttributeInterface* ServerAddress::GetAttribute(
|
131
|
-
const char* key) const {
|
132
|
-
auto it = attributes_.find(key);
|
133
|
-
if (it == attributes_.end()) return nullptr;
|
134
|
-
return it->second.get();
|
135
|
-
}
|
136
|
-
|
137
|
-
// Returns a copy of the address with a modified attribute.
|
138
|
-
// If the new value is null, the attribute is removed.
|
139
|
-
ServerAddress ServerAddress::WithAttribute(
|
140
|
-
const char* key, std::unique_ptr<AttributeInterface> value) const {
|
141
|
-
ServerAddress address = *this;
|
142
|
-
if (value == nullptr) {
|
143
|
-
address.attributes_.erase(key);
|
144
|
-
} else {
|
145
|
-
address.attributes_[key] = std::move(value);
|
146
|
-
}
|
147
|
-
return address;
|
75
|
+
return QsortCompare(args_, other.args_);
|
148
76
|
}
|
149
77
|
|
150
78
|
std::string ServerAddress::ToString() const {
|
@@ -155,20 +83,7 @@ std::string ServerAddress::ToString() const {
|
|
155
83
|
if (args_ != ChannelArgs()) {
|
156
84
|
parts.emplace_back(absl::StrCat("args=", args_.ToString()));
|
157
85
|
}
|
158
|
-
if (!attributes_.empty()) {
|
159
|
-
std::vector<std::string> attrs;
|
160
|
-
attrs.reserve(attributes_.size());
|
161
|
-
for (const auto& p : attributes_) {
|
162
|
-
attrs.emplace_back(absl::StrCat(p.first, "=", p.second->ToString()));
|
163
|
-
}
|
164
|
-
parts.emplace_back(
|
165
|
-
absl::StrCat("attributes={", absl::StrJoin(attrs, ", "), "}"));
|
166
|
-
}
|
167
86
|
return absl::StrJoin(parts, " ");
|
168
87
|
}
|
169
88
|
|
170
|
-
std::string ServerAddressWeightAttribute::ToString() const {
|
171
|
-
return absl::StrFormat("%d", weight_);
|
172
|
-
}
|
173
|
-
|
174
89
|
} // namespace grpc_core
|