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
@@ -36,44 +36,36 @@
|
|
36
36
|
|
37
37
|
// -- Fake transport security credentials. --
|
38
38
|
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
grpc_core::
|
67
|
-
|
68
|
-
|
69
|
-
}
|
70
|
-
|
71
|
-
grpc_core::UniqueTypeName type() const override {
|
72
|
-
static grpc_core::UniqueTypeName::Factory kFactory("Fake");
|
73
|
-
return kFactory.Create();
|
74
|
-
}
|
75
|
-
};
|
76
|
-
} // namespace
|
39
|
+
grpc_core::RefCountedPtr<grpc_channel_security_connector>
|
40
|
+
grpc_fake_channel_credentials::create_security_connector(
|
41
|
+
grpc_core::RefCountedPtr<grpc_call_credentials> call_creds,
|
42
|
+
const char* target, grpc_core::ChannelArgs* args) {
|
43
|
+
return grpc_fake_channel_security_connector_create(
|
44
|
+
this->Ref(), std::move(call_creds), target, *args);
|
45
|
+
}
|
46
|
+
|
47
|
+
grpc_core::UniqueTypeName grpc_fake_channel_credentials::Type() {
|
48
|
+
static grpc_core::UniqueTypeName::Factory kFactory("Fake");
|
49
|
+
return kFactory.Create();
|
50
|
+
}
|
51
|
+
|
52
|
+
int grpc_fake_channel_credentials::cmp_impl(
|
53
|
+
const grpc_channel_credentials* other) const {
|
54
|
+
// TODO(yashykt): Check if we can do something better here
|
55
|
+
return grpc_core::QsortCompare(
|
56
|
+
static_cast<const grpc_channel_credentials*>(this), other);
|
57
|
+
}
|
58
|
+
|
59
|
+
grpc_core::RefCountedPtr<grpc_server_security_connector>
|
60
|
+
grpc_fake_server_credentials::create_security_connector(
|
61
|
+
const grpc_core::ChannelArgs& /*args*/) {
|
62
|
+
return grpc_fake_server_security_connector_create(this->Ref());
|
63
|
+
}
|
64
|
+
|
65
|
+
grpc_core::UniqueTypeName grpc_fake_server_credentials::Type() {
|
66
|
+
static grpc_core::UniqueTypeName::Factory kFactory("Fake");
|
67
|
+
return kFactory.Create();
|
68
|
+
}
|
77
69
|
|
78
70
|
grpc_channel_credentials* grpc_fake_transport_security_credentials_create() {
|
79
71
|
return new grpc_fake_channel_credentials();
|
@@ -29,10 +29,13 @@
|
|
29
29
|
#include <grpc/grpc_security.h>
|
30
30
|
#include <grpc/grpc_security_constants.h>
|
31
31
|
|
32
|
+
#include "src/core/lib/channel/channel_args.h"
|
32
33
|
#include "src/core/lib/gpr/useful.h"
|
34
|
+
#include "src/core/lib/gprpp/ref_counted_ptr.h"
|
33
35
|
#include "src/core/lib/gprpp/unique_type_name.h"
|
34
36
|
#include "src/core/lib/promise/arena_promise.h"
|
35
37
|
#include "src/core/lib/security/credentials/credentials.h"
|
38
|
+
#include "src/core/lib/security/security_connector/security_connector.h"
|
36
39
|
#include "src/core/lib/slice/slice.h"
|
37
40
|
#include "src/core/lib/transport/transport.h"
|
38
41
|
|
@@ -41,6 +44,31 @@
|
|
41
44
|
|
42
45
|
// -- Fake transport security credentials. --
|
43
46
|
|
47
|
+
class grpc_fake_channel_credentials final : public grpc_channel_credentials {
|
48
|
+
public:
|
49
|
+
grpc_core::RefCountedPtr<grpc_channel_security_connector>
|
50
|
+
create_security_connector(
|
51
|
+
grpc_core::RefCountedPtr<grpc_call_credentials> call_creds,
|
52
|
+
const char* target, grpc_core::ChannelArgs* args) override;
|
53
|
+
|
54
|
+
static grpc_core::UniqueTypeName Type();
|
55
|
+
|
56
|
+
grpc_core::UniqueTypeName type() const override { return Type(); }
|
57
|
+
|
58
|
+
private:
|
59
|
+
int cmp_impl(const grpc_channel_credentials* other) const override;
|
60
|
+
};
|
61
|
+
|
62
|
+
class grpc_fake_server_credentials final : public grpc_server_credentials {
|
63
|
+
public:
|
64
|
+
grpc_core::RefCountedPtr<grpc_server_security_connector>
|
65
|
+
create_security_connector(const grpc_core::ChannelArgs& /*args*/) override;
|
66
|
+
|
67
|
+
static grpc_core::UniqueTypeName Type();
|
68
|
+
|
69
|
+
grpc_core::UniqueTypeName type() const override { return Type(); }
|
70
|
+
};
|
71
|
+
|
44
72
|
// Creates a fake transport security credentials object for testing.
|
45
73
|
grpc_channel_credentials* grpc_fake_transport_security_credentials_create(void);
|
46
74
|
|
@@ -98,7 +98,7 @@ TlsCredentials::create_security_connector(
|
|
98
98
|
return sc;
|
99
99
|
}
|
100
100
|
|
101
|
-
grpc_core::UniqueTypeName TlsCredentials::
|
101
|
+
grpc_core::UniqueTypeName TlsCredentials::Type() {
|
102
102
|
static grpc_core::UniqueTypeName::Factory kFactory("Tls");
|
103
103
|
return kFactory.Create();
|
104
104
|
}
|
@@ -41,7 +41,9 @@ class TlsCredentials final : public grpc_channel_credentials {
|
|
41
41
|
grpc_core::RefCountedPtr<grpc_call_credentials> call_creds,
|
42
42
|
const char* target_name, grpc_core::ChannelArgs* args) override;
|
43
43
|
|
44
|
-
grpc_core::UniqueTypeName
|
44
|
+
static grpc_core::UniqueTypeName Type();
|
45
|
+
|
46
|
+
grpc_core::UniqueTypeName type() const override { return Type(); }
|
45
47
|
|
46
48
|
grpc_tls_credentials_options* options() const { return options_.get(); }
|
47
49
|
|
@@ -88,6 +88,11 @@ class ServiceConfigCallData {
|
|
88
88
|
call_attributes_.EmplaceBack(value);
|
89
89
|
}
|
90
90
|
|
91
|
+
template <typename A>
|
92
|
+
A* GetCallAttribute() const {
|
93
|
+
return static_cast<A*>(GetCallAttribute(A::TypeName()));
|
94
|
+
}
|
95
|
+
|
91
96
|
CallAttributeInterface* GetCallAttribute(UniqueTypeName type) const {
|
92
97
|
for (CallAttributeInterface* attribute : call_attributes_) {
|
93
98
|
if (attribute->type() == type) return attribute;
|
data/src/core/lib/slice/slice.h
CHANGED
@@ -342,6 +342,22 @@ class GPR_MSVC_EMPTY_BASE_CLASS_WORKAROUND Slice
|
|
342
342
|
return Slice(TakeCSlice());
|
343
343
|
}
|
344
344
|
|
345
|
+
// As per TakeOwned, but if the slice is refcounted and there are other refs
|
346
|
+
// then it will copy instead of ref-counting, to ensure the returned slice is
|
347
|
+
// not shared.
|
348
|
+
Slice TakeUniquelyOwned() {
|
349
|
+
if (c_slice().refcount == nullptr) {
|
350
|
+
return Slice(c_slice());
|
351
|
+
}
|
352
|
+
if (c_slice().refcount == grpc_slice_refcount::NoopRefcount()) {
|
353
|
+
return Slice(grpc_slice_copy(c_slice()));
|
354
|
+
}
|
355
|
+
if (c_slice().refcount->IsUnique()) {
|
356
|
+
return Slice(TakeCSlice());
|
357
|
+
}
|
358
|
+
return Slice(grpc_slice_copy(c_slice()));
|
359
|
+
}
|
360
|
+
|
345
361
|
// AsOwned returns an owned slice but does not mutate the current slice,
|
346
362
|
// meaning that it may add a reference to the underlying slice.
|
347
363
|
Slice AsOwned() const {
|
@@ -2156,14 +2156,9 @@ class PromiseBasedCall : public Call,
|
|
2156
2156
|
grpc_metadata_batch* batch);
|
2157
2157
|
|
2158
2158
|
// At the end of the call run any finalization actions.
|
2159
|
-
void
|
2160
|
-
|
2161
|
-
|
2162
|
-
final_info.final_status = status;
|
2163
|
-
final_info.error_string = status_details;
|
2164
|
-
final_info.stats.latency =
|
2165
|
-
gpr_cycle_counter_sub(gpr_get_cycle_counter(), start_time());
|
2166
|
-
finalization_.Run(&final_info);
|
2159
|
+
void SetFinalizationStatus(grpc_status_code status, Slice status_details) {
|
2160
|
+
final_message_ = std::move(status_details);
|
2161
|
+
final_status_ = status;
|
2167
2162
|
}
|
2168
2163
|
|
2169
2164
|
std::string PresentAndCompletionText(const char* caption, bool has,
|
@@ -2314,6 +2309,19 @@ class PromiseBasedCall : public Call,
|
|
2314
2309
|
void PartyOver() override {
|
2315
2310
|
{
|
2316
2311
|
ScopedContext ctx(this);
|
2312
|
+
std::string message;
|
2313
|
+
grpc_call_final_info final_info;
|
2314
|
+
final_info.stats = final_stats_;
|
2315
|
+
final_info.final_status = final_status_;
|
2316
|
+
// TODO(ctiller): change type here so we don't need to copy this string.
|
2317
|
+
final_info.error_string = nullptr;
|
2318
|
+
if (!final_message_.empty()) {
|
2319
|
+
message = std::string(final_message_.begin(), final_message_.end());
|
2320
|
+
final_info.error_string = message.c_str();
|
2321
|
+
}
|
2322
|
+
final_info.stats.latency =
|
2323
|
+
gpr_cycle_counter_sub(gpr_get_cycle_counter(), start_time());
|
2324
|
+
finalization_.Run(&final_info);
|
2317
2325
|
CancelRemainingParticipants();
|
2318
2326
|
arena()->DestroyManagedNewObjects();
|
2319
2327
|
}
|
@@ -2327,6 +2335,8 @@ class PromiseBasedCall : public Call,
|
|
2327
2335
|
grpc_completion_queue* cq_;
|
2328
2336
|
CompletionInfo completion_info_[6];
|
2329
2337
|
grpc_call_stats final_stats_{};
|
2338
|
+
Slice final_message_;
|
2339
|
+
grpc_status_code final_status_;
|
2330
2340
|
CallFinalization finalization_;
|
2331
2341
|
// Current deadline.
|
2332
2342
|
Mutex deadline_mu_;
|
@@ -2469,9 +2479,13 @@ void PromiseBasedCall::FinishOpOnCompletion(Completion* completion,
|
|
2469
2479
|
ExecCtx::Run(DEBUG_LOCATION, static_cast<grpc_closure*>(pending.tag),
|
2470
2480
|
error);
|
2471
2481
|
} else {
|
2482
|
+
InternalRef("cq_end_op");
|
2472
2483
|
grpc_cq_end_op(
|
2473
|
-
cq(), pending.tag, error,
|
2474
|
-
|
2484
|
+
cq(), pending.tag, error,
|
2485
|
+
[](void* p, grpc_cq_completion*) {
|
2486
|
+
static_cast<PromiseBasedCall*>(p)->InternalUnref("cq_end_op");
|
2487
|
+
},
|
2488
|
+
this, &completion_info_[i].completion);
|
2475
2489
|
}
|
2476
2490
|
}
|
2477
2491
|
|
@@ -3009,20 +3023,13 @@ void ClientPromiseBasedCall::StartRecvStatusOnClient(
|
|
3009
3023
|
trailing_metadata->get(GrpcStatusMetadata())
|
3010
3024
|
.value_or(GRPC_STATUS_UNKNOWN);
|
3011
3025
|
*op_args.status = status;
|
3012
|
-
|
3026
|
+
Slice message_slice;
|
3013
3027
|
if (Slice* message =
|
3014
3028
|
trailing_metadata->get_pointer(GrpcMessageMetadata())) {
|
3015
|
-
|
3016
|
-
*op_args.status_details = message->Ref().TakeCSlice();
|
3017
|
-
} else {
|
3018
|
-
*op_args.status_details = grpc_empty_slice();
|
3019
|
-
}
|
3020
|
-
if (message_string.empty()) {
|
3021
|
-
RunFinalization(status, nullptr);
|
3022
|
-
} else {
|
3023
|
-
std::string error_string(message_string);
|
3024
|
-
RunFinalization(status, error_string.c_str());
|
3029
|
+
message_slice = message->Ref();
|
3025
3030
|
}
|
3031
|
+
SetFinalizationStatus(status, message_slice.Ref());
|
3032
|
+
*op_args.status_details = message_slice.TakeCSlice();
|
3026
3033
|
if (op_args.error_string != nullptr && status != GRPC_STATUS_OK) {
|
3027
3034
|
*op_args.error_string =
|
3028
3035
|
gpr_strdup(MakeErrorString(trailing_metadata.get()).c_str());
|
@@ -3245,17 +3252,12 @@ void ServerPromiseBasedCall::Finish(ServerMetadataHandle result) {
|
|
3245
3252
|
if (server_initial_metadata_ != nullptr) {
|
3246
3253
|
server_initial_metadata_->Close();
|
3247
3254
|
}
|
3248
|
-
|
3255
|
+
Slice message_slice;
|
3249
3256
|
if (Slice* message = result->get_pointer(GrpcMessageMetadata())) {
|
3250
|
-
|
3257
|
+
message_slice = message->Ref();
|
3251
3258
|
}
|
3252
3259
|
AcceptTransportStatsFromContext();
|
3253
|
-
|
3254
|
-
RunFinalization(status, nullptr);
|
3255
|
-
} else {
|
3256
|
-
std::string error_string(message_string);
|
3257
|
-
RunFinalization(status, error_string.c_str());
|
3258
|
-
}
|
3260
|
+
SetFinalizationStatus(status, std::move(message_slice));
|
3259
3261
|
set_completed();
|
3260
3262
|
ResetDeadline();
|
3261
3263
|
PropagateCancellationToChildren();
|
@@ -420,8 +420,8 @@ class Server : public InternallyRefCounted<Server>,
|
|
420
420
|
}
|
421
421
|
// Returns a notification pointer to wait on if there are requests in-flight,
|
422
422
|
// or null.
|
423
|
-
Notification* ShutdownUnrefOnShutdownCall()
|
424
|
-
ABSL_EXCLUSIVE_LOCKS_REQUIRED(mu_global_)
|
423
|
+
GRPC_MUST_USE_RESULT Notification* ShutdownUnrefOnShutdownCall()
|
424
|
+
ABSL_EXCLUSIVE_LOCKS_REQUIRED(mu_global_) {
|
425
425
|
if (shutdown_refs_.fetch_sub(1, std::memory_order_acq_rel) == 1) {
|
426
426
|
// There is no request in-flight.
|
427
427
|
MaybeFinishShutdown();
|
@@ -23,6 +23,6 @@
|
|
23
23
|
|
24
24
|
#include <grpc/grpc.h>
|
25
25
|
|
26
|
-
const char* grpc_version_string(void) { return "
|
26
|
+
const char* grpc_version_string(void) { return "34.0.0"; }
|
27
27
|
|
28
|
-
const char* grpc_g_stands_for(void) { return "
|
28
|
+
const char* grpc_g_stands_for(void) { return "grounded"; }
|
@@ -63,7 +63,7 @@ absl::optional<absl::string_view> UnknownMap::GetStringValue(
|
|
63
63
|
} // namespace metadata_detail
|
64
64
|
|
65
65
|
ContentTypeMetadata::MementoType ContentTypeMetadata::ParseMemento(
|
66
|
-
Slice value, MetadataParseErrorFn on_error) {
|
66
|
+
Slice value, bool, MetadataParseErrorFn on_error) {
|
67
67
|
auto out = kInvalid;
|
68
68
|
auto value_string = value.as_string_view();
|
69
69
|
if (value_string == "application/grpc") {
|
@@ -105,7 +105,7 @@ const char* ContentTypeMetadata::DisplayValue(ValueType content_type) {
|
|
105
105
|
}
|
106
106
|
|
107
107
|
GrpcTimeoutMetadata::MementoType GrpcTimeoutMetadata::ParseMemento(
|
108
|
-
Slice value, MetadataParseErrorFn on_error) {
|
108
|
+
Slice value, bool, MetadataParseErrorFn on_error) {
|
109
109
|
auto timeout = ParseTimeout(value);
|
110
110
|
if (!timeout.has_value()) {
|
111
111
|
on_error("invalid value", value);
|
@@ -127,7 +127,7 @@ Slice GrpcTimeoutMetadata::Encode(ValueType x) {
|
|
127
127
|
}
|
128
128
|
|
129
129
|
TeMetadata::MementoType TeMetadata::ParseMemento(
|
130
|
-
Slice value, MetadataParseErrorFn on_error) {
|
130
|
+
Slice value, bool, MetadataParseErrorFn on_error) {
|
131
131
|
auto out = kInvalid;
|
132
132
|
if (value == "trailers") {
|
133
133
|
out = kTrailers;
|
@@ -191,7 +191,7 @@ const char* HttpSchemeMetadata::DisplayValue(ValueType content_type) {
|
|
191
191
|
}
|
192
192
|
|
193
193
|
HttpMethodMetadata::MementoType HttpMethodMetadata::ParseMemento(
|
194
|
-
Slice value, MetadataParseErrorFn on_error) {
|
194
|
+
Slice value, bool, MetadataParseErrorFn on_error) {
|
195
195
|
auto out = kInvalid;
|
196
196
|
auto value_string = value.as_string_view();
|
197
197
|
if (value_string == "POST") {
|
@@ -236,7 +236,7 @@ const char* HttpMethodMetadata::DisplayValue(ValueType content_type) {
|
|
236
236
|
}
|
237
237
|
|
238
238
|
CompressionAlgorithmBasedMetadata::MementoType
|
239
|
-
CompressionAlgorithmBasedMetadata::ParseMemento(Slice value,
|
239
|
+
CompressionAlgorithmBasedMetadata::ParseMemento(Slice value, bool,
|
240
240
|
MetadataParseErrorFn on_error) {
|
241
241
|
auto algorithm = ParseCompressionAlgorithm(value.as_string_view());
|
242
242
|
if (!algorithm.has_value()) {
|
@@ -247,7 +247,7 @@ CompressionAlgorithmBasedMetadata::ParseMemento(Slice value,
|
|
247
247
|
}
|
248
248
|
|
249
249
|
Duration GrpcRetryPushbackMsMetadata::ParseMemento(
|
250
|
-
Slice value, MetadataParseErrorFn on_error) {
|
250
|
+
Slice value, bool, MetadataParseErrorFn on_error) {
|
251
251
|
int64_t out;
|
252
252
|
if (!absl::SimpleAtoi(value.as_string_view(), &out)) {
|
253
253
|
on_error("not an integer", value);
|
@@ -269,7 +269,7 @@ std::string LbCostBinMetadata::DisplayValue(ValueType x) {
|
|
269
269
|
}
|
270
270
|
|
271
271
|
LbCostBinMetadata::MementoType LbCostBinMetadata::ParseMemento(
|
272
|
-
Slice value, MetadataParseErrorFn on_error) {
|
272
|
+
Slice value, bool, MetadataParseErrorFn on_error) {
|
273
273
|
if (value.length() < sizeof(double)) {
|
274
274
|
on_error("too short", value);
|
275
275
|
return {0, ""};
|