grpc-flamingo 1.11.0 → 1.15.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Makefile +1150 -176
- data/etc/roots.pem +40 -196
- data/include/grpc/grpc.h +49 -8
- data/include/grpc/grpc_security.h +123 -2
- data/include/grpc/grpc_security_constants.h +6 -0
- data/include/grpc/impl/codegen/fork.h +4 -4
- data/include/grpc/impl/codegen/grpc_types.h +26 -5
- data/include/grpc/impl/codegen/log.h +112 -0
- data/include/grpc/impl/codegen/port_platform.h +55 -4
- data/include/grpc/module.modulemap +2 -0
- data/include/grpc/support/log.h +2 -80
- data/include/grpc/support/string_util.h +2 -0
- data/include/grpc/support/sync.h +0 -16
- data/src/boringssl/err_data.c +602 -588
- data/src/core/ext/{census → filters/census}/grpc_context.cc +0 -0
- data/src/core/ext/filters/client_channel/channel_connectivity.cc +1 -1
- data/src/core/ext/filters/client_channel/client_channel.cc +1234 -1070
- data/src/core/ext/filters/client_channel/client_channel.h +5 -0
- data/src/core/ext/filters/client_channel/client_channel_channelz.cc +113 -0
- data/src/core/ext/filters/client_channel/client_channel_channelz.h +71 -0
- data/src/core/ext/filters/client_channel/client_channel_plugin.cc +9 -0
- data/src/core/ext/filters/client_channel/http_connect_handshaker.cc +1 -1
- data/src/core/ext/filters/client_channel/http_proxy.cc +22 -5
- data/src/core/ext/filters/client_channel/lb_policy.cc +2 -2
- data/src/core/ext/filters/client_channel/lb_policy.h +30 -10
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.cc +11 -9
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +120 -127
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.h +36 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.cc +36 -102
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.h +37 -32
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc +25 -22
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h +4 -2
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/google/protobuf/duration.pb.c +19 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/google/protobuf/duration.pb.h +54 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/google/protobuf/timestamp.pb.c +19 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/google/protobuf/timestamp.pb.h +54 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c +4 -17
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.h +37 -63
- data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +306 -239
- data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +444 -392
- data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +538 -98
- data/src/core/ext/filters/client_channel/lb_policy_factory.cc +8 -0
- data/src/core/ext/filters/client_channel/lb_policy_factory.h +4 -0
- data/src/core/ext/filters/client_channel/method_params.h +4 -0
- data/src/core/ext/filters/client_channel/resolver.h +10 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +36 -19
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.cc +320 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h +62 -9
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +49 -294
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +537 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +112 -87
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +17 -2
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_fallback.cc +6 -5
- data/src/core/ext/filters/{load_reporting/server_load_reporting_filter.h → client_channel/resolver/dns/c_ares/grpc_ares_wrapper_posix.cc} +7 -8
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc +29 -0
- data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +32 -15
- data/src/core/ext/filters/client_channel/retry_throttle.h +4 -0
- data/src/core/ext/filters/client_channel/subchannel.cc +58 -15
- data/src/core/ext/filters/client_channel/subchannel.h +11 -0
- data/src/core/ext/filters/deadline/deadline_filter.cc +18 -15
- data/src/core/ext/filters/deadline/deadline_filter.h +5 -5
- data/src/core/ext/filters/http/client/http_client_filter.cc +10 -9
- data/src/core/ext/filters/http/client_authority_filter.cc +6 -5
- data/src/core/ext/filters/http/message_compress/message_compress_filter.cc +6 -6
- data/src/core/ext/filters/http/server/http_server_filter.cc +123 -131
- data/src/core/ext/filters/http/server/http_server_filter.h +1 -1
- data/src/core/ext/transport/chttp2/client/insecure/channel_create_posix.cc +1 -1
- data/src/core/ext/transport/chttp2/server/chttp2_server.cc +1 -1
- data/src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.cc +3 -2
- data/src/core/ext/transport/chttp2/transport/bin_decoder.cc +9 -8
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +97 -48
- data/src/core/ext/transport/chttp2/transport/flow_control.cc +10 -7
- data/src/core/ext/transport/chttp2/transport/frame_settings.cc +3 -3
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +12 -8
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +4 -3
- data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +2 -2
- data/src/core/ext/transport/chttp2/transport/hpack_table.cc +2 -2
- data/src/core/ext/transport/chttp2/transport/parsing.cc +14 -12
- data/src/core/ext/transport/chttp2/transport/stream_lists.cc +3 -3
- data/src/core/ext/transport/chttp2/transport/writing.cc +32 -27
- data/src/core/ext/transport/inproc/inproc_transport.cc +87 -49
- data/src/core/lib/channel/channel_args.cc +28 -0
- data/src/core/lib/channel/channel_args.h +4 -0
- data/src/core/lib/channel/channel_stack.cc +22 -29
- data/src/core/lib/channel/channel_stack.h +2 -2
- data/src/core/lib/channel/channel_stack_builder.cc +0 -3
- data/src/core/lib/channel/channel_stack_builder.h +0 -2
- data/src/core/lib/channel/channel_trace.cc +28 -63
- data/src/core/lib/channel/channel_trace.h +13 -17
- data/src/core/lib/channel/channelz.cc +153 -0
- data/src/core/lib/channel/channelz.h +133 -0
- data/src/core/lib/channel/channelz_registry.cc +145 -0
- data/src/core/lib/channel/channelz_registry.h +120 -0
- data/src/core/lib/channel/connected_channel.cc +8 -1
- data/src/core/lib/channel/handshaker.cc +71 -0
- data/src/core/lib/channel/handshaker.h +4 -0
- data/src/core/lib/debug/stats.h +7 -0
- data/src/core/lib/debug/stats_data.cc +5 -0
- data/src/core/lib/debug/stats_data.h +120 -0
- data/src/core/lib/debug/trace.cc +2 -1
- data/src/core/lib/debug/trace.h +12 -1
- data/src/core/lib/gpr/alloc.h +28 -0
- data/src/core/lib/gpr/arena.cc +38 -45
- data/src/core/lib/gpr/log.cc +8 -2
- data/src/core/lib/gpr/log_android.cc +4 -0
- data/src/core/lib/gpr/log_linux.cc +4 -0
- data/src/core/lib/gpr/log_posix.cc +4 -0
- data/src/core/lib/gpr/log_windows.cc +5 -0
- data/src/core/lib/gpr/string.cc +28 -0
- data/src/core/lib/gpr/string.h +10 -0
- data/src/core/lib/gprpp/abstract.h +5 -2
- data/src/core/lib/gprpp/fork.cc +268 -0
- data/src/core/lib/gprpp/fork.h +88 -0
- data/src/core/lib/gprpp/inlined_vector.h +87 -37
- data/src/core/lib/gprpp/memory.h +12 -0
- data/src/core/lib/gprpp/mutex_lock.h +42 -0
- data/src/core/lib/gprpp/orphanable.h +10 -12
- data/src/core/lib/gprpp/ref_counted.h +10 -12
- data/src/core/lib/gprpp/ref_counted_ptr.h +65 -8
- data/src/core/lib/gprpp/thd.h +0 -3
- data/src/core/lib/gprpp/thd_posix.cc +5 -54
- data/src/core/lib/gprpp/thd_windows.cc +0 -7
- data/src/core/lib/http/httpcli_security_connector.cc +1 -3
- data/src/core/lib/iomgr/call_combiner.cc +13 -13
- data/src/core/lib/iomgr/call_combiner.h +84 -1
- data/src/core/lib/iomgr/closure.h +6 -5
- data/src/core/lib/iomgr/combiner.cc +30 -13
- data/src/core/lib/iomgr/combiner.h +1 -1
- data/src/core/lib/iomgr/endpoint_pair_posix.cc +2 -2
- data/src/core/lib/iomgr/error.cc +12 -0
- data/src/core/lib/iomgr/error.h +5 -0
- data/src/core/lib/iomgr/ev_epoll1_linux.cc +138 -51
- data/src/core/lib/iomgr/ev_epollex_linux.cc +276 -93
- data/src/core/lib/iomgr/ev_epollsig_linux.cc +58 -50
- data/src/core/lib/iomgr/ev_poll_posix.cc +163 -42
- data/src/core/lib/iomgr/ev_posix.cc +88 -24
- data/src/core/lib/iomgr/ev_posix.h +48 -12
- data/src/core/lib/iomgr/exec_ctx.cc +15 -9
- data/src/core/lib/iomgr/exec_ctx.h +48 -20
- data/src/core/lib/iomgr/executor.cc +274 -142
- data/src/core/lib/iomgr/executor.h +82 -16
- data/src/core/lib/iomgr/fork_posix.cc +42 -19
- data/src/core/lib/iomgr/iocp_windows.cc +9 -4
- data/src/core/lib/iomgr/iomgr.cc +2 -0
- data/src/core/lib/iomgr/iomgr.h +5 -0
- data/src/core/lib/iomgr/iomgr_posix.cc +2 -2
- data/src/core/lib/iomgr/is_epollexclusive_available.cc +1 -0
- data/src/core/lib/iomgr/lockfree_event.cc +5 -1
- data/src/core/lib/iomgr/polling_entity.cc +11 -2
- data/src/core/lib/iomgr/pollset_custom.cc +2 -2
- data/src/core/lib/iomgr/port.h +51 -1
- data/src/core/lib/iomgr/resolve_address.h +1 -1
- data/src/core/lib/iomgr/resolve_address_posix.cc +4 -3
- data/src/core/lib/iomgr/resolve_address_windows.cc +3 -2
- data/src/core/lib/iomgr/resource_quota.cc +89 -12
- data/src/core/lib/iomgr/resource_quota.h +16 -0
- data/src/core/lib/iomgr/sockaddr_posix.h +1 -1
- data/src/core/lib/iomgr/socket_factory_posix.cc +1 -1
- data/src/core/lib/iomgr/socket_mutator.cc +1 -1
- data/src/core/lib/iomgr/socket_mutator.h +1 -1
- data/src/core/lib/iomgr/socket_utils.h +9 -0
- data/src/core/lib/iomgr/socket_utils_common_posix.cc +29 -1
- data/src/core/lib/iomgr/socket_utils_linux.cc +0 -1
- data/src/core/lib/iomgr/socket_utils_posix.cc +2 -3
- data/src/core/lib/iomgr/socket_utils_posix.h +3 -0
- data/src/core/lib/iomgr/socket_utils_uv.cc +4 -0
- data/src/core/lib/iomgr/socket_utils_windows.cc +4 -0
- data/src/core/lib/iomgr/socket_windows.cc +33 -0
- data/src/core/lib/iomgr/socket_windows.h +6 -0
- data/src/core/lib/iomgr/tcp_client_custom.cc +5 -5
- data/src/core/lib/iomgr/tcp_client_posix.cc +10 -11
- data/src/core/lib/iomgr/tcp_custom.cc +11 -11
- data/src/core/lib/iomgr/tcp_posix.cc +49 -36
- data/src/core/lib/iomgr/tcp_server_custom.cc +5 -5
- data/src/core/lib/iomgr/tcp_server_posix.cc +16 -36
- data/src/core/lib/iomgr/tcp_server_utils_posix.h +1 -1
- data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +17 -5
- data/src/core/lib/iomgr/tcp_server_windows.cc +1 -0
- data/src/core/lib/iomgr/tcp_uv.cc +3 -0
- data/src/core/lib/iomgr/tcp_windows.cc +18 -2
- data/src/core/lib/iomgr/tcp_windows.h +2 -0
- data/src/core/lib/iomgr/timer.h +4 -3
- data/src/core/lib/iomgr/timer_generic.cc +133 -51
- data/src/core/lib/iomgr/timer_manager.cc +12 -14
- data/src/core/lib/iomgr/timer_uv.cc +3 -0
- data/src/core/lib/iomgr/udp_server.cc +106 -52
- data/src/core/lib/iomgr/udp_server.h +8 -4
- data/src/core/lib/json/json.cc +12 -1
- data/src/core/lib/json/json.h +5 -0
- data/src/core/lib/profiling/basic_timers.cc +1 -0
- data/src/core/lib/security/context/security_context.cc +8 -8
- data/src/core/lib/security/context/security_context.h +6 -2
- data/src/core/lib/security/credentials/alts/alts_credentials.h +0 -20
- data/src/core/lib/security/credentials/alts/check_gcp_environment_linux.cc +3 -2
- data/src/core/lib/security/credentials/alts/grpc_alts_credentials_client_options.cc +7 -7
- data/src/core/lib/security/credentials/alts/grpc_alts_credentials_options.h +1 -38
- data/src/core/lib/security/credentials/credentials.h +1 -0
- data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +89 -115
- data/src/core/lib/security/credentials/google_default/google_default_credentials.h +16 -0
- data/src/core/lib/security/credentials/jwt/json_token.h +2 -0
- data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +2 -0
- data/src/core/lib/security/credentials/local/local_credentials.cc +77 -0
- data/src/core/lib/security/credentials/local/local_credentials.h +40 -0
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +11 -7
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +1 -1
- data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +17 -3
- data/src/core/lib/security/security_connector/alts_security_connector.cc +2 -1
- data/src/core/lib/security/security_connector/load_system_roots.h +29 -0
- data/src/core/lib/{gpr/fork.h → security/security_connector/load_system_roots_fallback.cc} +10 -13
- data/src/core/lib/security/security_connector/load_system_roots_linux.cc +165 -0
- data/src/core/lib/security/security_connector/load_system_roots_linux.h +44 -0
- data/src/core/lib/security/security_connector/local_security_connector.cc +245 -0
- data/src/core/lib/security/security_connector/local_security_connector.h +58 -0
- data/src/core/lib/security/security_connector/security_connector.cc +79 -32
- data/src/core/lib/security/security_connector/security_connector.h +5 -3
- data/src/core/lib/security/transport/client_auth_filter.cc +5 -5
- data/src/core/lib/security/transport/secure_endpoint.cc +2 -2
- data/src/core/lib/security/transport/security_handshaker.cc +7 -2
- data/src/core/lib/security/transport/server_auth_filter.cc +4 -7
- data/src/core/lib/security/util/json_util.cc +4 -0
- data/src/core/lib/slice/slice.cc +6 -2
- data/src/core/lib/slice/slice_buffer.cc +27 -7
- data/src/core/lib/slice/slice_hash_table.h +4 -0
- data/src/core/lib/slice/slice_weak_hash_table.h +4 -0
- data/src/core/lib/surface/call.cc +119 -58
- data/src/core/lib/surface/call.h +7 -0
- data/src/core/lib/surface/channel.cc +50 -18
- data/src/core/lib/surface/channel.h +4 -0
- data/src/core/lib/surface/completion_queue.cc +153 -18
- data/src/core/lib/surface/completion_queue.h +20 -2
- data/src/core/lib/surface/completion_queue_factory.cc +13 -4
- data/src/core/lib/surface/init.cc +7 -8
- data/src/core/lib/surface/init.h +0 -1
- data/src/core/lib/surface/server.cc +16 -0
- data/src/core/lib/surface/version.cc +1 -1
- data/src/core/lib/transport/bdp_estimator.cc +3 -3
- data/src/core/lib/transport/bdp_estimator.h +2 -2
- data/src/core/lib/transport/byte_stream.cc +1 -1
- data/src/core/lib/transport/connectivity_state.cc +6 -7
- data/src/core/lib/transport/service_config.cc +2 -2
- data/src/core/lib/transport/service_config.h +3 -3
- data/src/core/lib/transport/transport.cc +22 -10
- data/src/core/lib/transport/transport.h +18 -18
- data/src/core/lib/transport/transport_op_string.cc +1 -8
- data/src/core/plugin_registry/grpc_plugin_registry.cc +0 -4
- data/src/core/tsi/alts/crypt/aes_gcm.cc +2 -0
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +19 -7
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.h +10 -0
- data/src/core/tsi/alts/handshaker/alts_handshaker_service_api_util.h +2 -2
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +38 -3
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker_private.h +3 -0
- data/src/core/tsi/alts/handshaker/altscontext.pb.c +0 -1
- data/src/core/tsi/alts/handshaker/altscontext.pb.h +1 -2
- data/src/core/tsi/alts/handshaker/handshaker.pb.c +0 -1
- data/src/core/tsi/alts/handshaker/handshaker.pb.h +1 -2
- data/src/core/tsi/alts/handshaker/transport_security_common.pb.c +0 -1
- data/src/core/tsi/alts/handshaker/transport_security_common.pb.h +1 -1
- data/src/core/tsi/alts/handshaker/transport_security_common_api.h +2 -2
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.cc +47 -1
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.h +3 -1
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc +12 -11
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.h +7 -2
- data/src/core/tsi/fake_transport_security.cc +1 -0
- data/src/core/tsi/grpc_shadow_boringssl.h +3006 -0
- data/src/core/tsi/local_transport_security.cc +209 -0
- data/src/core/tsi/local_transport_security.h +51 -0
- data/src/core/tsi/ssl/session_cache/ssl_session.h +2 -0
- data/src/core/tsi/ssl/session_cache/ssl_session_cache.cc +5 -5
- data/src/core/tsi/ssl/session_cache/ssl_session_cache.h +6 -0
- data/src/core/tsi/ssl_transport_security.cc +245 -116
- data/src/core/tsi/ssl_types.h +2 -0
- data/src/core/tsi/transport_security.cc +14 -0
- data/src/core/tsi/transport_security.h +2 -0
- data/src/core/tsi/transport_security_interface.h +11 -1
- data/src/ruby/bin/math_client.rb +17 -9
- data/src/ruby/ext/grpc/extconf.rb +1 -26
- data/src/ruby/ext/grpc/rb_channel_credentials.c +3 -3
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +42 -16
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +65 -26
- data/src/ruby/lib/grpc/generic/active_call.rb +19 -23
- data/src/ruby/lib/grpc/generic/rpc_server.rb +2 -1
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/src/ruby/pb/generate_proto_ruby.sh +7 -1
- data/src/ruby/pb/grpc/health/v1/health_services_pb.rb +4 -1
- data/src/ruby/spec/call_credentials_spec.rb +1 -1
- data/src/ruby/spec/call_spec.rb +1 -1
- data/src/ruby/spec/channel_credentials_spec.rb +1 -1
- data/src/ruby/spec/channel_spec.rb +1 -1
- data/src/ruby/spec/client_auth_spec.rb +1 -12
- data/src/ruby/spec/client_server_spec.rb +1 -1
- data/src/ruby/spec/compression_options_spec.rb +1 -1
- data/src/ruby/spec/error_sanity_spec.rb +1 -1
- data/src/ruby/spec/generic/client_stub_spec.rb +16 -4
- data/src/ruby/spec/generic/rpc_desc_spec.rb +1 -1
- data/src/ruby/spec/generic/rpc_server_pool_spec.rb +1 -1
- data/src/ruby/spec/generic/service_spec.rb +1 -1
- data/src/ruby/spec/google_rpc_status_utils_spec.rb +1 -12
- data/src/ruby/spec/pb/duplicate/codegen_spec.rb +1 -0
- data/src/ruby/spec/pb/health/checker_spec.rb +1 -1
- data/src/ruby/spec/server_credentials_spec.rb +1 -1
- data/src/ruby/spec/server_spec.rb +1 -1
- data/src/ruby/spec/spec_helper.rb +1 -0
- data/src/ruby/spec/support/services.rb +1 -1
- data/src/ruby/spec/time_consts_spec.rb +1 -1
- data/third_party/address_sorting/address_sorting.c +17 -11
- data/third_party/address_sorting/address_sorting_windows.c +43 -3
- data/third_party/address_sorting/include/address_sorting/address_sorting.h +3 -0
- data/third_party/boringssl/crypto/asn1/a_int.c +33 -28
- data/third_party/boringssl/crypto/asn1/a_mbstr.c +24 -22
- data/third_party/boringssl/crypto/asn1/a_utf8.c +13 -11
- data/third_party/boringssl/crypto/asn1/asn1_locl.h +3 -0
- data/third_party/boringssl/crypto/asn1/tasn_dec.c +40 -19
- data/third_party/boringssl/crypto/bio/fd.c +1 -0
- data/third_party/boringssl/crypto/bio/file.c +2 -0
- data/third_party/boringssl/crypto/bn_extra/convert.c +6 -5
- data/third_party/boringssl/crypto/bytestring/ber.c +1 -4
- data/third_party/boringssl/crypto/bytestring/cbb.c +116 -16
- data/third_party/boringssl/crypto/bytestring/cbs.c +151 -20
- data/third_party/boringssl/crypto/cipher_extra/e_aesccm.c +203 -0
- data/third_party/boringssl/crypto/cipher_extra/e_rc2.c +2 -0
- data/third_party/boringssl/crypto/cipher_extra/e_tls.c +1 -2
- data/third_party/boringssl/crypto/cpu-aarch64-fuchsia.c +55 -0
- data/third_party/boringssl/crypto/cpu-aarch64-linux.c +2 -1
- data/third_party/boringssl/crypto/dsa/dsa.c +16 -54
- data/third_party/boringssl/crypto/ec_extra/ec_asn1.c +9 -10
- data/third_party/boringssl/crypto/ecdh/ecdh.c +4 -3
- data/third_party/boringssl/crypto/fipsmodule/bcm.c +11 -542
- data/third_party/boringssl/crypto/fipsmodule/bn/add.c +57 -112
- data/third_party/boringssl/crypto/fipsmodule/bn/asm/x86_64-gcc.c +4 -3
- data/third_party/boringssl/crypto/fipsmodule/bn/bn.c +128 -70
- data/third_party/boringssl/crypto/fipsmodule/bn/bytes.c +32 -71
- data/third_party/boringssl/crypto/fipsmodule/bn/cmp.c +64 -118
- data/third_party/boringssl/crypto/fipsmodule/bn/div.c +284 -122
- data/third_party/boringssl/crypto/fipsmodule/bn/exponentiation.c +31 -65
- data/third_party/boringssl/crypto/fipsmodule/bn/gcd.c +274 -218
- data/third_party/boringssl/crypto/fipsmodule/bn/generic.c +2 -1
- data/third_party/boringssl/crypto/fipsmodule/bn/internal.h +187 -27
- data/third_party/boringssl/crypto/fipsmodule/bn/jacobi.c +1 -1
- data/third_party/boringssl/crypto/fipsmodule/bn/montgomery.c +124 -81
- data/third_party/boringssl/crypto/fipsmodule/bn/montgomery_inv.c +8 -30
- data/third_party/boringssl/crypto/fipsmodule/bn/mul.c +321 -347
- data/third_party/boringssl/crypto/fipsmodule/bn/prime.c +326 -66
- data/third_party/boringssl/crypto/fipsmodule/bn/random.c +77 -25
- data/third_party/boringssl/crypto/fipsmodule/bn/rsaz_exp.c +199 -222
- data/third_party/boringssl/crypto/fipsmodule/bn/rsaz_exp.h +27 -47
- data/third_party/boringssl/crypto/fipsmodule/bn/shift.c +155 -96
- data/third_party/boringssl/crypto/fipsmodule/bn/sqrt.c +1 -1
- data/third_party/boringssl/crypto/fipsmodule/cipher/e_aes.c +10 -10
- data/third_party/boringssl/crypto/fipsmodule/des/internal.h +2 -0
- data/third_party/boringssl/crypto/fipsmodule/ec/ec.c +78 -47
- data/third_party/boringssl/crypto/fipsmodule/ec/ec_key.c +99 -163
- data/third_party/boringssl/crypto/fipsmodule/ec/ec_montgomery.c +3 -10
- data/third_party/boringssl/crypto/fipsmodule/ec/internal.h +44 -23
- data/third_party/boringssl/crypto/fipsmodule/ec/oct.c +59 -90
- data/third_party/boringssl/crypto/fipsmodule/ec/p224-64.c +38 -65
- data/third_party/boringssl/crypto/fipsmodule/ec/p256-x86_64-table.h +5378 -5418
- data/third_party/boringssl/crypto/fipsmodule/ec/p256-x86_64.c +17 -26
- data/third_party/boringssl/crypto/fipsmodule/ec/p256-x86_64.h +15 -11
- data/third_party/boringssl/crypto/fipsmodule/ec/simple.c +45 -51
- data/third_party/boringssl/crypto/fipsmodule/ec/{util-64.c → util.c} +0 -5
- data/third_party/boringssl/crypto/fipsmodule/ec/wnaf.c +144 -264
- data/third_party/boringssl/crypto/fipsmodule/ecdsa/ecdsa.c +78 -62
- data/third_party/boringssl/crypto/fipsmodule/modes/ccm.c +256 -0
- data/third_party/boringssl/crypto/fipsmodule/modes/internal.h +36 -32
- data/third_party/boringssl/crypto/fipsmodule/rand/ctrdrbg.c +9 -7
- data/third_party/boringssl/crypto/fipsmodule/rsa/blinding.c +16 -40
- data/third_party/boringssl/crypto/fipsmodule/rsa/internal.h +1 -6
- data/third_party/boringssl/crypto/fipsmodule/rsa/rsa.c +57 -39
- data/third_party/boringssl/crypto/fipsmodule/rsa/rsa_impl.c +309 -142
- data/third_party/boringssl/crypto/fipsmodule/self_check/self_check.c +581 -0
- data/third_party/boringssl/crypto/fipsmodule/tls/internal.h +39 -0
- data/third_party/boringssl/crypto/fipsmodule/tls/kdf.c +165 -0
- data/third_party/boringssl/crypto/internal.h +65 -2
- data/third_party/boringssl/crypto/mem.c +0 -2
- data/third_party/boringssl/crypto/obj/obj.c +6 -73
- data/third_party/boringssl/crypto/thread_pthread.c +35 -5
- data/third_party/boringssl/crypto/x509/a_strex.c +11 -11
- data/third_party/boringssl/crypto/x509/vpm_int.h +1 -0
- data/third_party/boringssl/crypto/x509/x509_vfy.c +4 -0
- data/third_party/boringssl/crypto/x509/x509_vpm.c +44 -22
- data/third_party/boringssl/crypto/x509/x_name.c +13 -0
- data/third_party/boringssl/include/openssl/aead.h +10 -0
- data/third_party/boringssl/include/openssl/asn1.h +2 -3
- data/third_party/boringssl/include/openssl/base.h +5 -14
- data/third_party/boringssl/include/openssl/bio.h +1 -1
- data/third_party/boringssl/include/openssl/bn.h +62 -18
- data/third_party/boringssl/include/openssl/bytestring.h +53 -28
- data/third_party/boringssl/include/openssl/crypto.h +4 -0
- data/third_party/boringssl/include/openssl/ec.h +10 -4
- data/third_party/boringssl/include/openssl/ec_key.h +7 -6
- data/third_party/boringssl/include/openssl/err.h +9 -9
- data/third_party/boringssl/include/openssl/evp.h +1 -1
- data/third_party/boringssl/include/openssl/rsa.h +35 -10
- data/third_party/boringssl/include/openssl/ssl.h +167 -19
- data/third_party/boringssl/include/openssl/ssl3.h +0 -1
- data/third_party/boringssl/include/openssl/stack.h +1 -1
- data/third_party/boringssl/include/openssl/tls1.h +10 -2
- data/third_party/boringssl/include/openssl/x509.h +4 -0
- data/third_party/boringssl/include/openssl/x509v3.h +1 -0
- data/third_party/boringssl/ssl/d1_both.cc +16 -2
- data/third_party/boringssl/ssl/dtls_method.cc +1 -1
- data/third_party/boringssl/ssl/handoff.cc +285 -0
- data/third_party/boringssl/ssl/handshake.cc +26 -12
- data/third_party/boringssl/ssl/handshake_client.cc +101 -95
- data/third_party/boringssl/ssl/handshake_server.cc +14 -2
- data/third_party/boringssl/ssl/internal.h +132 -79
- data/third_party/boringssl/ssl/s3_both.cc +2 -2
- data/third_party/boringssl/ssl/s3_lib.cc +3 -1
- data/third_party/boringssl/ssl/s3_pkt.cc +0 -18
- data/third_party/boringssl/ssl/ssl_aead_ctx.cc +1 -4
- data/third_party/boringssl/ssl/ssl_asn1.cc +47 -43
- data/third_party/boringssl/ssl/ssl_cipher.cc +12 -8
- data/third_party/boringssl/ssl/ssl_key_share.cc +3 -1
- data/third_party/boringssl/ssl/ssl_lib.cc +83 -14
- data/third_party/boringssl/ssl/ssl_privkey.cc +6 -0
- data/third_party/boringssl/ssl/ssl_stat.cc +6 -6
- data/third_party/boringssl/ssl/ssl_versions.cc +12 -85
- data/third_party/boringssl/ssl/ssl_x509.cc +59 -61
- data/third_party/boringssl/ssl/t1_enc.cc +73 -124
- data/third_party/boringssl/ssl/t1_lib.cc +367 -41
- data/third_party/boringssl/ssl/tls13_both.cc +8 -0
- data/third_party/boringssl/ssl/tls13_client.cc +98 -184
- data/third_party/boringssl/ssl/tls13_enc.cc +88 -158
- data/third_party/boringssl/ssl/tls13_server.cc +91 -137
- data/third_party/boringssl/ssl/tls_method.cc +0 -17
- data/third_party/boringssl/ssl/tls_record.cc +1 -10
- data/third_party/boringssl/third_party/fiat/curve25519.c +921 -2753
- data/third_party/boringssl/third_party/fiat/curve25519_tables.h +7880 -0
- data/third_party/boringssl/third_party/fiat/internal.h +32 -20
- data/third_party/boringssl/third_party/fiat/p256.c +1824 -0
- metadata +86 -71
- data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.cc +0 -253
- data/src/core/ext/filters/load_reporting/server_load_reporting_filter.cc +0 -222
- data/src/core/ext/filters/load_reporting/server_load_reporting_plugin.cc +0 -71
- data/src/core/ext/filters/load_reporting/server_load_reporting_plugin.h +0 -61
- data/src/core/lib/channel/channel_trace_registry.cc +0 -80
- data/src/core/lib/channel/channel_trace_registry.h +0 -43
- data/src/core/lib/gpr/fork.cc +0 -78
- data/src/core/tsi/transport_security_adapter.cc +0 -235
- data/src/core/tsi/transport_security_adapter.h +0 -41
- data/src/ruby/bin/apis/google/protobuf/empty.rb +0 -29
- data/src/ruby/bin/apis/pubsub_demo.rb +0 -241
- data/src/ruby/bin/apis/tech/pubsub/proto/pubsub.rb +0 -159
- data/src/ruby/bin/apis/tech/pubsub/proto/pubsub_services.rb +0 -88
- data/src/ruby/pb/test/client.rb +0 -764
- data/src/ruby/pb/test/server.rb +0 -252
- data/src/ruby/spec/pb/package_with_underscore/checker_spec.rb +0 -54
- data/src/ruby/spec/pb/package_with_underscore/data.proto +0 -23
- data/src/ruby/spec/pb/package_with_underscore/service.proto +0 -23
- data/third_party/boringssl/crypto/curve25519/x25519-x86_64.c +0 -247
- data/third_party/boringssl/crypto/fipsmodule/ec/p256-64.c +0 -1674
@@ -193,6 +193,7 @@ grpc_server_security_connector* grpc_fake_server_security_connector_create(
|
|
193
193
|
typedef struct {
|
194
194
|
tsi_ssl_pem_key_cert_pair* pem_key_cert_pair;
|
195
195
|
char* pem_root_certs;
|
196
|
+
verify_peer_options verify_options;
|
196
197
|
} grpc_ssl_config;
|
197
198
|
|
198
199
|
/* Creates an SSL channel_security_connector.
|
@@ -239,10 +240,11 @@ const tsi_peer_property* tsi_peer_get_property_by_name(const tsi_peer* peer,
|
|
239
240
|
const char* name);
|
240
241
|
|
241
242
|
/* Exposed for testing only. */
|
242
|
-
grpc_auth_context*
|
243
|
-
tsi_peer
|
243
|
+
grpc_auth_context* grpc_ssl_peer_to_auth_context(const tsi_peer* peer);
|
244
|
+
tsi_peer grpc_shallow_peer_from_ssl_auth_context(
|
244
245
|
const grpc_auth_context* auth_context);
|
245
|
-
void
|
246
|
+
void grpc_shallow_peer_destruct(tsi_peer* peer);
|
247
|
+
int grpc_ssl_host_matches_name(const tsi_peer* peer, const char* peer_name);
|
246
248
|
|
247
249
|
/* --- Default SSL Root Store. --- */
|
248
250
|
namespace grpc_core {
|
@@ -42,6 +42,7 @@
|
|
42
42
|
namespace {
|
43
43
|
/* We can have a per-call credentials. */
|
44
44
|
struct call_data {
|
45
|
+
gpr_arena* arena;
|
45
46
|
grpc_call_stack* owning_call;
|
46
47
|
grpc_call_combiner* call_combiner;
|
47
48
|
grpc_call_credentials* creds;
|
@@ -166,7 +167,6 @@ static void cancel_get_request_metadata(void* arg, grpc_error* error) {
|
|
166
167
|
grpc_call_credentials_cancel_get_request_metadata(
|
167
168
|
calld->creds, &calld->md_array, GRPC_ERROR_REF(error));
|
168
169
|
}
|
169
|
-
GRPC_CALL_STACK_UNREF(calld->owning_call, "cancel_get_request_metadata");
|
170
170
|
}
|
171
171
|
|
172
172
|
static void send_security_metadata(grpc_call_element* elem,
|
@@ -221,7 +221,6 @@ static void send_security_metadata(grpc_call_element* elem,
|
|
221
221
|
GRPC_ERROR_UNREF(error);
|
222
222
|
} else {
|
223
223
|
// Async return; register cancellation closure with call combiner.
|
224
|
-
GRPC_CALL_STACK_REF(calld->owning_call, "cancel_get_request_metadata");
|
225
224
|
grpc_call_combiner_set_notify_on_cancel(
|
226
225
|
calld->call_combiner,
|
227
226
|
GRPC_CLOSURE_INIT(&calld->get_request_metadata_cancel_closure,
|
@@ -264,7 +263,6 @@ static void cancel_check_call_host(void* arg, grpc_error* error) {
|
|
264
263
|
chand->security_connector, &calld->async_result_closure,
|
265
264
|
GRPC_ERROR_REF(error));
|
266
265
|
}
|
267
|
-
GRPC_CALL_STACK_UNREF(calld->owning_call, "cancel_check_call_host");
|
268
266
|
}
|
269
267
|
|
270
268
|
static void auth_start_transport_stream_op_batch(
|
@@ -276,10 +274,12 @@ static void auth_start_transport_stream_op_batch(
|
|
276
274
|
channel_data* chand = static_cast<channel_data*>(elem->channel_data);
|
277
275
|
|
278
276
|
if (!batch->cancel_stream) {
|
277
|
+
// TODO(hcaseyal): move this to init_call_elem once issue #15927 is
|
278
|
+
// resolved.
|
279
279
|
GPR_ASSERT(batch->payload->context != nullptr);
|
280
280
|
if (batch->payload->context[GRPC_CONTEXT_SECURITY].value == nullptr) {
|
281
281
|
batch->payload->context[GRPC_CONTEXT_SECURITY].value =
|
282
|
-
grpc_client_security_context_create();
|
282
|
+
grpc_client_security_context_create(calld->arena);
|
283
283
|
batch->payload->context[GRPC_CONTEXT_SECURITY].destroy =
|
284
284
|
grpc_client_security_context_destroy;
|
285
285
|
}
|
@@ -315,7 +315,6 @@ static void auth_start_transport_stream_op_batch(
|
|
315
315
|
GRPC_ERROR_UNREF(error);
|
316
316
|
} else {
|
317
317
|
// Async return; register cancellation closure with call combiner.
|
318
|
-
GRPC_CALL_STACK_REF(calld->owning_call, "cancel_check_call_host");
|
319
318
|
grpc_call_combiner_set_notify_on_cancel(
|
320
319
|
calld->call_combiner,
|
321
320
|
GRPC_CLOSURE_INIT(&calld->check_call_host_cancel_closure,
|
@@ -335,6 +334,7 @@ static void auth_start_transport_stream_op_batch(
|
|
335
334
|
static grpc_error* init_call_elem(grpc_call_element* elem,
|
336
335
|
const grpc_call_element_args* args) {
|
337
336
|
call_data* calld = static_cast<call_data*>(elem->call_data);
|
337
|
+
calld->arena = args->arena;
|
338
338
|
calld->owning_call = args->call_stack;
|
339
339
|
calld->call_combiner = args->call_combiner;
|
340
340
|
calld->host = grpc_empty_slice();
|
@@ -133,7 +133,7 @@ static void call_read_cb(secure_endpoint* ep, grpc_error* error) {
|
|
133
133
|
for (i = 0; i < ep->read_buffer->count; i++) {
|
134
134
|
char* data = grpc_dump_slice(ep->read_buffer->slices[i],
|
135
135
|
GPR_DUMP_HEX | GPR_DUMP_ASCII);
|
136
|
-
gpr_log(
|
136
|
+
gpr_log(GPR_INFO, "READ %p: %s", ep, data);
|
137
137
|
gpr_free(data);
|
138
138
|
}
|
139
139
|
}
|
@@ -269,7 +269,7 @@ static void endpoint_write(grpc_endpoint* secure_ep, grpc_slice_buffer* slices,
|
|
269
269
|
for (i = 0; i < slices->count; i++) {
|
270
270
|
char* data =
|
271
271
|
grpc_dump_slice(slices->slices[i], GPR_DUMP_HEX | GPR_DUMP_ASCII);
|
272
|
-
gpr_log(
|
272
|
+
gpr_log(GPR_INFO, "WRITE %p: %s", ep, data);
|
273
273
|
gpr_free(data);
|
274
274
|
}
|
275
275
|
}
|
@@ -232,6 +232,10 @@ static grpc_error* on_handshake_next_done_locked(
|
|
232
232
|
const unsigned char* bytes_to_send, size_t bytes_to_send_size,
|
233
233
|
tsi_handshaker_result* handshaker_result) {
|
234
234
|
grpc_error* error = GRPC_ERROR_NONE;
|
235
|
+
// Handshaker was shutdown.
|
236
|
+
if (h->shutdown) {
|
237
|
+
return GRPC_ERROR_CREATE_FROM_STATIC_STRING("Handshaker shutdown");
|
238
|
+
}
|
235
239
|
// Read more if we need to.
|
236
240
|
if (result == TSI_INCOMPLETE_DATA) {
|
237
241
|
GPR_ASSERT(bytes_to_send_size == 0);
|
@@ -376,6 +380,7 @@ static void security_handshaker_shutdown(grpc_handshaker* handshaker,
|
|
376
380
|
gpr_mu_lock(&h->mu);
|
377
381
|
if (!h->shutdown) {
|
378
382
|
h->shutdown = true;
|
383
|
+
tsi_handshaker_shutdown(h->handshaker);
|
379
384
|
grpc_endpoint_shutdown(h->args->endpoint, GRPC_ERROR_REF(why));
|
380
385
|
cleanup_args_for_failure_locked(h);
|
381
386
|
}
|
@@ -406,7 +411,7 @@ static void security_handshaker_do_handshake(grpc_handshaker* handshaker,
|
|
406
411
|
|
407
412
|
static const grpc_handshaker_vtable security_handshaker_vtable = {
|
408
413
|
security_handshaker_destroy, security_handshaker_shutdown,
|
409
|
-
security_handshaker_do_handshake};
|
414
|
+
security_handshaker_do_handshake, "security"};
|
410
415
|
|
411
416
|
static grpc_handshaker* security_handshaker_create(
|
412
417
|
tsi_handshaker* handshaker, grpc_security_connector* connector) {
|
@@ -456,7 +461,7 @@ static void fail_handshaker_do_handshake(grpc_handshaker* handshaker,
|
|
456
461
|
|
457
462
|
static const grpc_handshaker_vtable fail_handshaker_vtable = {
|
458
463
|
fail_handshaker_destroy, fail_handshaker_shutdown,
|
459
|
-
fail_handshaker_do_handshake};
|
464
|
+
fail_handshaker_do_handshake, "security_fail"};
|
460
465
|
|
461
466
|
static grpc_handshaker* fail_handshaker_create() {
|
462
467
|
grpc_handshaker* h = static_cast<grpc_handshaker*>(gpr_malloc(sizeof(*h)));
|
@@ -44,7 +44,6 @@ struct call_data {
|
|
44
44
|
grpc_metadata_array md;
|
45
45
|
const grpc_metadata* consumed_md;
|
46
46
|
size_t num_consumed_md;
|
47
|
-
grpc_auth_context* auth_context;
|
48
47
|
grpc_closure cancel_closure;
|
49
48
|
gpr_atm state; // async_state
|
50
49
|
};
|
@@ -157,7 +156,6 @@ static void cancel_call(void* arg, grpc_error* error) {
|
|
157
156
|
on_md_processing_done_inner(elem, nullptr, 0, nullptr, 0,
|
158
157
|
GRPC_ERROR_REF(error));
|
159
158
|
}
|
160
|
-
GRPC_CALL_STACK_UNREF(calld->owning_call, "cancel_call");
|
161
159
|
}
|
162
160
|
|
163
161
|
static void recv_initial_metadata_ready(void* arg, grpc_error* error) {
|
@@ -169,7 +167,6 @@ static void recv_initial_metadata_ready(void* arg, grpc_error* error) {
|
|
169
167
|
if (chand->creds != nullptr && chand->creds->processor.process != nullptr) {
|
170
168
|
// We're calling out to the application, so we need to make sure
|
171
169
|
// to drop the call combiner early if we get cancelled.
|
172
|
-
GRPC_CALL_STACK_REF(calld->owning_call, "cancel_call");
|
173
170
|
GRPC_CLOSURE_INIT(&calld->cancel_closure, cancel_call, elem,
|
174
171
|
grpc_schedule_on_exec_ctx);
|
175
172
|
grpc_call_combiner_set_notify_on_cancel(calld->call_combiner,
|
@@ -178,7 +175,7 @@ static void recv_initial_metadata_ready(void* arg, grpc_error* error) {
|
|
178
175
|
calld->md = metadata_batch_to_md_array(
|
179
176
|
batch->payload->recv_initial_metadata.recv_initial_metadata);
|
180
177
|
chand->creds->processor.process(
|
181
|
-
chand->creds->processor.state,
|
178
|
+
chand->creds->processor.state, chand->auth_context,
|
182
179
|
calld->md.metadata, calld->md.count, on_md_processing_done, elem);
|
183
180
|
return;
|
184
181
|
}
|
@@ -214,9 +211,9 @@ static grpc_error* init_call_elem(grpc_call_element* elem,
|
|
214
211
|
// Create server security context. Set its auth context from channel
|
215
212
|
// data and save it in the call context.
|
216
213
|
grpc_server_security_context* server_ctx =
|
217
|
-
grpc_server_security_context_create();
|
218
|
-
server_ctx->auth_context =
|
219
|
-
|
214
|
+
grpc_server_security_context_create(args->arena);
|
215
|
+
server_ctx->auth_context =
|
216
|
+
GRPC_AUTH_CONTEXT_REF(chand->auth_context, "server_auth_filter");
|
220
217
|
if (args->context[GRPC_CONTEXT_SECURITY].value != nullptr) {
|
221
218
|
args->context[GRPC_CONTEXT_SECURITY].destroy(
|
222
219
|
args->context[GRPC_CONTEXT_SECURITY].value);
|
@@ -29,6 +29,10 @@ const char* grpc_json_get_string_property(const grpc_json* json,
|
|
29
29
|
const char* prop_name) {
|
30
30
|
grpc_json* child;
|
31
31
|
for (child = json->child; child != nullptr; child = child->next) {
|
32
|
+
if (child->key == nullptr) {
|
33
|
+
gpr_log(GPR_ERROR, "Invalid (null) JSON key encountered");
|
34
|
+
return nullptr;
|
35
|
+
}
|
32
36
|
if (strcmp(child->key, prop_name) == 0) break;
|
33
37
|
}
|
34
38
|
if (child == nullptr || child->type != GRPC_JSON_STRING) {
|
data/src/core/lib/slice/slice.cc
CHANGED
@@ -69,8 +69,12 @@ grpc_slice grpc_slice_ref(grpc_slice slice) {
|
|
69
69
|
|
70
70
|
/* Public API */
|
71
71
|
void grpc_slice_unref(grpc_slice slice) {
|
72
|
-
grpc_core::ExecCtx
|
73
|
-
|
72
|
+
if (grpc_core::ExecCtx::Get() == nullptr) {
|
73
|
+
grpc_core::ExecCtx exec_ctx;
|
74
|
+
grpc_slice_unref_internal(slice);
|
75
|
+
} else {
|
76
|
+
grpc_slice_unref_internal(slice);
|
77
|
+
}
|
74
78
|
}
|
75
79
|
|
76
80
|
/* grpc_slice_from_static_string support structure - a refcount that does
|
@@ -75,8 +75,12 @@ void grpc_slice_buffer_destroy_internal(grpc_slice_buffer* sb) {
|
|
75
75
|
}
|
76
76
|
|
77
77
|
void grpc_slice_buffer_destroy(grpc_slice_buffer* sb) {
|
78
|
-
grpc_core::ExecCtx
|
79
|
-
|
78
|
+
if (grpc_core::ExecCtx::Get() == nullptr) {
|
79
|
+
grpc_core::ExecCtx exec_ctx;
|
80
|
+
grpc_slice_buffer_destroy_internal(sb);
|
81
|
+
} else {
|
82
|
+
grpc_slice_buffer_destroy_internal(sb);
|
83
|
+
}
|
80
84
|
}
|
81
85
|
|
82
86
|
uint8_t* grpc_slice_buffer_tiny_add(grpc_slice_buffer* sb, size_t n) {
|
@@ -176,8 +180,12 @@ void grpc_slice_buffer_reset_and_unref_internal(grpc_slice_buffer* sb) {
|
|
176
180
|
}
|
177
181
|
|
178
182
|
void grpc_slice_buffer_reset_and_unref(grpc_slice_buffer* sb) {
|
179
|
-
grpc_core::ExecCtx
|
180
|
-
|
183
|
+
if (grpc_core::ExecCtx::Get() == nullptr) {
|
184
|
+
grpc_core::ExecCtx exec_ctx;
|
185
|
+
grpc_slice_buffer_reset_and_unref_internal(sb);
|
186
|
+
} else {
|
187
|
+
grpc_slice_buffer_reset_and_unref_internal(sb);
|
188
|
+
}
|
181
189
|
}
|
182
190
|
|
183
191
|
void grpc_slice_buffer_swap(grpc_slice_buffer* a, grpc_slice_buffer* b) {
|
@@ -325,14 +333,26 @@ void grpc_slice_buffer_trim_end(grpc_slice_buffer* sb, size_t n,
|
|
325
333
|
size_t slice_len = GRPC_SLICE_LENGTH(slice);
|
326
334
|
if (slice_len > n) {
|
327
335
|
sb->slices[idx] = grpc_slice_split_head(&slice, slice_len - n);
|
328
|
-
|
336
|
+
if (garbage) {
|
337
|
+
grpc_slice_buffer_add_indexed(garbage, slice);
|
338
|
+
} else {
|
339
|
+
grpc_slice_unref_internal(slice);
|
340
|
+
}
|
329
341
|
return;
|
330
342
|
} else if (slice_len == n) {
|
331
|
-
|
343
|
+
if (garbage) {
|
344
|
+
grpc_slice_buffer_add_indexed(garbage, slice);
|
345
|
+
} else {
|
346
|
+
grpc_slice_unref_internal(slice);
|
347
|
+
}
|
332
348
|
sb->count = idx;
|
333
349
|
return;
|
334
350
|
} else {
|
335
|
-
|
351
|
+
if (garbage) {
|
352
|
+
grpc_slice_buffer_add_indexed(garbage, slice);
|
353
|
+
} else {
|
354
|
+
grpc_slice_unref_internal(slice);
|
355
|
+
}
|
336
356
|
n -= slice_len;
|
337
357
|
sb->count = idx;
|
338
358
|
}
|
@@ -81,6 +81,10 @@ class SliceHashTable : public RefCounted<SliceHashTable<T>> {
|
|
81
81
|
template <typename T2, typename... Args>
|
82
82
|
friend T2* New(Args&&... args);
|
83
83
|
|
84
|
+
// So Delete() can call our private dtor.
|
85
|
+
template <typename T2>
|
86
|
+
friend void Delete(T2*);
|
87
|
+
|
84
88
|
SliceHashTable(size_t num_entries, Entry* entries, ValueCmp value_cmp);
|
85
89
|
virtual ~SliceHashTable();
|
86
90
|
|
@@ -65,6 +65,10 @@ class SliceWeakHashTable : public RefCounted<SliceWeakHashTable<T, Size>> {
|
|
65
65
|
template <typename T2, typename... Args>
|
66
66
|
friend T2* New(Args&&... args);
|
67
67
|
|
68
|
+
// So Delete() can call our private dtor.
|
69
|
+
template <typename T2>
|
70
|
+
friend void Delete(T2*);
|
71
|
+
|
68
72
|
SliceWeakHashTable() = default;
|
69
73
|
~SliceWeakHashTable() = default;
|
70
74
|
|
@@ -34,6 +34,7 @@
|
|
34
34
|
#include "src/core/lib/channel/channel_stack.h"
|
35
35
|
#include "src/core/lib/compression/algorithm_metadata.h"
|
36
36
|
#include "src/core/lib/debug/stats.h"
|
37
|
+
#include "src/core/lib/gpr/alloc.h"
|
37
38
|
#include "src/core/lib/gpr/arena.h"
|
38
39
|
#include "src/core/lib/gpr/string.h"
|
39
40
|
#include "src/core/lib/gpr/useful.h"
|
@@ -67,6 +68,9 @@
|
|
67
68
|
|
68
69
|
#define MAX_SEND_EXTRA_METADATA_COUNT 3
|
69
70
|
|
71
|
+
// Used to create arena for the first call.
|
72
|
+
#define ESTIMATED_MDELEM_COUNT 16
|
73
|
+
|
70
74
|
/* Status data for a request can come from several sources; this
|
71
75
|
enumerates them all, and acts as a priority sorting for which
|
72
76
|
status to return to the application - earlier entries override
|
@@ -230,6 +234,7 @@ struct grpc_call {
|
|
230
234
|
grpc_closure receiving_slice_ready;
|
231
235
|
grpc_closure receiving_stream_ready;
|
232
236
|
grpc_closure receiving_initial_metadata_ready;
|
237
|
+
grpc_closure receiving_trailing_metadata_ready;
|
233
238
|
uint32_t test_only_last_message_flags;
|
234
239
|
|
235
240
|
grpc_closure release_call;
|
@@ -267,8 +272,13 @@ struct grpc_call {
|
|
267
272
|
grpc_core::TraceFlag grpc_call_error_trace(false, "call_error");
|
268
273
|
grpc_core::TraceFlag grpc_compression_trace(false, "compression");
|
269
274
|
|
270
|
-
#define CALL_STACK_FROM_CALL(call)
|
271
|
-
|
275
|
+
#define CALL_STACK_FROM_CALL(call) \
|
276
|
+
(grpc_call_stack*)((char*)(call) + \
|
277
|
+
GPR_ROUND_UP_TO_ALIGNMENT_SIZE(sizeof(grpc_call)))
|
278
|
+
#define CALL_FROM_CALL_STACK(call_stack) \
|
279
|
+
(grpc_call*)(((char*)(call_stack)) - \
|
280
|
+
GPR_ROUND_UP_TO_ALIGNMENT_SIZE(sizeof(grpc_call)))
|
281
|
+
|
272
282
|
#define CALL_ELEM_FROM_CALL(call, idx) \
|
273
283
|
grpc_call_stack_element(CALL_STACK_FROM_CALL(call), idx)
|
274
284
|
#define CALL_FROM_TOP_ELEM(top_elem) \
|
@@ -323,6 +333,11 @@ static parent_call* get_parent_call(grpc_call* call) {
|
|
323
333
|
return (parent_call*)gpr_atm_acq_load(&call->parent_call_atm);
|
324
334
|
}
|
325
335
|
|
336
|
+
size_t grpc_call_get_initial_size_estimate() {
|
337
|
+
return sizeof(grpc_call) + sizeof(batch_control) * MAX_CONCURRENT_BATCHES +
|
338
|
+
sizeof(grpc_linked_mdelem) * ESTIMATED_MDELEM_COUNT;
|
339
|
+
}
|
340
|
+
|
326
341
|
grpc_error* grpc_call_create(const grpc_call_create_args* args,
|
327
342
|
grpc_call** out_call) {
|
328
343
|
GPR_TIMER_SCOPE("grpc_call_create", 0);
|
@@ -334,8 +349,9 @@ grpc_error* grpc_call_create(const grpc_call_create_args* args,
|
|
334
349
|
size_t initial_size = grpc_channel_get_call_size_estimate(args->channel);
|
335
350
|
GRPC_STATS_INC_CALL_INITIAL_SIZE(initial_size);
|
336
351
|
gpr_arena* arena = gpr_arena_create(initial_size);
|
337
|
-
call = static_cast<grpc_call*>(
|
338
|
-
arena, sizeof(grpc_call) +
|
352
|
+
call = static_cast<grpc_call*>(
|
353
|
+
gpr_arena_alloc(arena, GPR_ROUND_UP_TO_ALIGNMENT_SIZE(sizeof(grpc_call)) +
|
354
|
+
channel_stack->call_stack_size));
|
339
355
|
gpr_ref_init(&call->ext_ref, 1);
|
340
356
|
call->arena = arena;
|
341
357
|
grpc_call_combiner_init(&call->call_combiner);
|
@@ -470,6 +486,12 @@ grpc_error* grpc_call_create(const grpc_call_create_args* args,
|
|
470
486
|
&call->pollent);
|
471
487
|
}
|
472
488
|
|
489
|
+
grpc_core::channelz::ChannelNode* channelz_channel =
|
490
|
+
grpc_channel_get_channelz_node(call->channel);
|
491
|
+
if (channelz_channel != nullptr) {
|
492
|
+
channelz_channel->RecordCallStarted();
|
493
|
+
}
|
494
|
+
|
473
495
|
grpc_slice_unref_internal(path);
|
474
496
|
|
475
497
|
return error;
|
@@ -507,13 +529,12 @@ void grpc_call_internal_unref(grpc_call* c REF_ARG) {
|
|
507
529
|
static void release_call(void* call, grpc_error* error) {
|
508
530
|
grpc_call* c = static_cast<grpc_call*>(call);
|
509
531
|
grpc_channel* channel = c->channel;
|
532
|
+
gpr_free(static_cast<void*>(const_cast<char*>(c->final_info.error_string)));
|
510
533
|
grpc_call_combiner_destroy(&c->call_combiner);
|
511
|
-
gpr_free((char*)c->peer_string);
|
512
534
|
grpc_channel_update_call_size_estimate(channel, gpr_arena_destroy(c->arena));
|
513
535
|
GRPC_CHANNEL_INTERNAL_UNREF(channel, "call");
|
514
536
|
}
|
515
537
|
|
516
|
-
static void set_status_value_directly(grpc_status_code status, void* dest);
|
517
538
|
static void destroy_call(void* call, grpc_error* error) {
|
518
539
|
GPR_TIMER_SCOPE("destroy_call", 0);
|
519
540
|
size_t i;
|
@@ -541,7 +562,7 @@ static void destroy_call(void* call, grpc_error* error) {
|
|
541
562
|
}
|
542
563
|
|
543
564
|
get_final_status(c, set_status_value_directly, &c->final_info.final_status,
|
544
|
-
nullptr, c->final_info.error_string);
|
565
|
+
nullptr, &(c->final_info.error_string));
|
545
566
|
c->final_info.stats.latency =
|
546
567
|
gpr_time_sub(gpr_now(GPR_CLOCK_MONOTONIC), c->start_time);
|
547
568
|
|
@@ -592,8 +613,11 @@ void grpc_call_unref(grpc_call* c) {
|
|
592
613
|
// Unset the call combiner cancellation closure. This has the
|
593
614
|
// effect of scheduling the previously set cancellation closure, if
|
594
615
|
// any, so that it can release any internal references it may be
|
595
|
-
// holding to the call stack.
|
616
|
+
// holding to the call stack. Also flush the closures on exec_ctx so that
|
617
|
+
// filters that schedule cancel notification closures on exec_ctx do not
|
618
|
+
// need to take a ref of the call stack to guarantee closure liveness.
|
596
619
|
grpc_call_combiner_set_notify_on_cancel(&c->call_combiner, nullptr);
|
620
|
+
grpc_core::ExecCtx::Get()->Flush();
|
597
621
|
}
|
598
622
|
GRPC_CALL_INTERNAL_UNREF(c, "destroy");
|
599
623
|
}
|
@@ -610,7 +634,7 @@ grpc_call_error grpc_call_cancel(grpc_call* call, void* reserved) {
|
|
610
634
|
// This is called via the call combiner to start sending a batch down
|
611
635
|
// the filter stack.
|
612
636
|
static void execute_batch_in_call_combiner(void* arg, grpc_error* ignored) {
|
613
|
-
GPR_TIMER_SCOPE("
|
637
|
+
GPR_TIMER_SCOPE("execute_batch_in_call_combiner", 0);
|
614
638
|
grpc_transport_stream_op_batch* batch =
|
615
639
|
static_cast<grpc_transport_stream_op_batch*>(arg);
|
616
640
|
grpc_call* call = static_cast<grpc_call*>(batch->handler_private.extra_arg);
|
@@ -747,10 +771,10 @@ static void get_final_status(
|
|
747
771
|
status[i] = unpack_received_status(gpr_atm_acq_load(&call->status[i]));
|
748
772
|
}
|
749
773
|
if (grpc_call_error_trace.enabled()) {
|
750
|
-
gpr_log(
|
774
|
+
gpr_log(GPR_INFO, "get_final_status %s", call->is_client ? "CLI" : "SVR");
|
751
775
|
for (i = 0; i < STATUS_SOURCE_COUNT; i++) {
|
752
776
|
if (status[i].is_set) {
|
753
|
-
gpr_log(
|
777
|
+
gpr_log(GPR_INFO, " %d: %s", i, grpc_error_string(status[i].error));
|
754
778
|
}
|
755
779
|
}
|
756
780
|
}
|
@@ -878,8 +902,8 @@ static void set_encodings_accepted_by_peer(grpc_call* call, grpc_mdelem mdel,
|
|
878
902
|
} else {
|
879
903
|
char* accept_encoding_entry_str =
|
880
904
|
grpc_slice_to_c_string(accept_encoding_entry_slice);
|
881
|
-
gpr_log(
|
882
|
-
"
|
905
|
+
gpr_log(GPR_DEBUG,
|
906
|
+
"Unknown entry in accept encoding metadata: '%s'. Ignoring.",
|
883
907
|
accept_encoding_entry_str);
|
884
908
|
gpr_free(accept_encoding_entry_str);
|
885
909
|
}
|
@@ -1069,13 +1093,12 @@ static void recv_trailing_filter(void* args, grpc_metadata_batch* b) {
|
|
1069
1093
|
if (b->idx.named.grpc_status != nullptr) {
|
1070
1094
|
grpc_status_code status_code =
|
1071
1095
|
grpc_get_status_code_from_metadata(b->idx.named.grpc_status->md);
|
1072
|
-
grpc_error* error =
|
1073
|
-
|
1074
|
-
|
1075
|
-
|
1076
|
-
|
1077
|
-
|
1078
|
-
static_cast<intptr_t>(status_code));
|
1096
|
+
grpc_error* error = GRPC_ERROR_NONE;
|
1097
|
+
if (status_code != GRPC_STATUS_OK) {
|
1098
|
+
error = grpc_error_set_int(
|
1099
|
+
GRPC_ERROR_CREATE_FROM_STATIC_STRING("Error received from peer"),
|
1100
|
+
GRPC_ERROR_INT_GRPC_STATUS, static_cast<intptr_t>(status_code));
|
1101
|
+
}
|
1079
1102
|
if (b->idx.named.grpc_message != nullptr) {
|
1080
1103
|
error = grpc_error_set_str(
|
1081
1104
|
error, GRPC_ERROR_STR_GRPC_MESSAGE,
|
@@ -1091,6 +1114,8 @@ static void recv_trailing_filter(void* args, grpc_metadata_batch* b) {
|
|
1091
1114
|
publish_app_metadata(call, b, true);
|
1092
1115
|
}
|
1093
1116
|
|
1117
|
+
gpr_arena* grpc_call_get_arena(grpc_call* call) { return call->arena; }
|
1118
|
+
|
1094
1119
|
grpc_call_stack* grpc_call_get_call_stack(grpc_call* call) {
|
1095
1120
|
return CALL_STACK_FROM_CALL(call);
|
1096
1121
|
}
|
@@ -1124,7 +1149,7 @@ static bool are_initial_metadata_flags_valid(uint32_t flags, bool is_client) {
|
|
1124
1149
|
return !(flags & invalid_positions);
|
1125
1150
|
}
|
1126
1151
|
|
1127
|
-
static
|
1152
|
+
static size_t batch_slot_for_op(grpc_op_type type) {
|
1128
1153
|
switch (type) {
|
1129
1154
|
case GRPC_OP_SEND_INITIAL_METADATA:
|
1130
1155
|
return 0;
|
@@ -1144,20 +1169,23 @@ static int batch_slot_for_op(grpc_op_type type) {
|
|
1144
1169
|
GPR_UNREACHABLE_CODE(return 123456789);
|
1145
1170
|
}
|
1146
1171
|
|
1147
|
-
static batch_control*
|
1148
|
-
|
1149
|
-
|
1150
|
-
|
1151
|
-
batch_control** pslot = &call->active_batches[
|
1152
|
-
|
1153
|
-
|
1172
|
+
static batch_control* reuse_or_allocate_batch_control(grpc_call* call,
|
1173
|
+
const grpc_op* ops,
|
1174
|
+
size_t num_ops) {
|
1175
|
+
size_t slot_idx = batch_slot_for_op(ops[0].op);
|
1176
|
+
batch_control** pslot = &call->active_batches[slot_idx];
|
1177
|
+
batch_control* bctl;
|
1178
|
+
if (*pslot != nullptr) {
|
1179
|
+
bctl = *pslot;
|
1180
|
+
if (bctl->call != nullptr) {
|
1181
|
+
return nullptr;
|
1182
|
+
}
|
1183
|
+
memset(bctl, 0, sizeof(*bctl));
|
1184
|
+
} else {
|
1185
|
+
bctl = static_cast<batch_control*>(
|
1154
1186
|
gpr_arena_alloc(call->arena, sizeof(batch_control)));
|
1187
|
+
*pslot = bctl;
|
1155
1188
|
}
|
1156
|
-
batch_control* bctl = *pslot;
|
1157
|
-
if (bctl->call != nullptr) {
|
1158
|
-
return nullptr;
|
1159
|
-
}
|
1160
|
-
memset(bctl, 0, sizeof(*bctl));
|
1161
1189
|
bctl->call = call;
|
1162
1190
|
bctl->op.payload = &call->stream_op_payload;
|
1163
1191
|
return bctl;
|
@@ -1199,7 +1227,6 @@ static void post_batch_completion(batch_control* bctl) {
|
|
1199
1227
|
|
1200
1228
|
if (bctl->op.send_initial_metadata) {
|
1201
1229
|
grpc_metadata_batch_destroy(
|
1202
|
-
|
1203
1230
|
&call->metadata_batch[0 /* is_receiving */][0 /* is_trailing */]);
|
1204
1231
|
}
|
1205
1232
|
if (bctl->op.send_message) {
|
@@ -1207,14 +1234,9 @@ static void post_batch_completion(batch_control* bctl) {
|
|
1207
1234
|
}
|
1208
1235
|
if (bctl->op.send_trailing_metadata) {
|
1209
1236
|
grpc_metadata_batch_destroy(
|
1210
|
-
|
1211
1237
|
&call->metadata_batch[0 /* is_receiving */][1 /* is_trailing */]);
|
1212
1238
|
}
|
1213
1239
|
if (bctl->op.recv_trailing_metadata) {
|
1214
|
-
grpc_metadata_batch* md =
|
1215
|
-
&call->metadata_batch[1 /* is_receiving */][1 /* is_trailing */];
|
1216
|
-
recv_trailing_filter(call, md);
|
1217
|
-
|
1218
1240
|
/* propagate cancellation to any interested children */
|
1219
1241
|
gpr_atm_rel_store(&call->received_final_op_atm, 1);
|
1220
1242
|
parent_call* pc = get_parent_call(call);
|
@@ -1236,7 +1258,6 @@ static void post_batch_completion(batch_control* bctl) {
|
|
1236
1258
|
}
|
1237
1259
|
gpr_mu_unlock(&pc->child_list_mu);
|
1238
1260
|
}
|
1239
|
-
|
1240
1261
|
if (call->is_client) {
|
1241
1262
|
get_final_status(call, set_status_value_directly,
|
1242
1263
|
call->final_op.client.status,
|
@@ -1246,7 +1267,15 @@ static void post_batch_completion(batch_control* bctl) {
|
|
1246
1267
|
get_final_status(call, set_cancelled_value,
|
1247
1268
|
call->final_op.server.cancelled, nullptr, nullptr);
|
1248
1269
|
}
|
1249
|
-
|
1270
|
+
grpc_core::channelz::ChannelNode* channelz_channel =
|
1271
|
+
grpc_channel_get_channelz_node(call->channel);
|
1272
|
+
if (channelz_channel != nullptr) {
|
1273
|
+
if (*call->final_op.client.status != GRPC_STATUS_OK) {
|
1274
|
+
channelz_channel->RecordCallFailed();
|
1275
|
+
} else {
|
1276
|
+
channelz_channel->RecordCallSucceeded();
|
1277
|
+
}
|
1278
|
+
}
|
1250
1279
|
GRPC_ERROR_UNREF(error);
|
1251
1280
|
error = GRPC_ERROR_NONE;
|
1252
1281
|
}
|
@@ -1259,8 +1288,12 @@ static void post_batch_completion(batch_control* bctl) {
|
|
1259
1288
|
if (bctl->completion_data.notify_tag.is_closure) {
|
1260
1289
|
/* unrefs bctl->error */
|
1261
1290
|
bctl->call = nullptr;
|
1262
|
-
|
1263
|
-
|
1291
|
+
/* This closure may be meant to be run within some combiner. Since we aren't
|
1292
|
+
* running in any combiner here, we need to use GRPC_CLOSURE_SCHED instead
|
1293
|
+
* of GRPC_CLOSURE_RUN.
|
1294
|
+
*/
|
1295
|
+
GRPC_CLOSURE_SCHED((grpc_closure*)bctl->completion_data.notify_tag.tag,
|
1296
|
+
error);
|
1264
1297
|
GRPC_CALL_INTERNAL_UNREF(call, "completion");
|
1265
1298
|
} else {
|
1266
1299
|
/* unrefs bctl->error */
|
@@ -1524,6 +1557,17 @@ static void receiving_initial_metadata_ready(void* bctlp, grpc_error* error) {
|
|
1524
1557
|
finish_batch_step(bctl);
|
1525
1558
|
}
|
1526
1559
|
|
1560
|
+
static void receiving_trailing_metadata_ready(void* bctlp, grpc_error* error) {
|
1561
|
+
batch_control* bctl = static_cast<batch_control*>(bctlp);
|
1562
|
+
grpc_call* call = bctl->call;
|
1563
|
+
GRPC_CALL_COMBINER_STOP(&call->call_combiner, "recv_trailing_metadata_ready");
|
1564
|
+
add_batch_error(bctl, GRPC_ERROR_REF(error), false);
|
1565
|
+
grpc_metadata_batch* md =
|
1566
|
+
&call->metadata_batch[1 /* is_receiving */][1 /* is_trailing */];
|
1567
|
+
recv_trailing_filter(call, md);
|
1568
|
+
finish_batch_step(bctl);
|
1569
|
+
}
|
1570
|
+
|
1527
1571
|
static void finish_batch(void* bctlp, grpc_error* error) {
|
1528
1572
|
batch_control* bctl = static_cast<batch_control*>(bctlp);
|
1529
1573
|
grpc_call* call = bctl->call;
|
@@ -1539,12 +1583,13 @@ static void free_no_op_completion(void* p, grpc_cq_completion* completion) {
|
|
1539
1583
|
static grpc_call_error call_start_batch(grpc_call* call, const grpc_op* ops,
|
1540
1584
|
size_t nops, void* notify_tag,
|
1541
1585
|
int is_notify_tag_closure) {
|
1542
|
-
GPR_TIMER_SCOPE("
|
1586
|
+
GPR_TIMER_SCOPE("call_start_batch", 0);
|
1543
1587
|
|
1544
1588
|
size_t i;
|
1545
1589
|
const grpc_op* op;
|
1546
1590
|
batch_control* bctl;
|
1547
|
-
|
1591
|
+
bool has_send_ops = false;
|
1592
|
+
int num_recv_ops = 0;
|
1548
1593
|
grpc_call_error error = GRPC_CALL_OK;
|
1549
1594
|
grpc_transport_stream_op_batch* stream_op;
|
1550
1595
|
grpc_transport_stream_op_batch_payload* stream_op_payload;
|
@@ -1565,7 +1610,7 @@ static grpc_call_error call_start_batch(grpc_call* call, const grpc_op* ops,
|
|
1565
1610
|
goto done;
|
1566
1611
|
}
|
1567
1612
|
|
1568
|
-
bctl =
|
1613
|
+
bctl = reuse_or_allocate_batch_control(call, ops, nops);
|
1569
1614
|
if (bctl == nullptr) {
|
1570
1615
|
return GRPC_CALL_ERROR_TOO_MANY_OPERATIONS;
|
1571
1616
|
}
|
@@ -1650,6 +1695,7 @@ static grpc_call_error call_start_batch(grpc_call* call, const grpc_op* ops,
|
|
1650
1695
|
stream_op_payload->send_initial_metadata.peer_string =
|
1651
1696
|
&call->peer_string;
|
1652
1697
|
}
|
1698
|
+
has_send_ops = true;
|
1653
1699
|
break;
|
1654
1700
|
}
|
1655
1701
|
case GRPC_OP_SEND_MESSAGE: {
|
@@ -1679,6 +1725,7 @@ static grpc_call_error call_start_batch(grpc_call* call, const grpc_op* ops,
|
|
1679
1725
|
&op->data.send_message.send_message->data.raw.slice_buffer, flags);
|
1680
1726
|
stream_op_payload->send_message.send_message.reset(
|
1681
1727
|
call->sending_stream.get());
|
1728
|
+
has_send_ops = true;
|
1682
1729
|
break;
|
1683
1730
|
}
|
1684
1731
|
case GRPC_OP_SEND_CLOSE_FROM_CLIENT: {
|
@@ -1699,6 +1746,7 @@ static grpc_call_error call_start_batch(grpc_call* call, const grpc_op* ops,
|
|
1699
1746
|
call->sent_final_op = true;
|
1700
1747
|
stream_op_payload->send_trailing_metadata.send_trailing_metadata =
|
1701
1748
|
&call->metadata_batch[0 /* is_receiving */][1 /* is_trailing */];
|
1749
|
+
has_send_ops = true;
|
1702
1750
|
break;
|
1703
1751
|
}
|
1704
1752
|
case GRPC_OP_SEND_STATUS_FROM_SERVER: {
|
@@ -1763,6 +1811,7 @@ static grpc_call_error call_start_batch(grpc_call* call, const grpc_op* ops,
|
|
1763
1811
|
}
|
1764
1812
|
stream_op_payload->send_trailing_metadata.send_trailing_metadata =
|
1765
1813
|
&call->metadata_batch[0 /* is_receiving */][1 /* is_trailing */];
|
1814
|
+
has_send_ops = true;
|
1766
1815
|
break;
|
1767
1816
|
}
|
1768
1817
|
case GRPC_OP_RECV_INITIAL_METADATA: {
|
@@ -1790,7 +1839,7 @@ static grpc_call_error call_start_batch(grpc_call* call, const grpc_op* ops,
|
|
1790
1839
|
stream_op_payload->recv_initial_metadata.peer_string =
|
1791
1840
|
&call->peer_string;
|
1792
1841
|
}
|
1793
|
-
|
1842
|
+
++num_recv_ops;
|
1794
1843
|
break;
|
1795
1844
|
}
|
1796
1845
|
case GRPC_OP_RECV_MESSAGE: {
|
@@ -1812,7 +1861,7 @@ static grpc_call_error call_start_batch(grpc_call* call, const grpc_op* ops,
|
|
1812
1861
|
grpc_schedule_on_exec_ctx);
|
1813
1862
|
stream_op_payload->recv_message.recv_message_ready =
|
1814
1863
|
&call->receiving_stream_ready;
|
1815
|
-
|
1864
|
+
++num_recv_ops;
|
1816
1865
|
break;
|
1817
1866
|
}
|
1818
1867
|
case GRPC_OP_RECV_STATUS_ON_CLIENT: {
|
@@ -1838,11 +1887,16 @@ static grpc_call_error call_start_batch(grpc_call* call, const grpc_op* ops,
|
|
1838
1887
|
call->final_op.client.error_string =
|
1839
1888
|
op->data.recv_status_on_client.error_string;
|
1840
1889
|
stream_op->recv_trailing_metadata = true;
|
1841
|
-
stream_op->collect_stats = true;
|
1842
1890
|
stream_op_payload->recv_trailing_metadata.recv_trailing_metadata =
|
1843
1891
|
&call->metadata_batch[1 /* is_receiving */][1 /* is_trailing */];
|
1844
|
-
stream_op_payload->
|
1892
|
+
stream_op_payload->recv_trailing_metadata.collect_stats =
|
1845
1893
|
&call->final_info.stats.transport_stream_stats;
|
1894
|
+
GRPC_CLOSURE_INIT(&call->receiving_trailing_metadata_ready,
|
1895
|
+
receiving_trailing_metadata_ready, bctl,
|
1896
|
+
grpc_schedule_on_exec_ctx);
|
1897
|
+
stream_op_payload->recv_trailing_metadata.recv_trailing_metadata_ready =
|
1898
|
+
&call->receiving_trailing_metadata_ready;
|
1899
|
+
++num_recv_ops;
|
1846
1900
|
break;
|
1847
1901
|
}
|
1848
1902
|
case GRPC_OP_RECV_CLOSE_ON_SERVER: {
|
@@ -1863,11 +1917,16 @@ static grpc_call_error call_start_batch(grpc_call* call, const grpc_op* ops,
|
|
1863
1917
|
call->final_op.server.cancelled =
|
1864
1918
|
op->data.recv_close_on_server.cancelled;
|
1865
1919
|
stream_op->recv_trailing_metadata = true;
|
1866
|
-
stream_op->collect_stats = true;
|
1867
1920
|
stream_op_payload->recv_trailing_metadata.recv_trailing_metadata =
|
1868
1921
|
&call->metadata_batch[1 /* is_receiving */][1 /* is_trailing */];
|
1869
|
-
stream_op_payload->
|
1922
|
+
stream_op_payload->recv_trailing_metadata.collect_stats =
|
1870
1923
|
&call->final_info.stats.transport_stream_stats;
|
1924
|
+
GRPC_CLOSURE_INIT(&call->receiving_trailing_metadata_ready,
|
1925
|
+
receiving_trailing_metadata_ready, bctl,
|
1926
|
+
grpc_schedule_on_exec_ctx);
|
1927
|
+
stream_op_payload->recv_trailing_metadata.recv_trailing_metadata_ready =
|
1928
|
+
&call->receiving_trailing_metadata_ready;
|
1929
|
+
++num_recv_ops;
|
1871
1930
|
break;
|
1872
1931
|
}
|
1873
1932
|
}
|
@@ -1877,20 +1936,22 @@ static grpc_call_error call_start_batch(grpc_call* call, const grpc_op* ops,
|
|
1877
1936
|
if (!is_notify_tag_closure) {
|
1878
1937
|
GPR_ASSERT(grpc_cq_begin_op(call->cq, notify_tag));
|
1879
1938
|
}
|
1880
|
-
gpr_ref_init(&bctl->steps_to_complete,
|
1939
|
+
gpr_ref_init(&bctl->steps_to_complete, (has_send_ops ? 1 : 0) + num_recv_ops);
|
1881
1940
|
|
1882
|
-
|
1883
|
-
|
1884
|
-
|
1885
|
-
|
1941
|
+
if (has_send_ops) {
|
1942
|
+
GRPC_CLOSURE_INIT(&bctl->finish_batch, finish_batch, bctl,
|
1943
|
+
grpc_schedule_on_exec_ctx);
|
1944
|
+
stream_op->on_complete = &bctl->finish_batch;
|
1945
|
+
}
|
1886
1946
|
|
1947
|
+
gpr_atm_rel_store(&call->any_ops_sent_atm, 1);
|
1887
1948
|
execute_batch(call, stream_op, &bctl->start_batch);
|
1888
1949
|
|
1889
1950
|
done:
|
1890
1951
|
return error;
|
1891
1952
|
|
1892
1953
|
done_with_error:
|
1893
|
-
/* reverse any mutations that
|
1954
|
+
/* reverse any mutations that occurred */
|
1894
1955
|
if (stream_op->send_initial_metadata) {
|
1895
1956
|
call->sent_initial_metadata = false;
|
1896
1957
|
grpc_metadata_batch_clear(&call->metadata_batch[0][0]);
|