grpc 1.30.2
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of grpc might be problematic. Click here for more details.
- checksums.yaml +7 -0
- data/.yardopts +1 -0
- data/Makefile +20074 -0
- data/etc/roots.pem +4644 -0
- data/include/grpc/byte_buffer.h +27 -0
- data/include/grpc/byte_buffer_reader.h +26 -0
- data/include/grpc/census.h +40 -0
- data/include/grpc/compression.h +75 -0
- data/include/grpc/fork.h +26 -0
- data/include/grpc/grpc.h +540 -0
- data/include/grpc/grpc_cronet.h +38 -0
- data/include/grpc/grpc_posix.h +59 -0
- data/include/grpc/grpc_security.h +1019 -0
- data/include/grpc/grpc_security_constants.h +146 -0
- data/include/grpc/impl/codegen/atm.h +95 -0
- data/include/grpc/impl/codegen/atm_gcc_atomic.h +91 -0
- data/include/grpc/impl/codegen/atm_gcc_sync.h +85 -0
- data/include/grpc/impl/codegen/atm_windows.h +128 -0
- data/include/grpc/impl/codegen/byte_buffer.h +101 -0
- data/include/grpc/impl/codegen/byte_buffer_reader.h +42 -0
- data/include/grpc/impl/codegen/compression_types.h +108 -0
- data/include/grpc/impl/codegen/connectivity_state.h +44 -0
- data/include/grpc/impl/codegen/fork.h +48 -0
- data/include/grpc/impl/codegen/gpr_slice.h +69 -0
- data/include/grpc/impl/codegen/gpr_types.h +59 -0
- data/include/grpc/impl/codegen/grpc_types.h +785 -0
- data/include/grpc/impl/codegen/log.h +112 -0
- data/include/grpc/impl/codegen/port_platform.h +720 -0
- data/include/grpc/impl/codegen/propagation_bits.h +52 -0
- data/include/grpc/impl/codegen/slice.h +127 -0
- data/include/grpc/impl/codegen/status.h +154 -0
- data/include/grpc/impl/codegen/sync.h +65 -0
- data/include/grpc/impl/codegen/sync_abseil.h +36 -0
- data/include/grpc/impl/codegen/sync_custom.h +38 -0
- data/include/grpc/impl/codegen/sync_generic.h +48 -0
- data/include/grpc/impl/codegen/sync_posix.h +52 -0
- data/include/grpc/impl/codegen/sync_windows.h +36 -0
- data/include/grpc/load_reporting.h +48 -0
- data/include/grpc/module.modulemap +64 -0
- data/include/grpc/slice.h +172 -0
- data/include/grpc/slice_buffer.h +84 -0
- data/include/grpc/status.h +26 -0
- data/include/grpc/support/alloc.h +52 -0
- data/include/grpc/support/atm.h +26 -0
- data/include/grpc/support/atm_gcc_atomic.h +26 -0
- data/include/grpc/support/atm_gcc_sync.h +26 -0
- data/include/grpc/support/atm_windows.h +26 -0
- data/include/grpc/support/cpu.h +44 -0
- data/include/grpc/support/log.h +26 -0
- data/include/grpc/support/log_windows.h +38 -0
- data/include/grpc/support/port_platform.h +24 -0
- data/include/grpc/support/string_util.h +51 -0
- data/include/grpc/support/sync.h +282 -0
- data/include/grpc/support/sync_abseil.h +26 -0
- data/include/grpc/support/sync_custom.h +26 -0
- data/include/grpc/support/sync_generic.h +26 -0
- data/include/grpc/support/sync_posix.h +26 -0
- data/include/grpc/support/sync_windows.h +26 -0
- data/include/grpc/support/thd_id.h +44 -0
- data/include/grpc/support/time.h +92 -0
- data/include/grpc/support/workaround_list.h +31 -0
- data/src/core/ext/filters/census/grpc_context.cc +38 -0
- data/src/core/ext/filters/client_channel/backend_metric.cc +81 -0
- data/src/core/ext/filters/client_channel/backend_metric.h +36 -0
- data/src/core/ext/filters/client_channel/backup_poller.cc +181 -0
- data/src/core/ext/filters/client_channel/backup_poller.h +41 -0
- data/src/core/ext/filters/client_channel/channel_connectivity.cc +264 -0
- data/src/core/ext/filters/client_channel/client_channel.cc +4059 -0
- data/src/core/ext/filters/client_channel/client_channel.h +82 -0
- data/src/core/ext/filters/client_channel/client_channel_channelz.cc +95 -0
- data/src/core/ext/filters/client_channel/client_channel_channelz.h +78 -0
- data/src/core/ext/filters/client_channel/client_channel_factory.cc +55 -0
- data/src/core/ext/filters/client_channel/client_channel_factory.h +47 -0
- data/src/core/ext/filters/client_channel/client_channel_plugin.cc +70 -0
- data/src/core/ext/filters/client_channel/connector.h +79 -0
- data/src/core/ext/filters/client_channel/global_subchannel_pool.cc +179 -0
- data/src/core/ext/filters/client_channel/global_subchannel_pool.h +68 -0
- data/src/core/ext/filters/client_channel/health/health_check_client.cc +606 -0
- data/src/core/ext/filters/client_channel/health/health_check_client.h +175 -0
- data/src/core/ext/filters/client_channel/http_connect_handshaker.cc +389 -0
- data/src/core/ext/filters/client_channel/http_connect_handshaker.h +34 -0
- data/src/core/ext/filters/client_channel/http_proxy.cc +216 -0
- data/src/core/ext/filters/client_channel/http_proxy.h +28 -0
- data/src/core/ext/filters/client_channel/lb_policy.cc +138 -0
- data/src/core/ext/filters/client_channel/lb_policy.h +421 -0
- data/src/core/ext/filters/client_channel/lb_policy/address_filtering.cc +83 -0
- data/src/core/ext/filters/client_channel/lb_policy/address_filtering.h +99 -0
- data/src/core/ext/filters/client_channel/lb_policy/child_policy_handler.cc +297 -0
- data/src/core/ext/filters/client_channel/lb_policy/child_policy_handler.h +83 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.cc +157 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.h +29 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +1754 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.h +43 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.cc +89 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.h +40 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel.h +45 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel_secure.cc +121 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.cc +91 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.h +75 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc +193 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h +74 -0
- data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +509 -0
- data/src/core/ext/filters/client_channel/lb_policy/priority/priority.cc +871 -0
- data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +504 -0
- data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +448 -0
- data/src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc +734 -0
- data/src/core/ext/filters/client_channel/lb_policy/xds/cds.cc +417 -0
- data/src/core/ext/filters/client_channel/lb_policy/xds/eds.cc +938 -0
- data/src/core/ext/filters/client_channel/lb_policy/xds/lrs.cc +528 -0
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds.h +32 -0
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_routing.cc +834 -0
- data/src/core/ext/filters/client_channel/lb_policy_factory.h +47 -0
- data/src/core/ext/filters/client_channel/lb_policy_registry.cc +182 -0
- data/src/core/ext/filters/client_channel/lb_policy_registry.h +65 -0
- data/src/core/ext/filters/client_channel/local_subchannel_pool.cc +96 -0
- data/src/core/ext/filters/client_channel/local_subchannel_pool.h +57 -0
- data/src/core/ext/filters/client_channel/parse_address.cc +238 -0
- data/src/core/ext/filters/client_channel/parse_address.h +53 -0
- data/src/core/ext/filters/client_channel/proxy_mapper.h +54 -0
- data/src/core/ext/filters/client_channel/proxy_mapper_registry.cc +89 -0
- data/src/core/ext/filters/client_channel/proxy_mapper_registry.h +50 -0
- data/src/core/ext/filters/client_channel/resolver.cc +85 -0
- data/src/core/ext/filters/client_channel/resolver.h +144 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +535 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.cc +484 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h +104 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_libuv.cc +177 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +107 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +897 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +819 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +97 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_fallback.cc +68 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_libuv.cc +38 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_posix.cc +29 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc +34 -0
- data/src/core/ext/filters/client_channel/resolver/dns/dns_resolver_selection.cc +28 -0
- data/src/core/ext/filters/client_channel/resolver/dns/dns_resolver_selection.h +29 -0
- data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +318 -0
- data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc +383 -0
- data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h +93 -0
- data/src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc +188 -0
- data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +184 -0
- data/src/core/ext/filters/client_channel/resolver_factory.h +73 -0
- data/src/core/ext/filters/client_channel/resolver_registry.cc +197 -0
- data/src/core/ext/filters/client_channel/resolver_registry.h +89 -0
- data/src/core/ext/filters/client_channel/resolver_result_parsing.cc +443 -0
- data/src/core/ext/filters/client_channel/resolver_result_parsing.h +127 -0
- data/src/core/ext/filters/client_channel/resolving_lb_policy.cc +348 -0
- data/src/core/ext/filters/client_channel/resolving_lb_policy.h +123 -0
- data/src/core/ext/filters/client_channel/retry_throttle.cc +191 -0
- data/src/core/ext/filters/client_channel/retry_throttle.h +77 -0
- data/src/core/ext/filters/client_channel/server_address.cc +48 -0
- data/src/core/ext/filters/client_channel/server_address.h +90 -0
- data/src/core/ext/filters/client_channel/service_config.cc +221 -0
- data/src/core/ext/filters/client_channel/service_config.h +123 -0
- data/src/core/ext/filters/client_channel/service_config_call_data.h +68 -0
- data/src/core/ext/filters/client_channel/service_config_parser.cc +87 -0
- data/src/core/ext/filters/client_channel/service_config_parser.h +89 -0
- data/src/core/ext/filters/client_channel/subchannel.cc +1127 -0
- data/src/core/ext/filters/client_channel/subchannel.h +427 -0
- data/src/core/ext/filters/client_channel/subchannel_interface.h +94 -0
- data/src/core/ext/filters/client_channel/subchannel_pool_interface.cc +97 -0
- data/src/core/ext/filters/client_channel/subchannel_pool_interface.h +91 -0
- data/src/core/ext/filters/client_channel/xds/xds_api.cc +1906 -0
- data/src/core/ext/filters/client_channel/xds/xds_api.h +280 -0
- data/src/core/ext/filters/client_channel/xds/xds_bootstrap.cc +342 -0
- data/src/core/ext/filters/client_channel/xds/xds_bootstrap.h +88 -0
- data/src/core/ext/filters/client_channel/xds/xds_channel.h +46 -0
- data/src/core/ext/filters/client_channel/xds/xds_channel_args.h +26 -0
- data/src/core/ext/filters/client_channel/xds/xds_channel_secure.cc +106 -0
- data/src/core/ext/filters/client_channel/xds/xds_client.cc +2367 -0
- data/src/core/ext/filters/client_channel/xds/xds_client.h +309 -0
- data/src/core/ext/filters/client_channel/xds/xds_client_stats.cc +115 -0
- data/src/core/ext/filters/client_channel/xds/xds_client_stats.h +211 -0
- data/src/core/ext/filters/client_idle/client_idle_filter.cc +440 -0
- data/src/core/ext/filters/deadline/deadline_filter.cc +386 -0
- data/src/core/ext/filters/deadline/deadline_filter.h +90 -0
- data/src/core/ext/filters/http/client/http_client_filter.cc +596 -0
- data/src/core/ext/filters/http/client/http_client_filter.h +31 -0
- data/src/core/ext/filters/http/client_authority_filter.cc +159 -0
- data/src/core/ext/filters/http/client_authority_filter.h +34 -0
- data/src/core/ext/filters/http/http_filters_plugin.cc +104 -0
- data/src/core/ext/filters/http/message_compress/message_compress_filter.cc +546 -0
- data/src/core/ext/filters/http/message_compress/message_compress_filter.h +53 -0
- data/src/core/ext/filters/http/message_compress/message_decompress_filter.cc +358 -0
- data/src/core/ext/filters/http/message_compress/message_decompress_filter.h +29 -0
- data/src/core/ext/filters/http/server/http_server_filter.cc +528 -0
- data/src/core/ext/filters/http/server/http_server_filter.h +29 -0
- data/src/core/ext/filters/max_age/max_age_filter.cc +556 -0
- data/src/core/ext/filters/max_age/max_age_filter.h +26 -0
- data/src/core/ext/filters/message_size/message_size_filter.cc +423 -0
- data/src/core/ext/filters/message_size/message_size_filter.h +59 -0
- data/src/core/ext/filters/workarounds/workaround_cronet_compression_filter.cc +210 -0
- data/src/core/ext/filters/workarounds/workaround_cronet_compression_filter.h +27 -0
- data/src/core/ext/filters/workarounds/workaround_utils.cc +53 -0
- data/src/core/ext/filters/workarounds/workaround_utils.h +39 -0
- data/src/core/ext/transport/chttp2/alpn/alpn.cc +44 -0
- data/src/core/ext/transport/chttp2/alpn/alpn.h +36 -0
- data/src/core/ext/transport/chttp2/client/authority.cc +42 -0
- data/src/core/ext/transport/chttp2/client/authority.h +36 -0
- data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +206 -0
- data/src/core/ext/transport/chttp2/client/chttp2_connector.h +58 -0
- data/src/core/ext/transport/chttp2/client/insecure/channel_create.cc +112 -0
- data/src/core/ext/transport/chttp2/client/insecure/channel_create_posix.cc +79 -0
- data/src/core/ext/transport/chttp2/client/secure/secure_channel_create.cc +225 -0
- data/src/core/ext/transport/chttp2/server/chttp2_server.cc +451 -0
- data/src/core/ext/transport/chttp2/server/chttp2_server.h +33 -0
- data/src/core/ext/transport/chttp2/server/insecure/server_chttp2.cc +45 -0
- data/src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.cc +75 -0
- data/src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.cc +86 -0
- data/src/core/ext/transport/chttp2/transport/bin_decoder.cc +250 -0
- data/src/core/ext/transport/chttp2/transport/bin_decoder.h +56 -0
- data/src/core/ext/transport/chttp2/transport/bin_encoder.cc +230 -0
- data/src/core/ext/transport/chttp2/transport/bin_encoder.h +42 -0
- data/src/core/ext/transport/chttp2/transport/chttp2_plugin.cc +37 -0
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +3346 -0
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +52 -0
- data/src/core/ext/transport/chttp2/transport/context_list.cc +69 -0
- data/src/core/ext/transport/chttp2/transport/context_list.h +53 -0
- data/src/core/ext/transport/chttp2/transport/flow_control.cc +408 -0
- data/src/core/ext/transport/chttp2/transport/flow_control.h +474 -0
- data/src/core/ext/transport/chttp2/transport/frame.h +47 -0
- data/src/core/ext/transport/chttp2/transport/frame_data.cc +307 -0
- data/src/core/ext/transport/chttp2/transport/frame_data.h +82 -0
- data/src/core/ext/transport/chttp2/transport/frame_goaway.cc +187 -0
- data/src/core/ext/transport/chttp2/transport/frame_goaway.h +62 -0
- data/src/core/ext/transport/chttp2/transport/frame_ping.cc +133 -0
- data/src/core/ext/transport/chttp2/transport/frame_ping.h +44 -0
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +122 -0
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.h +50 -0
- data/src/core/ext/transport/chttp2/transport/frame_settings.cc +242 -0
- data/src/core/ext/transport/chttp2/transport/frame_settings.h +60 -0
- data/src/core/ext/transport/chttp2/transport/frame_window_update.cc +123 -0
- data/src/core/ext/transport/chttp2/transport/frame_window_update.h +44 -0
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +900 -0
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +107 -0
- data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +1761 -0
- data/src/core/ext/transport/chttp2/transport/hpack_parser.h +117 -0
- data/src/core/ext/transport/chttp2/transport/hpack_table.cc +246 -0
- data/src/core/ext/transport/chttp2/transport/hpack_table.h +148 -0
- data/src/core/ext/transport/chttp2/transport/http2_settings.cc +62 -0
- data/src/core/ext/transport/chttp2/transport/http2_settings.h +61 -0
- data/src/core/ext/transport/chttp2/transport/huffsyms.cc +92 -0
- data/src/core/ext/transport/chttp2/transport/huffsyms.h +32 -0
- data/src/core/ext/transport/chttp2/transport/incoming_metadata.cc +66 -0
- data/src/core/ext/transport/chttp2/transport/incoming_metadata.h +58 -0
- data/src/core/ext/transport/chttp2/transport/internal.h +864 -0
- data/src/core/ext/transport/chttp2/transport/parsing.cc +803 -0
- data/src/core/ext/transport/chttp2/transport/stream_lists.cc +216 -0
- data/src/core/ext/transport/chttp2/transport/stream_map.cc +177 -0
- data/src/core/ext/transport/chttp2/transport/stream_map.h +67 -0
- data/src/core/ext/transport/chttp2/transport/varint.cc +56 -0
- data/src/core/ext/transport/chttp2/transport/varint.h +60 -0
- data/src/core/ext/transport/chttp2/transport/writing.cc +706 -0
- data/src/core/ext/transport/inproc/inproc_plugin.cc +28 -0
- data/src/core/ext/transport/inproc/inproc_transport.cc +1296 -0
- data/src/core/ext/transport/inproc/inproc_transport.h +35 -0
- data/src/core/ext/upb-generated/envoy/annotations/deprecation.upb.c +17 -0
- data/src/core/ext/upb-generated/envoy/annotations/deprecation.upb.h +30 -0
- data/src/core/ext/upb-generated/envoy/annotations/resource.upb.c +27 -0
- data/src/core/ext/upb-generated/envoy/annotations/resource.upb.h +54 -0
- data/src/core/ext/upb-generated/envoy/api/v2/auth/cert.upb.c +21 -0
- data/src/core/ext/upb-generated/envoy/api/v2/auth/cert.upb.h +35 -0
- data/src/core/ext/upb-generated/envoy/api/v2/auth/common.upb.c +114 -0
- data/src/core/ext/upb-generated/envoy/api/v2/auth/common.upb.h +418 -0
- data/src/core/ext/upb-generated/envoy/api/v2/auth/secret.upb.c +72 -0
- data/src/core/ext/upb-generated/envoy/api/v2/auth/secret.upb.h +197 -0
- data/src/core/ext/upb-generated/envoy/api/v2/auth/tls.upb.c +105 -0
- data/src/core/ext/upb-generated/envoy/api/v2/auth/tls.upb.h +378 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cds.upb.c +28 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cds.upb.h +53 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cluster.upb.c +403 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cluster.upb.h +1447 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/circuit_breaker.upb.c +74 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/circuit_breaker.upb.h +218 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/filter.upb.c +35 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/filter.upb.h +69 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/outlier_detection.upb.c +55 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/outlier_detection.upb.h +305 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/address.upb.c +112 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/address.upb.h +328 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/backoff.upb.c +35 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/backoff.upb.h +78 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/base.upb.c +313 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/base.upb.h +897 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/config_source.upb.c +96 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/config_source.upb.h +322 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/event_service_config.upb.c +34 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/event_service_config.upb.h +72 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/grpc_service.upb.c +197 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/grpc_service.upb.h +642 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/health_check.upb.c +172 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/health_check.upb.h +673 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/http_uri.upb.c +36 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/http_uri.upb.h +80 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/protocol.upb.c +152 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/protocol.upb.h +518 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/socket_option.upb.c +34 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/socket_option.upb.h +89 -0
- data/src/core/ext/upb-generated/envoy/api/v2/discovery.upb.c +129 -0
- data/src/core/ext/upb-generated/envoy/api/v2/discovery.upb.h +392 -0
- data/src/core/ext/upb-generated/envoy/api/v2/eds.upb.c +31 -0
- data/src/core/ext/upb-generated/envoy/api/v2/eds.upb.h +53 -0
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint.upb.c +92 -0
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint.upb.h +240 -0
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint.upb.c +18 -0
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint.upb.h +33 -0
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint_components.upb.c +91 -0
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint_components.upb.h +266 -0
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/load_report.upb.c +112 -0
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/load_report.upb.h +324 -0
- data/src/core/ext/upb-generated/envoy/api/v2/lds.upb.c +31 -0
- data/src/core/ext/upb-generated/envoy/api/v2/lds.upb.h +53 -0
- data/src/core/ext/upb-generated/envoy/api/v2/listener.upb.c +109 -0
- data/src/core/ext/upb-generated/envoy/api/v2/listener.upb.h +399 -0
- data/src/core/ext/upb-generated/envoy/api/v2/listener/listener.upb.c +18 -0
- data/src/core/ext/upb-generated/envoy/api/v2/listener/listener.upb.h +33 -0
- data/src/core/ext/upb-generated/envoy/api/v2/listener/listener_components.upb.c +145 -0
- data/src/core/ext/upb-generated/envoy/api/v2/listener/listener_components.upb.h +527 -0
- data/src/core/ext/upb-generated/envoy/api/v2/listener/udp_listener_config.upb.c +43 -0
- data/src/core/ext/upb-generated/envoy/api/v2/listener/udp_listener_config.upb.h +112 -0
- data/src/core/ext/upb-generated/envoy/api/v2/rds.upb.c +30 -0
- data/src/core/ext/upb-generated/envoy/api/v2/rds.upb.h +53 -0
- data/src/core/ext/upb-generated/envoy/api/v2/route.upb.c +63 -0
- data/src/core/ext/upb-generated/envoy/api/v2/route.upb.h +199 -0
- data/src/core/ext/upb-generated/envoy/api/v2/route/route.upb.c +18 -0
- data/src/core/ext/upb-generated/envoy/api/v2/route/route.upb.h +33 -0
- data/src/core/ext/upb-generated/envoy/api/v2/route/route_components.upb.c +815 -0
- data/src/core/ext/upb-generated/envoy/api/v2/route/route_components.upb.h +3032 -0
- data/src/core/ext/upb-generated/envoy/api/v2/scoped_route.upb.c +59 -0
- data/src/core/ext/upb-generated/envoy/api/v2/scoped_route.upb.h +134 -0
- data/src/core/ext/upb-generated/envoy/api/v2/srds.upb.c +28 -0
- data/src/core/ext/upb-generated/envoy/api/v2/srds.upb.h +53 -0
- data/src/core/ext/upb-generated/envoy/config/filter/accesslog/v2/accesslog.upb.c +228 -0
- data/src/core/ext/upb-generated/envoy/config/filter/accesslog/v2/accesslog.upb.h +725 -0
- data/src/core/ext/upb-generated/envoy/config/filter/network/http_connection_manager/v2/http_connection_manager.upb.c +316 -0
- data/src/core/ext/upb-generated/envoy/config/filter/network/http_connection_manager/v2/http_connection_manager.upb.h +1132 -0
- data/src/core/ext/upb-generated/envoy/config/listener/v2/api_listener.upb.c +33 -0
- data/src/core/ext/upb-generated/envoy/config/listener/v2/api_listener.upb.h +65 -0
- data/src/core/ext/upb-generated/envoy/config/trace/v2/http_tracer.upb.c +51 -0
- data/src/core/ext/upb-generated/envoy/config/trace/v2/http_tracer.upb.h +125 -0
- data/src/core/ext/upb-generated/envoy/service/discovery/v2/ads.upb.c +24 -0
- data/src/core/ext/upb-generated/envoy/service/discovery/v2/ads.upb.h +50 -0
- data/src/core/ext/upb-generated/envoy/service/load_stats/v2/lrs.upb.c +54 -0
- data/src/core/ext/upb-generated/envoy/service/load_stats/v2/lrs.upb.h +134 -0
- data/src/core/ext/upb-generated/envoy/type/http.upb.c +17 -0
- data/src/core/ext/upb-generated/envoy/type/http.upb.h +36 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/regex.upb.c +63 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/regex.upb.h +144 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/string.upb.c +53 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/string.upb.h +133 -0
- data/src/core/ext/upb-generated/envoy/type/metadata/v2/metadata.upb.c +88 -0
- data/src/core/ext/upb-generated/envoy/type/metadata/v2/metadata.upb.h +258 -0
- data/src/core/ext/upb-generated/envoy/type/percent.upb.c +39 -0
- data/src/core/ext/upb-generated/envoy/type/percent.upb.h +87 -0
- data/src/core/ext/upb-generated/envoy/type/range.upb.c +50 -0
- data/src/core/ext/upb-generated/envoy/type/range.upb.h +112 -0
- data/src/core/ext/upb-generated/envoy/type/semantic_version.upb.c +29 -0
- data/src/core/ext/upb-generated/envoy/type/semantic_version.upb.h +62 -0
- data/src/core/ext/upb-generated/envoy/type/tracing/v2/custom_tag.upb.c +89 -0
- data/src/core/ext/upb-generated/envoy/type/tracing/v2/custom_tag.upb.h +249 -0
- data/src/core/ext/upb-generated/gogoproto/gogo.upb.c +17 -0
- data/src/core/ext/upb-generated/gogoproto/gogo.upb.h +30 -0
- data/src/core/ext/upb-generated/google/api/annotations.upb.c +18 -0
- data/src/core/ext/upb-generated/google/api/annotations.upb.h +30 -0
- data/src/core/ext/upb-generated/google/api/http.upb.c +66 -0
- data/src/core/ext/upb-generated/google/api/http.upb.h +190 -0
- data/src/core/ext/upb-generated/google/protobuf/any.upb.c +27 -0
- data/src/core/ext/upb-generated/google/protobuf/any.upb.h +58 -0
- data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.c +486 -0
- data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.h +1696 -0
- data/src/core/ext/upb-generated/google/protobuf/duration.upb.c +27 -0
- data/src/core/ext/upb-generated/google/protobuf/duration.upb.h +58 -0
- data/src/core/ext/upb-generated/google/protobuf/empty.upb.c +22 -0
- data/src/core/ext/upb-generated/google/protobuf/empty.upb.h +50 -0
- data/src/core/ext/upb-generated/google/protobuf/struct.upb.c +79 -0
- data/src/core/ext/upb-generated/google/protobuf/struct.upb.h +215 -0
- data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.c +27 -0
- data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.h +58 -0
- data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.c +106 -0
- data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.h +238 -0
- data/src/core/ext/upb-generated/google/rpc/status.upb.c +33 -0
- data/src/core/ext/upb-generated/google/rpc/status.upb.h +74 -0
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.c +49 -0
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.h +126 -0
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.c +212 -0
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.h +693 -0
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.c +42 -0
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.h +109 -0
- data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.c +36 -0
- data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.h +84 -0
- data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.c +141 -0
- data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.h +393 -0
- data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.c +48 -0
- data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.h +104 -0
- data/src/core/ext/upb-generated/udpa/annotations/sensitive.upb.c +17 -0
- data/src/core/ext/upb-generated/udpa/annotations/sensitive.upb.h +30 -0
- data/src/core/ext/upb-generated/udpa/annotations/status.upb.c +28 -0
- data/src/core/ext/upb-generated/udpa/annotations/status.upb.h +65 -0
- data/src/core/ext/upb-generated/udpa/data/orca/v1/orca_load_report.upb.c +58 -0
- data/src/core/ext/upb-generated/udpa/data/orca/v1/orca_load_report.upb.h +144 -0
- data/src/core/ext/upb-generated/validate/validate.upb.c +448 -0
- data/src/core/ext/upb-generated/validate/validate.upb.h +2073 -0
- data/src/core/lib/avl/avl.cc +306 -0
- data/src/core/lib/avl/avl.h +94 -0
- data/src/core/lib/backoff/backoff.cc +78 -0
- data/src/core/lib/backoff/backoff.h +89 -0
- data/src/core/lib/channel/channel_args.cc +380 -0
- data/src/core/lib/channel/channel_args.h +135 -0
- data/src/core/lib/channel/channel_stack.cc +252 -0
- data/src/core/lib/channel/channel_stack.h +304 -0
- data/src/core/lib/channel/channel_stack_builder.cc +323 -0
- data/src/core/lib/channel/channel_stack_builder.h +166 -0
- data/src/core/lib/channel/channel_trace.cc +194 -0
- data/src/core/lib/channel/channel_trace.h +134 -0
- data/src/core/lib/channel/channelz.cc +543 -0
- data/src/core/lib/channel/channelz.h +334 -0
- data/src/core/lib/channel/channelz_registry.cc +267 -0
- data/src/core/lib/channel/channelz_registry.h +97 -0
- data/src/core/lib/channel/connected_channel.cc +246 -0
- data/src/core/lib/channel/connected_channel.h +34 -0
- data/src/core/lib/channel/context.h +49 -0
- data/src/core/lib/channel/handshaker.cc +262 -0
- data/src/core/lib/channel/handshaker.h +179 -0
- data/src/core/lib/channel/handshaker_factory.h +42 -0
- data/src/core/lib/channel/handshaker_registry.cc +105 -0
- data/src/core/lib/channel/handshaker_registry.h +54 -0
- data/src/core/lib/channel/status_util.cc +99 -0
- data/src/core/lib/channel/status_util.h +58 -0
- data/src/core/lib/compression/algorithm_metadata.h +61 -0
- data/src/core/lib/compression/compression.cc +179 -0
- data/src/core/lib/compression/compression_args.cc +134 -0
- data/src/core/lib/compression/compression_args.h +56 -0
- data/src/core/lib/compression/compression_internal.cc +280 -0
- data/src/core/lib/compression/compression_internal.h +96 -0
- data/src/core/lib/compression/message_compress.cc +192 -0
- data/src/core/lib/compression/message_compress.h +40 -0
- data/src/core/lib/compression/stream_compression.cc +80 -0
- data/src/core/lib/compression/stream_compression.h +116 -0
- data/src/core/lib/compression/stream_compression_gzip.cc +230 -0
- data/src/core/lib/compression/stream_compression_gzip.h +28 -0
- data/src/core/lib/compression/stream_compression_identity.cc +92 -0
- data/src/core/lib/compression/stream_compression_identity.h +29 -0
- data/src/core/lib/debug/stats.cc +172 -0
- data/src/core/lib/debug/stats.h +70 -0
- data/src/core/lib/debug/stats_data.cc +687 -0
- data/src/core/lib/debug/stats_data.h +555 -0
- data/src/core/lib/debug/trace.cc +154 -0
- data/src/core/lib/debug/trace.h +131 -0
- data/src/core/lib/gpr/alloc.cc +74 -0
- data/src/core/lib/gpr/alloc.h +28 -0
- data/src/core/lib/gpr/arena.h +47 -0
- data/src/core/lib/gpr/atm.cc +35 -0
- data/src/core/lib/gpr/cpu_iphone.cc +36 -0
- data/src/core/lib/gpr/cpu_linux.cc +82 -0
- data/src/core/lib/gpr/cpu_posix.cc +83 -0
- data/src/core/lib/gpr/cpu_windows.cc +33 -0
- data/src/core/lib/gpr/env.h +40 -0
- data/src/core/lib/gpr/env_linux.cc +76 -0
- data/src/core/lib/gpr/env_posix.cc +47 -0
- data/src/core/lib/gpr/env_windows.cc +74 -0
- data/src/core/lib/gpr/log.cc +98 -0
- data/src/core/lib/gpr/log_android.cc +76 -0
- data/src/core/lib/gpr/log_linux.cc +97 -0
- data/src/core/lib/gpr/log_posix.cc +95 -0
- data/src/core/lib/gpr/log_windows.cc +102 -0
- data/src/core/lib/gpr/murmur_hash.cc +80 -0
- data/src/core/lib/gpr/murmur_hash.h +29 -0
- data/src/core/lib/gpr/spinlock.h +45 -0
- data/src/core/lib/gpr/string.cc +341 -0
- data/src/core/lib/gpr/string.h +111 -0
- data/src/core/lib/gpr/string_posix.cc +72 -0
- data/src/core/lib/gpr/string_util_windows.cc +82 -0
- data/src/core/lib/gpr/string_windows.cc +69 -0
- data/src/core/lib/gpr/string_windows.h +32 -0
- data/src/core/lib/gpr/sync.cc +124 -0
- data/src/core/lib/gpr/sync_abseil.cc +116 -0
- data/src/core/lib/gpr/sync_posix.cc +176 -0
- data/src/core/lib/gpr/sync_windows.cc +120 -0
- data/src/core/lib/gpr/time.cc +263 -0
- data/src/core/lib/gpr/time_posix.cc +186 -0
- data/src/core/lib/gpr/time_precise.cc +165 -0
- data/src/core/lib/gpr/time_precise.h +66 -0
- data/src/core/lib/gpr/time_windows.cc +98 -0
- data/src/core/lib/gpr/tls.h +68 -0
- data/src/core/lib/gpr/tls_gcc.h +52 -0
- data/src/core/lib/gpr/tls_msvc.h +52 -0
- data/src/core/lib/gpr/tls_pthread.cc +30 -0
- data/src/core/lib/gpr/tls_pthread.h +56 -0
- data/src/core/lib/gpr/tmpfile.h +32 -0
- data/src/core/lib/gpr/tmpfile_msys.cc +58 -0
- data/src/core/lib/gpr/tmpfile_posix.cc +70 -0
- data/src/core/lib/gpr/tmpfile_windows.cc +69 -0
- data/src/core/lib/gpr/useful.h +65 -0
- data/src/core/lib/gpr/wrap_memcpy.cc +42 -0
- data/src/core/lib/gprpp/arena.cc +103 -0
- data/src/core/lib/gprpp/arena.h +120 -0
- data/src/core/lib/gprpp/atomic.h +104 -0
- data/src/core/lib/gprpp/debug_location.h +53 -0
- data/src/core/lib/gprpp/fork.cc +242 -0
- data/src/core/lib/gprpp/fork.h +103 -0
- data/src/core/lib/gprpp/global_config.h +96 -0
- data/src/core/lib/gprpp/global_config_custom.h +29 -0
- data/src/core/lib/gprpp/global_config_env.cc +135 -0
- data/src/core/lib/gprpp/global_config_env.h +131 -0
- data/src/core/lib/gprpp/global_config_generic.h +44 -0
- data/src/core/lib/gprpp/host_port.cc +112 -0
- data/src/core/lib/gprpp/host_port.h +56 -0
- data/src/core/lib/gprpp/manual_constructor.h +213 -0
- data/src/core/lib/gprpp/map.h +53 -0
- data/src/core/lib/gprpp/memory.h +51 -0
- data/src/core/lib/gprpp/mpscq.cc +108 -0
- data/src/core/lib/gprpp/mpscq.h +98 -0
- data/src/core/lib/gprpp/orphanable.h +129 -0
- data/src/core/lib/gprpp/ref_counted.h +312 -0
- data/src/core/lib/gprpp/ref_counted_ptr.h +192 -0
- data/src/core/lib/gprpp/sync.h +135 -0
- data/src/core/lib/gprpp/thd.h +174 -0
- data/src/core/lib/gprpp/thd_posix.cc +204 -0
- data/src/core/lib/gprpp/thd_windows.cc +176 -0
- data/src/core/lib/http/format_request.cc +103 -0
- data/src/core/lib/http/format_request.h +34 -0
- data/src/core/lib/http/httpcli.cc +303 -0
- data/src/core/lib/http/httpcli.h +126 -0
- data/src/core/lib/http/httpcli_security_connector.cc +214 -0
- data/src/core/lib/http/parser.cc +372 -0
- data/src/core/lib/http/parser.h +113 -0
- data/src/core/lib/iomgr/block_annotate.h +57 -0
- data/src/core/lib/iomgr/buffer_list.cc +308 -0
- data/src/core/lib/iomgr/buffer_list.h +165 -0
- data/src/core/lib/iomgr/call_combiner.cc +256 -0
- data/src/core/lib/iomgr/call_combiner.h +217 -0
- data/src/core/lib/iomgr/cfstream_handle.cc +209 -0
- data/src/core/lib/iomgr/cfstream_handle.h +90 -0
- data/src/core/lib/iomgr/closure.h +255 -0
- data/src/core/lib/iomgr/combiner.cc +339 -0
- data/src/core/lib/iomgr/combiner.h +88 -0
- data/src/core/lib/iomgr/dualstack_socket_posix.cc +47 -0
- data/src/core/lib/iomgr/dynamic_annotations.h +67 -0
- data/src/core/lib/iomgr/endpoint.cc +67 -0
- data/src/core/lib/iomgr/endpoint.h +106 -0
- data/src/core/lib/iomgr/endpoint_cfstream.cc +376 -0
- data/src/core/lib/iomgr/endpoint_cfstream.h +49 -0
- data/src/core/lib/iomgr/endpoint_pair.h +33 -0
- data/src/core/lib/iomgr/endpoint_pair_posix.cc +73 -0
- data/src/core/lib/iomgr/endpoint_pair_uv.cc +40 -0
- data/src/core/lib/iomgr/endpoint_pair_windows.cc +87 -0
- data/src/core/lib/iomgr/error.cc +812 -0
- data/src/core/lib/iomgr/error.h +276 -0
- data/src/core/lib/iomgr/error_cfstream.cc +52 -0
- data/src/core/lib/iomgr/error_cfstream.h +31 -0
- data/src/core/lib/iomgr/error_internal.h +61 -0
- data/src/core/lib/iomgr/ev_apple.cc +356 -0
- data/src/core/lib/iomgr/ev_apple.h +43 -0
- data/src/core/lib/iomgr/ev_epoll1_linux.cc +1365 -0
- data/src/core/lib/iomgr/ev_epoll1_linux.h +31 -0
- data/src/core/lib/iomgr/ev_epollex_linux.cc +1656 -0
- data/src/core/lib/iomgr/ev_epollex_linux.h +30 -0
- data/src/core/lib/iomgr/ev_poll_posix.cc +1427 -0
- data/src/core/lib/iomgr/ev_poll_posix.h +29 -0
- data/src/core/lib/iomgr/ev_posix.cc +417 -0
- data/src/core/lib/iomgr/ev_posix.h +207 -0
- data/src/core/lib/iomgr/ev_windows.cc +30 -0
- data/src/core/lib/iomgr/exec_ctx.cc +224 -0
- data/src/core/lib/iomgr/exec_ctx.h +380 -0
- data/src/core/lib/iomgr/executor.cc +469 -0
- data/src/core/lib/iomgr/executor.h +122 -0
- data/src/core/lib/iomgr/executor/mpmcqueue.cc +183 -0
- data/src/core/lib/iomgr/executor/mpmcqueue.h +175 -0
- data/src/core/lib/iomgr/executor/threadpool.cc +137 -0
- data/src/core/lib/iomgr/executor/threadpool.h +149 -0
- data/src/core/lib/iomgr/fork_posix.cc +119 -0
- data/src/core/lib/iomgr/fork_windows.cc +41 -0
- data/src/core/lib/iomgr/gethostname.h +26 -0
- data/src/core/lib/iomgr/gethostname_fallback.cc +30 -0
- data/src/core/lib/iomgr/gethostname_host_name_max.cc +40 -0
- data/src/core/lib/iomgr/gethostname_sysconf.cc +40 -0
- data/src/core/lib/iomgr/grpc_if_nametoindex.h +30 -0
- data/src/core/lib/iomgr/grpc_if_nametoindex_posix.cc +42 -0
- data/src/core/lib/iomgr/grpc_if_nametoindex_unsupported.cc +38 -0
- data/src/core/lib/iomgr/internal_errqueue.cc +67 -0
- data/src/core/lib/iomgr/internal_errqueue.h +191 -0
- data/src/core/lib/iomgr/iocp_windows.cc +157 -0
- data/src/core/lib/iomgr/iocp_windows.h +48 -0
- data/src/core/lib/iomgr/iomgr.cc +194 -0
- data/src/core/lib/iomgr/iomgr.h +60 -0
- data/src/core/lib/iomgr/iomgr_custom.cc +79 -0
- data/src/core/lib/iomgr/iomgr_custom.h +49 -0
- data/src/core/lib/iomgr/iomgr_internal.cc +57 -0
- data/src/core/lib/iomgr/iomgr_internal.h +73 -0
- data/src/core/lib/iomgr/iomgr_posix.cc +89 -0
- data/src/core/lib/iomgr/iomgr_posix.h +26 -0
- data/src/core/lib/iomgr/iomgr_posix_cfstream.cc +171 -0
- data/src/core/lib/iomgr/iomgr_uv.cc +43 -0
- data/src/core/lib/iomgr/iomgr_windows.cc +106 -0
- data/src/core/lib/iomgr/is_epollexclusive_available.cc +105 -0
- data/src/core/lib/iomgr/is_epollexclusive_available.h +36 -0
- data/src/core/lib/iomgr/load_file.cc +81 -0
- data/src/core/lib/iomgr/load_file.h +35 -0
- data/src/core/lib/iomgr/lockfree_event.cc +255 -0
- data/src/core/lib/iomgr/lockfree_event.h +72 -0
- data/src/core/lib/iomgr/nameser.h +106 -0
- data/src/core/lib/iomgr/poller/eventmanager_libuv.cc +87 -0
- data/src/core/lib/iomgr/poller/eventmanager_libuv.h +88 -0
- data/src/core/lib/iomgr/polling_entity.cc +96 -0
- data/src/core/lib/iomgr/polling_entity.h +68 -0
- data/src/core/lib/iomgr/pollset.cc +56 -0
- data/src/core/lib/iomgr/pollset.h +99 -0
- data/src/core/lib/iomgr/pollset_custom.cc +106 -0
- data/src/core/lib/iomgr/pollset_custom.h +35 -0
- data/src/core/lib/iomgr/pollset_set.cc +55 -0
- data/src/core/lib/iomgr/pollset_set.h +55 -0
- data/src/core/lib/iomgr/pollset_set_custom.cc +48 -0
- data/src/core/lib/iomgr/pollset_set_custom.h +26 -0
- data/src/core/lib/iomgr/pollset_set_windows.cc +51 -0
- data/src/core/lib/iomgr/pollset_set_windows.h +26 -0
- data/src/core/lib/iomgr/pollset_uv.cc +93 -0
- data/src/core/lib/iomgr/pollset_uv.h +32 -0
- data/src/core/lib/iomgr/pollset_windows.cc +243 -0
- data/src/core/lib/iomgr/pollset_windows.h +70 -0
- data/src/core/lib/iomgr/port.h +244 -0
- data/src/core/lib/iomgr/python_util.h +46 -0
- data/src/core/lib/iomgr/resolve_address.cc +50 -0
- data/src/core/lib/iomgr/resolve_address.h +81 -0
- data/src/core/lib/iomgr/resolve_address_custom.cc +173 -0
- data/src/core/lib/iomgr/resolve_address_custom.h +45 -0
- data/src/core/lib/iomgr/resolve_address_posix.cc +178 -0
- data/src/core/lib/iomgr/resolve_address_windows.cc +154 -0
- data/src/core/lib/iomgr/resource_quota.cc +1013 -0
- data/src/core/lib/iomgr/resource_quota.h +177 -0
- data/src/core/lib/iomgr/sockaddr.h +32 -0
- data/src/core/lib/iomgr/sockaddr_custom.h +54 -0
- data/src/core/lib/iomgr/sockaddr_posix.h +55 -0
- data/src/core/lib/iomgr/sockaddr_utils.cc +293 -0
- data/src/core/lib/iomgr/sockaddr_utils.h +79 -0
- data/src/core/lib/iomgr/sockaddr_windows.h +55 -0
- data/src/core/lib/iomgr/socket_factory_posix.cc +94 -0
- data/src/core/lib/iomgr/socket_factory_posix.h +68 -0
- data/src/core/lib/iomgr/socket_mutator.cc +83 -0
- data/src/core/lib/iomgr/socket_mutator.h +60 -0
- data/src/core/lib/iomgr/socket_utils.h +47 -0
- data/src/core/lib/iomgr/socket_utils_common_posix.cc +473 -0
- data/src/core/lib/iomgr/socket_utils_linux.cc +42 -0
- data/src/core/lib/iomgr/socket_utils_posix.cc +58 -0
- data/src/core/lib/iomgr/socket_utils_posix.h +163 -0
- data/src/core/lib/iomgr/socket_utils_uv.cc +49 -0
- data/src/core/lib/iomgr/socket_utils_windows.cc +47 -0
- data/src/core/lib/iomgr/socket_windows.cc +203 -0
- data/src/core/lib/iomgr/socket_windows.h +127 -0
- data/src/core/lib/iomgr/sys_epoll_wrapper.h +30 -0
- data/src/core/lib/iomgr/tcp_client.cc +36 -0
- data/src/core/lib/iomgr/tcp_client.h +52 -0
- data/src/core/lib/iomgr/tcp_client_cfstream.cc +215 -0
- data/src/core/lib/iomgr/tcp_client_custom.cc +163 -0
- data/src/core/lib/iomgr/tcp_client_posix.cc +360 -0
- data/src/core/lib/iomgr/tcp_client_posix.h +68 -0
- data/src/core/lib/iomgr/tcp_client_windows.cc +232 -0
- data/src/core/lib/iomgr/tcp_custom.cc +370 -0
- data/src/core/lib/iomgr/tcp_custom.h +84 -0
- data/src/core/lib/iomgr/tcp_posix.cc +1855 -0
- data/src/core/lib/iomgr/tcp_posix.h +60 -0
- data/src/core/lib/iomgr/tcp_server.cc +78 -0
- data/src/core/lib/iomgr/tcp_server.h +143 -0
- data/src/core/lib/iomgr/tcp_server_custom.cc +485 -0
- data/src/core/lib/iomgr/tcp_server_posix.cc +638 -0
- data/src/core/lib/iomgr/tcp_server_utils_posix.h +125 -0
- data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +223 -0
- data/src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc +181 -0
- data/src/core/lib/iomgr/tcp_server_utils_posix_noifaddrs.cc +36 -0
- data/src/core/lib/iomgr/tcp_server_windows.cc +564 -0
- data/src/core/lib/iomgr/tcp_uv.cc +419 -0
- data/src/core/lib/iomgr/tcp_windows.cc +533 -0
- data/src/core/lib/iomgr/tcp_windows.h +53 -0
- data/src/core/lib/iomgr/time_averaged_stats.cc +64 -0
- data/src/core/lib/iomgr/time_averaged_stats.h +72 -0
- data/src/core/lib/iomgr/timer.cc +45 -0
- data/src/core/lib/iomgr/timer.h +127 -0
- data/src/core/lib/iomgr/timer_custom.cc +95 -0
- data/src/core/lib/iomgr/timer_custom.h +43 -0
- data/src/core/lib/iomgr/timer_generic.cc +747 -0
- data/src/core/lib/iomgr/timer_generic.h +39 -0
- data/src/core/lib/iomgr/timer_heap.cc +135 -0
- data/src/core/lib/iomgr/timer_heap.h +43 -0
- data/src/core/lib/iomgr/timer_manager.cc +363 -0
- data/src/core/lib/iomgr/timer_manager.h +41 -0
- data/src/core/lib/iomgr/timer_uv.cc +66 -0
- data/src/core/lib/iomgr/udp_server.cc +747 -0
- data/src/core/lib/iomgr/udp_server.h +101 -0
- data/src/core/lib/iomgr/unix_sockets_posix.cc +104 -0
- data/src/core/lib/iomgr/unix_sockets_posix.h +43 -0
- data/src/core/lib/iomgr/unix_sockets_posix_noop.cc +49 -0
- data/src/core/lib/iomgr/wakeup_fd_eventfd.cc +82 -0
- data/src/core/lib/iomgr/wakeup_fd_nospecial.cc +38 -0
- data/src/core/lib/iomgr/wakeup_fd_pipe.cc +100 -0
- data/src/core/lib/iomgr/wakeup_fd_pipe.h +28 -0
- data/src/core/lib/iomgr/wakeup_fd_posix.cc +69 -0
- data/src/core/lib/iomgr/wakeup_fd_posix.h +96 -0
- data/src/core/lib/iomgr/work_serializer.cc +155 -0
- data/src/core/lib/iomgr/work_serializer.h +65 -0
- data/src/core/lib/json/json.h +240 -0
- data/src/core/lib/json/json_reader.cc +855 -0
- data/src/core/lib/json/json_writer.cc +337 -0
- data/src/core/lib/profiling/basic_timers.cc +293 -0
- data/src/core/lib/profiling/stap_timers.cc +50 -0
- data/src/core/lib/profiling/timers.h +94 -0
- data/src/core/lib/security/context/security_context.cc +321 -0
- data/src/core/lib/security/context/security_context.h +150 -0
- data/src/core/lib/security/credentials/alts/alts_credentials.cc +110 -0
- data/src/core/lib/security/credentials/alts/alts_credentials.h +109 -0
- data/src/core/lib/security/credentials/alts/check_gcp_environment.cc +72 -0
- data/src/core/lib/security/credentials/alts/check_gcp_environment.h +57 -0
- data/src/core/lib/security/credentials/alts/check_gcp_environment_linux.cc +68 -0
- data/src/core/lib/security/credentials/alts/check_gcp_environment_no_op.cc +33 -0
- data/src/core/lib/security/credentials/alts/check_gcp_environment_windows.cc +102 -0
- data/src/core/lib/security/credentials/alts/grpc_alts_credentials_client_options.cc +127 -0
- data/src/core/lib/security/credentials/alts/grpc_alts_credentials_options.cc +46 -0
- data/src/core/lib/security/credentials/alts/grpc_alts_credentials_options.h +75 -0
- data/src/core/lib/security/credentials/alts/grpc_alts_credentials_server_options.cc +59 -0
- data/src/core/lib/security/credentials/composite/composite_credentials.cc +229 -0
- data/src/core/lib/security/credentials/composite/composite_credentials.h +106 -0
- data/src/core/lib/security/credentials/credentials.cc +162 -0
- data/src/core/lib/security/credentials/credentials.h +283 -0
- data/src/core/lib/security/credentials/credentials_metadata.cc +62 -0
- data/src/core/lib/security/credentials/fake/fake_credentials.cc +112 -0
- data/src/core/lib/security/credentials/fake/fake_credentials.h +87 -0
- data/src/core/lib/security/credentials/google_default/credentials_generic.cc +41 -0
- data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +383 -0
- data/src/core/lib/security/credentials/google_default/google_default_credentials.h +87 -0
- data/src/core/lib/security/credentials/iam/iam_credentials.cc +80 -0
- data/src/core/lib/security/credentials/iam/iam_credentials.h +49 -0
- data/src/core/lib/security/credentials/jwt/json_token.cc +288 -0
- data/src/core/lib/security/credentials/jwt/json_token.h +75 -0
- data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +172 -0
- data/src/core/lib/security/credentials/jwt/jwt_credentials.h +80 -0
- data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +925 -0
- data/src/core/lib/security/credentials/jwt/jwt_verifier.h +122 -0
- data/src/core/lib/security/credentials/local/local_credentials.cc +64 -0
- data/src/core/lib/security/credentials/local/local_credentials.h +61 -0
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +771 -0
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +171 -0
- data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +269 -0
- data/src/core/lib/security/credentials/plugin/plugin_credentials.h +72 -0
- data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +364 -0
- data/src/core/lib/security/credentials/ssl/ssl_credentials.h +99 -0
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +245 -0
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +313 -0
- data/src/core/lib/security/credentials/tls/tls_credentials.cc +128 -0
- data/src/core/lib/security/credentials/tls/tls_credentials.h +62 -0
- data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +301 -0
- data/src/core/lib/security/security_connector/alts/alts_security_connector.h +76 -0
- data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +324 -0
- data/src/core/lib/security/security_connector/fake/fake_security_connector.h +45 -0
- data/src/core/lib/security/security_connector/load_system_roots.h +29 -0
- data/src/core/lib/security/security_connector/load_system_roots_fallback.cc +32 -0
- data/src/core/lib/security/security_connector/load_system_roots_linux.cc +171 -0
- data/src/core/lib/security/security_connector/load_system_roots_linux.h +44 -0
- data/src/core/lib/security/security_connector/local/local_security_connector.cc +281 -0
- data/src/core/lib/security/security_connector/local/local_security_connector.h +59 -0
- data/src/core/lib/security/security_connector/security_connector.cc +129 -0
- data/src/core/lib/security/security_connector/security_connector.h +176 -0
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +439 -0
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.h +77 -0
- data/src/core/lib/security/security_connector/ssl_utils.cc +563 -0
- data/src/core/lib/security/security_connector/ssl_utils.h +184 -0
- data/src/core/lib/security/security_connector/ssl_utils_config.cc +32 -0
- data/src/core/lib/security/security_connector/ssl_utils_config.h +30 -0
- data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +603 -0
- data/src/core/lib/security/security_connector/tls/tls_security_connector.h +183 -0
- data/src/core/lib/security/transport/auth_filters.h +35 -0
- data/src/core/lib/security/transport/client_auth_filter.cc +466 -0
- data/src/core/lib/security/transport/secure_endpoint.cc +446 -0
- data/src/core/lib/security/transport/secure_endpoint.h +41 -0
- data/src/core/lib/security/transport/security_handshaker.cc +574 -0
- data/src/core/lib/security/transport/security_handshaker.h +45 -0
- data/src/core/lib/security/transport/server_auth_filter.cc +326 -0
- data/src/core/lib/security/transport/target_authority_table.cc +75 -0
- data/src/core/lib/security/transport/target_authority_table.h +40 -0
- data/src/core/lib/security/transport/tsi_error.cc +29 -0
- data/src/core/lib/security/transport/tsi_error.h +29 -0
- data/src/core/lib/security/util/json_util.cc +73 -0
- data/src/core/lib/security/util/json_util.h +44 -0
- data/src/core/lib/slice/b64.cc +239 -0
- data/src/core/lib/slice/b64.h +50 -0
- data/src/core/lib/slice/percent_encoding.cc +169 -0
- data/src/core/lib/slice/percent_encoding.h +65 -0
- data/src/core/lib/slice/slice.cc +559 -0
- data/src/core/lib/slice/slice_buffer.cc +413 -0
- data/src/core/lib/slice/slice_hash_table.h +199 -0
- data/src/core/lib/slice/slice_intern.cc +375 -0
- data/src/core/lib/slice/slice_internal.h +364 -0
- data/src/core/lib/slice/slice_string_helpers.cc +127 -0
- data/src/core/lib/slice/slice_string_helpers.h +49 -0
- data/src/core/lib/slice/slice_utils.h +200 -0
- data/src/core/lib/slice/slice_weak_hash_table.h +102 -0
- data/src/core/lib/surface/api_trace.cc +24 -0
- data/src/core/lib/surface/api_trace.h +52 -0
- data/src/core/lib/surface/byte_buffer.cc +92 -0
- data/src/core/lib/surface/byte_buffer_reader.cc +101 -0
- data/src/core/lib/surface/call.cc +2044 -0
- data/src/core/lib/surface/call.h +125 -0
- data/src/core/lib/surface/call_details.cc +41 -0
- data/src/core/lib/surface/call_log_batch.cc +111 -0
- data/src/core/lib/surface/call_test_only.h +43 -0
- data/src/core/lib/surface/channel.cc +543 -0
- data/src/core/lib/surface/channel.h +158 -0
- data/src/core/lib/surface/channel_init.cc +109 -0
- data/src/core/lib/surface/channel_init.h +78 -0
- data/src/core/lib/surface/channel_ping.cc +64 -0
- data/src/core/lib/surface/channel_stack_type.cc +58 -0
- data/src/core/lib/surface/channel_stack_type.h +47 -0
- data/src/core/lib/surface/completion_queue.cc +1438 -0
- data/src/core/lib/surface/completion_queue.h +97 -0
- data/src/core/lib/surface/completion_queue_factory.cc +88 -0
- data/src/core/lib/surface/completion_queue_factory.h +38 -0
- data/src/core/lib/surface/event_string.cc +61 -0
- data/src/core/lib/surface/event_string.h +31 -0
- data/src/core/lib/surface/init.cc +250 -0
- data/src/core/lib/surface/init.h +27 -0
- data/src/core/lib/surface/init_secure.cc +81 -0
- data/src/core/lib/surface/lame_client.cc +191 -0
- data/src/core/lib/surface/lame_client.h +28 -0
- data/src/core/lib/surface/metadata_array.cc +36 -0
- data/src/core/lib/surface/server.cc +1800 -0
- data/src/core/lib/surface/server.h +99 -0
- data/src/core/lib/surface/validate_metadata.cc +105 -0
- data/src/core/lib/surface/validate_metadata.h +41 -0
- data/src/core/lib/surface/version.cc +28 -0
- data/src/core/lib/transport/bdp_estimator.cc +87 -0
- data/src/core/lib/transport/bdp_estimator.h +94 -0
- data/src/core/lib/transport/byte_stream.cc +158 -0
- data/src/core/lib/transport/byte_stream.h +165 -0
- data/src/core/lib/transport/connectivity_state.cc +180 -0
- data/src/core/lib/transport/connectivity_state.h +131 -0
- data/src/core/lib/transport/error_utils.cc +141 -0
- data/src/core/lib/transport/error_utils.h +46 -0
- data/src/core/lib/transport/http2_errors.h +41 -0
- data/src/core/lib/transport/metadata.cc +679 -0
- data/src/core/lib/transport/metadata.h +446 -0
- data/src/core/lib/transport/metadata_batch.cc +392 -0
- data/src/core/lib/transport/metadata_batch.h +191 -0
- data/src/core/lib/transport/pid_controller.cc +51 -0
- data/src/core/lib/transport/pid_controller.h +116 -0
- data/src/core/lib/transport/static_metadata.cc +1230 -0
- data/src/core/lib/transport/static_metadata.h +597 -0
- data/src/core/lib/transport/status_conversion.cc +92 -0
- data/src/core/lib/transport/status_conversion.h +38 -0
- data/src/core/lib/transport/status_metadata.cc +61 -0
- data/src/core/lib/transport/status_metadata.h +48 -0
- data/src/core/lib/transport/timeout_encoding.cc +151 -0
- data/src/core/lib/transport/timeout_encoding.h +38 -0
- data/src/core/lib/transport/transport.cc +259 -0
- data/src/core/lib/transport/transport.h +456 -0
- data/src/core/lib/transport/transport_impl.h +71 -0
- data/src/core/lib/transport/transport_op_string.cc +169 -0
- data/src/core/lib/uri/uri_parser.cc +314 -0
- data/src/core/lib/uri/uri_parser.h +49 -0
- data/src/core/plugin_registry/grpc_plugin_registry.cc +121 -0
- data/src/core/tsi/alts/crypt/aes_gcm.cc +687 -0
- data/src/core/tsi/alts/crypt/gsec.cc +189 -0
- data/src/core/tsi/alts/crypt/gsec.h +454 -0
- data/src/core/tsi/alts/frame_protector/alts_counter.cc +118 -0
- data/src/core/tsi/alts/frame_protector/alts_counter.h +98 -0
- data/src/core/tsi/alts/frame_protector/alts_crypter.cc +66 -0
- data/src/core/tsi/alts/frame_protector/alts_crypter.h +255 -0
- data/src/core/tsi/alts/frame_protector/alts_frame_protector.cc +407 -0
- data/src/core/tsi/alts/frame_protector/alts_frame_protector.h +55 -0
- data/src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.cc +114 -0
- data/src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.h +114 -0
- data/src/core/tsi/alts/frame_protector/alts_seal_privacy_integrity_crypter.cc +105 -0
- data/src/core/tsi/alts/frame_protector/alts_unseal_privacy_integrity_crypter.cc +103 -0
- data/src/core/tsi/alts/frame_protector/frame_handler.cc +218 -0
- data/src/core/tsi/alts/frame_protector/frame_handler.h +236 -0
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +899 -0
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.h +161 -0
- data/src/core/tsi/alts/handshaker/alts_shared_resource.cc +83 -0
- data/src/core/tsi/alts/handshaker/alts_shared_resource.h +73 -0
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +674 -0
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.h +104 -0
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker_private.h +88 -0
- data/src/core/tsi/alts/handshaker/alts_tsi_utils.cc +64 -0
- data/src/core/tsi/alts/handshaker/alts_tsi_utils.h +53 -0
- data/src/core/tsi/alts/handshaker/transport_security_common_api.cc +223 -0
- data/src/core/tsi/alts/handshaker/transport_security_common_api.h +171 -0
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.cc +226 -0
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.h +54 -0
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.cc +144 -0
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.h +49 -0
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol.h +91 -0
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc +174 -0
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.h +99 -0
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.cc +476 -0
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.h +199 -0
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc +307 -0
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.h +57 -0
- data/src/core/tsi/fake_transport_security.cc +789 -0
- data/src/core/tsi/fake_transport_security.h +47 -0
- data/src/core/tsi/local_transport_security.cc +211 -0
- data/src/core/tsi/local_transport_security.h +51 -0
- data/src/core/tsi/ssl/session_cache/ssl_session.h +71 -0
- data/src/core/tsi/ssl/session_cache/ssl_session_boringssl.cc +57 -0
- data/src/core/tsi/ssl/session_cache/ssl_session_cache.cc +214 -0
- data/src/core/tsi/ssl/session_cache/ssl_session_cache.h +90 -0
- data/src/core/tsi/ssl/session_cache/ssl_session_openssl.cc +75 -0
- data/src/core/tsi/ssl_transport_security.cc +2124 -0
- data/src/core/tsi/ssl_transport_security.h +353 -0
- data/src/core/tsi/ssl_types.h +42 -0
- data/src/core/tsi/transport_security.cc +370 -0
- data/src/core/tsi/transport_security.h +127 -0
- data/src/core/tsi/transport_security_grpc.cc +73 -0
- data/src/core/tsi/transport_security_grpc.h +79 -0
- data/src/core/tsi/transport_security_interface.h +476 -0
- data/src/ruby/bin/math_client.rb +140 -0
- data/src/ruby/bin/math_pb.rb +34 -0
- data/src/ruby/bin/math_server.rb +191 -0
- data/src/ruby/bin/math_services_pb.rb +51 -0
- data/src/ruby/bin/noproto_client.rb +93 -0
- data/src/ruby/bin/noproto_server.rb +97 -0
- data/src/ruby/ext/grpc/ext-export.clang +1 -0
- data/src/ruby/ext/grpc/ext-export.gcc +6 -0
- data/src/ruby/ext/grpc/extconf.rb +107 -0
- data/src/ruby/ext/grpc/rb_byte_buffer.c +64 -0
- data/src/ruby/ext/grpc/rb_byte_buffer.h +35 -0
- data/src/ruby/ext/grpc/rb_call.c +1050 -0
- data/src/ruby/ext/grpc/rb_call.h +53 -0
- data/src/ruby/ext/grpc/rb_call_credentials.c +297 -0
- data/src/ruby/ext/grpc/rb_call_credentials.h +31 -0
- data/src/ruby/ext/grpc/rb_channel.c +835 -0
- data/src/ruby/ext/grpc/rb_channel.h +34 -0
- data/src/ruby/ext/grpc/rb_channel_args.c +155 -0
- data/src/ruby/ext/grpc/rb_channel_args.h +38 -0
- data/src/ruby/ext/grpc/rb_channel_credentials.c +267 -0
- data/src/ruby/ext/grpc/rb_channel_credentials.h +32 -0
- data/src/ruby/ext/grpc/rb_completion_queue.c +100 -0
- data/src/ruby/ext/grpc/rb_completion_queue.h +36 -0
- data/src/ruby/ext/grpc/rb_compression_options.c +470 -0
- data/src/ruby/ext/grpc/rb_compression_options.h +29 -0
- data/src/ruby/ext/grpc/rb_enable_cpp.cc +22 -0
- data/src/ruby/ext/grpc/rb_event_thread.c +143 -0
- data/src/ruby/ext/grpc/rb_event_thread.h +21 -0
- data/src/ruby/ext/grpc/rb_grpc.c +328 -0
- data/src/ruby/ext/grpc/rb_grpc.h +76 -0
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +573 -0
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +865 -0
- data/src/ruby/ext/grpc/rb_loader.c +57 -0
- data/src/ruby/ext/grpc/rb_loader.h +25 -0
- data/src/ruby/ext/grpc/rb_server.c +372 -0
- data/src/ruby/ext/grpc/rb_server.h +32 -0
- data/src/ruby/ext/grpc/rb_server_credentials.c +243 -0
- data/src/ruby/ext/grpc/rb_server_credentials.h +32 -0
- data/src/ruby/lib/grpc.rb +37 -0
- data/src/ruby/lib/grpc/core/status_codes.rb +135 -0
- data/src/ruby/lib/grpc/core/time_consts.rb +56 -0
- data/src/ruby/lib/grpc/errors.rb +277 -0
- data/src/ruby/lib/grpc/generic/active_call.rb +669 -0
- data/src/ruby/lib/grpc/generic/bidi_call.rb +233 -0
- data/src/ruby/lib/grpc/generic/client_stub.rb +501 -0
- data/src/ruby/lib/grpc/generic/interceptor_registry.rb +53 -0
- data/src/ruby/lib/grpc/generic/interceptors.rb +186 -0
- data/src/ruby/lib/grpc/generic/rpc_desc.rb +204 -0
- data/src/ruby/lib/grpc/generic/rpc_server.rb +551 -0
- data/src/ruby/lib/grpc/generic/service.rb +211 -0
- data/src/ruby/lib/grpc/google_rpc_status_utils.rb +40 -0
- data/src/ruby/lib/grpc/grpc.rb +24 -0
- data/src/ruby/lib/grpc/logconfig.rb +44 -0
- data/src/ruby/lib/grpc/notifier.rb +45 -0
- data/src/ruby/lib/grpc/structs.rb +15 -0
- data/src/ruby/lib/grpc/version.rb +18 -0
- data/src/ruby/pb/README.md +42 -0
- data/src/ruby/pb/generate_proto_ruby.sh +51 -0
- data/src/ruby/pb/grpc/health/checker.rb +75 -0
- data/src/ruby/pb/grpc/health/v1/health_pb.rb +31 -0
- data/src/ruby/pb/grpc/health/v1/health_services_pb.rb +62 -0
- data/src/ruby/pb/grpc/testing/duplicate/echo_duplicate_services_pb.rb +44 -0
- data/src/ruby/pb/grpc/testing/metrics_pb.rb +28 -0
- data/src/ruby/pb/grpc/testing/metrics_services_pb.rb +49 -0
- data/src/ruby/pb/src/proto/grpc/testing/empty_pb.rb +17 -0
- data/src/ruby/pb/src/proto/grpc/testing/messages_pb.rb +105 -0
- data/src/ruby/pb/src/proto/grpc/testing/test_pb.rb +16 -0
- data/src/ruby/pb/src/proto/grpc/testing/test_services_pb.rb +118 -0
- data/src/ruby/spec/call_credentials_spec.rb +42 -0
- data/src/ruby/spec/call_spec.rb +180 -0
- data/src/ruby/spec/channel_connection_spec.rb +126 -0
- data/src/ruby/spec/channel_credentials_spec.rb +82 -0
- data/src/ruby/spec/channel_spec.rb +234 -0
- data/src/ruby/spec/client_auth_spec.rb +126 -0
- data/src/ruby/spec/client_server_spec.rb +664 -0
- data/src/ruby/spec/compression_options_spec.rb +149 -0
- data/src/ruby/spec/debug_message_spec.rb +134 -0
- data/src/ruby/spec/error_sanity_spec.rb +49 -0
- data/src/ruby/spec/errors_spec.rb +142 -0
- data/src/ruby/spec/generic/active_call_spec.rb +672 -0
- data/src/ruby/spec/generic/client_interceptors_spec.rb +153 -0
- data/src/ruby/spec/generic/client_stub_spec.rb +1083 -0
- data/src/ruby/spec/generic/interceptor_registry_spec.rb +65 -0
- data/src/ruby/spec/generic/rpc_desc_spec.rb +374 -0
- data/src/ruby/spec/generic/rpc_server_pool_spec.rb +127 -0
- data/src/ruby/spec/generic/rpc_server_spec.rb +748 -0
- data/src/ruby/spec/generic/server_interceptors_spec.rb +218 -0
- data/src/ruby/spec/generic/service_spec.rb +263 -0
- data/src/ruby/spec/google_rpc_status_utils_spec.rb +282 -0
- data/src/ruby/spec/pb/codegen/grpc/testing/package_options.proto +28 -0
- data/src/ruby/spec/pb/codegen/grpc/testing/package_options_import.proto +22 -0
- data/src/ruby/spec/pb/codegen/grpc/testing/package_options_import2.proto +23 -0
- data/src/ruby/spec/pb/codegen/grpc/testing/package_options_ruby_style.proto +41 -0
- data/src/ruby/spec/pb/codegen/package_option_spec.rb +82 -0
- data/src/ruby/spec/pb/duplicate/codegen_spec.rb +57 -0
- data/src/ruby/spec/pb/health/checker_spec.rb +236 -0
- data/src/ruby/spec/server_credentials_spec.rb +79 -0
- data/src/ruby/spec/server_spec.rb +209 -0
- data/src/ruby/spec/spec_helper.rb +61 -0
- data/src/ruby/spec/support/helpers.rb +107 -0
- data/src/ruby/spec/support/services.rb +160 -0
- data/src/ruby/spec/testdata/README +1 -0
- data/src/ruby/spec/testdata/ca.pem +20 -0
- data/src/ruby/spec/testdata/client.key +28 -0
- data/src/ruby/spec/testdata/client.pem +20 -0
- data/src/ruby/spec/testdata/server1.key +28 -0
- data/src/ruby/spec/testdata/server1.pem +22 -0
- data/src/ruby/spec/time_consts_spec.rb +74 -0
- data/third_party/abseil-cpp/absl/algorithm/algorithm.h +159 -0
- data/third_party/abseil-cpp/absl/base/attributes.h +621 -0
- data/third_party/abseil-cpp/absl/base/call_once.h +226 -0
- data/third_party/abseil-cpp/absl/base/casts.h +184 -0
- data/third_party/abseil-cpp/absl/base/config.h +671 -0
- data/third_party/abseil-cpp/absl/base/const_init.h +76 -0
- data/third_party/abseil-cpp/absl/base/dynamic_annotations.cc +129 -0
- data/third_party/abseil-cpp/absl/base/dynamic_annotations.h +389 -0
- data/third_party/abseil-cpp/absl/base/internal/atomic_hook.h +200 -0
- data/third_party/abseil-cpp/absl/base/internal/bits.h +218 -0
- data/third_party/abseil-cpp/absl/base/internal/cycleclock.cc +107 -0
- data/third_party/abseil-cpp/absl/base/internal/cycleclock.h +94 -0
- data/third_party/abseil-cpp/absl/base/internal/endian.h +266 -0
- data/third_party/abseil-cpp/absl/base/internal/errno_saver.h +43 -0
- data/third_party/abseil-cpp/absl/base/internal/hide_ptr.h +51 -0
- data/third_party/abseil-cpp/absl/base/internal/identity.h +37 -0
- data/third_party/abseil-cpp/absl/base/internal/inline_variable.h +107 -0
- data/third_party/abseil-cpp/absl/base/internal/invoke.h +187 -0
- data/third_party/abseil-cpp/absl/base/internal/low_level_scheduling.h +107 -0
- data/third_party/abseil-cpp/absl/base/internal/per_thread_tls.h +52 -0
- data/third_party/abseil-cpp/absl/base/internal/raw_logging.cc +240 -0
- data/third_party/abseil-cpp/absl/base/internal/raw_logging.h +183 -0
- data/third_party/abseil-cpp/absl/base/internal/scheduling_mode.h +58 -0
- data/third_party/abseil-cpp/absl/base/internal/spinlock.cc +233 -0
- data/third_party/abseil-cpp/absl/base/internal/spinlock.h +243 -0
- data/third_party/abseil-cpp/absl/base/internal/spinlock_akaros.inc +35 -0
- data/third_party/abseil-cpp/absl/base/internal/spinlock_linux.inc +66 -0
- data/third_party/abseil-cpp/absl/base/internal/spinlock_posix.inc +46 -0
- data/third_party/abseil-cpp/absl/base/internal/spinlock_wait.cc +81 -0
- data/third_party/abseil-cpp/absl/base/internal/spinlock_wait.h +93 -0
- data/third_party/abseil-cpp/absl/base/internal/spinlock_win32.inc +37 -0
- data/third_party/abseil-cpp/absl/base/internal/sysinfo.cc +416 -0
- data/third_party/abseil-cpp/absl/base/internal/sysinfo.h +66 -0
- data/third_party/abseil-cpp/absl/base/internal/thread_annotations.h +271 -0
- data/third_party/abseil-cpp/absl/base/internal/thread_identity.cc +152 -0
- data/third_party/abseil-cpp/absl/base/internal/thread_identity.h +259 -0
- data/third_party/abseil-cpp/absl/base/internal/throw_delegate.cc +108 -0
- data/third_party/abseil-cpp/absl/base/internal/throw_delegate.h +75 -0
- data/third_party/abseil-cpp/absl/base/internal/tsan_mutex_interface.h +66 -0
- data/third_party/abseil-cpp/absl/base/internal/unaligned_access.h +158 -0
- data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.cc +140 -0
- data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.h +124 -0
- data/third_party/abseil-cpp/absl/base/log_severity.cc +27 -0
- data/third_party/abseil-cpp/absl/base/log_severity.h +121 -0
- data/third_party/abseil-cpp/absl/base/macros.h +220 -0
- data/third_party/abseil-cpp/absl/base/optimization.h +181 -0
- data/third_party/abseil-cpp/absl/base/options.h +211 -0
- data/third_party/abseil-cpp/absl/base/policy_checks.h +111 -0
- data/third_party/abseil-cpp/absl/base/port.h +26 -0
- data/third_party/abseil-cpp/absl/base/thread_annotations.h +280 -0
- data/third_party/abseil-cpp/absl/container/inlined_vector.h +848 -0
- data/third_party/abseil-cpp/absl/container/internal/compressed_tuple.h +265 -0
- data/third_party/abseil-cpp/absl/container/internal/inlined_vector.h +892 -0
- data/third_party/abseil-cpp/absl/memory/memory.h +695 -0
- data/third_party/abseil-cpp/absl/meta/type_traits.h +759 -0
- data/third_party/abseil-cpp/absl/numeric/int128.cc +404 -0
- data/third_party/abseil-cpp/absl/numeric/int128.h +1091 -0
- data/third_party/abseil-cpp/absl/numeric/int128_have_intrinsic.inc +302 -0
- data/third_party/abseil-cpp/absl/numeric/int128_no_intrinsic.inc +308 -0
- data/third_party/abseil-cpp/absl/strings/ascii.cc +200 -0
- data/third_party/abseil-cpp/absl/strings/ascii.h +242 -0
- data/third_party/abseil-cpp/absl/strings/charconv.cc +984 -0
- data/third_party/abseil-cpp/absl/strings/charconv.h +119 -0
- data/third_party/abseil-cpp/absl/strings/escaping.cc +949 -0
- data/third_party/abseil-cpp/absl/strings/escaping.h +164 -0
- data/third_party/abseil-cpp/absl/strings/internal/char_map.h +156 -0
- data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.cc +359 -0
- data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.h +423 -0
- data/third_party/abseil-cpp/absl/strings/internal/charconv_parse.cc +504 -0
- data/third_party/abseil-cpp/absl/strings/internal/charconv_parse.h +99 -0
- data/third_party/abseil-cpp/absl/strings/internal/escaping.cc +180 -0
- data/third_party/abseil-cpp/absl/strings/internal/escaping.h +58 -0
- data/third_party/abseil-cpp/absl/strings/internal/memutil.cc +112 -0
- data/third_party/abseil-cpp/absl/strings/internal/memutil.h +148 -0
- data/third_party/abseil-cpp/absl/strings/internal/ostringstream.cc +36 -0
- data/third_party/abseil-cpp/absl/strings/internal/ostringstream.h +89 -0
- data/third_party/abseil-cpp/absl/strings/internal/resize_uninitialized.h +73 -0
- data/third_party/abseil-cpp/absl/strings/internal/stl_type_traits.h +248 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.cc +388 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.h +432 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.cc +245 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.h +209 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/checker.h +326 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/extension.cc +51 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/extension.h +415 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.cc +493 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.h +23 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/output.cc +72 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/output.h +104 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/parser.cc +334 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/parser.h +333 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_join_internal.h +314 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_split_internal.h +455 -0
- data/third_party/abseil-cpp/absl/strings/internal/utf8.cc +53 -0
- data/third_party/abseil-cpp/absl/strings/internal/utf8.h +50 -0
- data/third_party/abseil-cpp/absl/strings/match.cc +40 -0
- data/third_party/abseil-cpp/absl/strings/match.h +90 -0
- data/third_party/abseil-cpp/absl/strings/numbers.cc +965 -0
- data/third_party/abseil-cpp/absl/strings/numbers.h +266 -0
- data/third_party/abseil-cpp/absl/strings/str_cat.cc +246 -0
- data/third_party/abseil-cpp/absl/strings/str_cat.h +408 -0
- data/third_party/abseil-cpp/absl/strings/str_format.h +537 -0
- data/third_party/abseil-cpp/absl/strings/str_join.h +293 -0
- data/third_party/abseil-cpp/absl/strings/str_replace.cc +82 -0
- data/third_party/abseil-cpp/absl/strings/str_replace.h +219 -0
- data/third_party/abseil-cpp/absl/strings/str_split.cc +139 -0
- data/third_party/abseil-cpp/absl/strings/str_split.h +513 -0
- data/third_party/abseil-cpp/absl/strings/string_view.cc +235 -0
- data/third_party/abseil-cpp/absl/strings/string_view.h +622 -0
- data/third_party/abseil-cpp/absl/strings/strip.h +91 -0
- data/third_party/abseil-cpp/absl/strings/substitute.cc +171 -0
- data/third_party/abseil-cpp/absl/strings/substitute.h +693 -0
- data/third_party/abseil-cpp/absl/time/civil_time.cc +175 -0
- data/third_party/abseil-cpp/absl/time/civil_time.h +538 -0
- data/third_party/abseil-cpp/absl/time/clock.cc +569 -0
- data/third_party/abseil-cpp/absl/time/clock.h +74 -0
- data/third_party/abseil-cpp/absl/time/duration.cc +922 -0
- data/third_party/abseil-cpp/absl/time/format.cc +153 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/civil_time.h +332 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/civil_time_detail.h +622 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/time_zone.h +384 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/zone_info_source.h +102 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/civil_time_detail.cc +94 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_fixed.cc +140 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_fixed.h +52 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_format.cc +922 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.cc +45 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.h +76 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.cc +121 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.h +93 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.cc +958 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.h +138 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.cc +308 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.h +55 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_lookup.cc +187 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_posix.cc +159 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_posix.h +132 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/tzfile.h +122 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/zone_info_source.cc +115 -0
- data/third_party/abseil-cpp/absl/time/internal/get_current_time_chrono.inc +31 -0
- data/third_party/abseil-cpp/absl/time/internal/get_current_time_posix.inc +24 -0
- data/third_party/abseil-cpp/absl/time/time.cc +499 -0
- data/third_party/abseil-cpp/absl/time/time.h +1584 -0
- data/third_party/abseil-cpp/absl/types/bad_optional_access.cc +48 -0
- data/third_party/abseil-cpp/absl/types/bad_optional_access.h +78 -0
- data/third_party/abseil-cpp/absl/types/internal/optional.h +396 -0
- data/third_party/abseil-cpp/absl/types/internal/span.h +128 -0
- data/third_party/abseil-cpp/absl/types/optional.h +776 -0
- data/third_party/abseil-cpp/absl/types/span.h +713 -0
- data/third_party/abseil-cpp/absl/utility/utility.h +350 -0
- data/third_party/address_sorting/address_sorting.c +375 -0
- data/third_party/address_sorting/address_sorting_internal.h +70 -0
- data/third_party/address_sorting/address_sorting_posix.c +97 -0
- data/third_party/address_sorting/address_sorting_windows.c +95 -0
- data/third_party/address_sorting/include/address_sorting/address_sorting.h +113 -0
- data/third_party/boringssl-with-bazel/err_data.c +1439 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bitstr.c +271 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bool.c +123 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_d2i_fp.c +93 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_dup.c +87 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_enum.c +195 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_gentm.c +261 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_i2d_fp.c +88 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_int.c +420 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_mbstr.c +305 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_object.c +286 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_octet.c +77 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_print.c +93 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_strnid.c +313 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_time.c +212 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_type.c +151 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_utctm.c +303 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_utf8.c +236 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_lib.c +446 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_locl.h +104 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_par.c +80 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/asn_pack.c +105 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/f_enum.c +93 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/f_int.c +97 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/f_string.c +91 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_dec.c +1244 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_enc.c +664 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_fre.c +244 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_new.c +387 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_typ.c +131 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_utl.c +280 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/time_support.c +206 -0
- data/third_party/boringssl-with-bazel/src/crypto/base64/base64.c +466 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/bio.c +700 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/bio_mem.c +330 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/connect.c +545 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/fd.c +279 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/file.c +317 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/hexdump.c +192 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/internal.h +111 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/pair.c +488 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/printf.c +115 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/socket.c +206 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/socket_helper.c +118 -0
- data/third_party/boringssl-with-bazel/src/crypto/bn_extra/bn_asn1.c +64 -0
- data/third_party/boringssl-with-bazel/src/crypto/bn_extra/convert.c +470 -0
- data/third_party/boringssl-with-bazel/src/crypto/buf/buf.c +172 -0
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/asn1_compat.c +52 -0
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/ber.c +265 -0
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbb.c +719 -0
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbs.c +688 -0
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/internal.h +96 -0
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/unicode.c +155 -0
- data/third_party/boringssl-with-bazel/src/crypto/chacha/chacha.c +184 -0
- data/third_party/boringssl-with-bazel/src/crypto/chacha/internal.h +45 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/cipher_extra.c +143 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/derive_key.c +152 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_aesccm.c +447 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_aesctrhmac.c +283 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_aesgcmsiv.c +891 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_chacha20poly1305.c +418 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_null.c +85 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_rc2.c +462 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_rc4.c +87 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_tls.c +688 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/internal.h +128 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/tls_cbc.c +491 -0
- data/third_party/boringssl-with-bazel/src/crypto/cmac/cmac.c +278 -0
- data/third_party/boringssl-with-bazel/src/crypto/conf/conf.c +810 -0
- data/third_party/boringssl-with-bazel/src/crypto/conf/conf_def.h +127 -0
- data/third_party/boringssl-with-bazel/src/crypto/conf/internal.h +31 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu-aarch64-fuchsia.c +55 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu-aarch64-linux.c +62 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu-arm-linux.c +220 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu-arm-linux.h +201 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu-arm.c +38 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu-intel.c +291 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu-ppc64le.c +38 -0
- data/third_party/boringssl-with-bazel/src/crypto/crypto.c +226 -0
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519.c +2159 -0
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519_tables.h +7872 -0
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/internal.h +146 -0
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/spake25519.c +539 -0
- data/third_party/boringssl-with-bazel/src/crypto/dh/check.c +217 -0
- data/third_party/boringssl-with-bazel/src/crypto/dh/dh.c +533 -0
- data/third_party/boringssl-with-bazel/src/crypto/dh/dh_asn1.c +160 -0
- data/third_party/boringssl-with-bazel/src/crypto/dh/params.c +93 -0
- data/third_party/boringssl-with-bazel/src/crypto/digest_extra/digest_extra.c +240 -0
- data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa.c +980 -0
- data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa_asn1.c +339 -0
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_asn1.c +574 -0
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_derive.c +95 -0
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/hash_to_curve.c +425 -0
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/internal.h +78 -0
- data/third_party/boringssl-with-bazel/src/crypto/ecdh_extra/ecdh_extra.c +124 -0
- data/third_party/boringssl-with-bazel/src/crypto/ecdsa_extra/ecdsa_asn1.c +267 -0
- data/third_party/boringssl-with-bazel/src/crypto/engine/engine.c +99 -0
- data/third_party/boringssl-with-bazel/src/crypto/err/err.c +850 -0
- data/third_party/boringssl-with-bazel/src/crypto/err/internal.h +58 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/digestsign.c +231 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/evp.c +443 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/evp_asn1.c +388 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/evp_ctx.c +484 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/internal.h +269 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_dsa_asn1.c +273 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec.c +286 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec_asn1.c +255 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519.c +104 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519_asn1.c +221 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_rsa.c +648 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_rsa_asn1.c +194 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_x25519.c +110 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_x25519_asn1.c +248 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/pbkdf.c +146 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/print.c +489 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/scrypt.c +213 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/sign.c +151 -0
- data/third_party/boringssl-with-bazel/src/crypto/ex_data.c +261 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes.c +108 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes_nohw.c +1282 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/internal.h +238 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/key_wrap.c +236 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/mode_wrappers.c +106 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.c +263 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/add.c +316 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/asm/x86_64-gcc.c +541 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bn.c +445 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bytes.c +230 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/cmp.c +200 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/ctx.c +236 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div.c +886 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div_extra.c +87 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/exponentiation.c +1288 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd.c +378 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd_extra.c +325 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/generic.c +711 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/internal.h +694 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/jacobi.c +146 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery.c +502 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery_inv.c +186 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/mul.c +749 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/prime.c +1068 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/random.c +341 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/rsaz_exp.c +226 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/rsaz_exp.h +104 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/shift.c +364 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/sqrt.c +502 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/aead.c +284 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/cipher.c +620 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aes.c +1302 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_des.c +237 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/internal.h +128 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/delocate.h +89 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/des/des.c +785 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/des/internal.h +240 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digest.c +271 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digests.c +296 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/internal.h +112 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/md32_common.h +268 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec.c +1252 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_key.c +465 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_montgomery.c +524 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/felem.c +100 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/internal.h +775 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/oct.c +328 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p224-64.c +1178 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-x86_64-table.h +9497 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-x86_64.c +632 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-x86_64.h +153 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256.c +736 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256_table.h +297 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/scalar.c +175 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple.c +357 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple_mul.c +270 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/util.c +255 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/wnaf.c +270 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdh/ecdh.c +122 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/ecdsa.c +328 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/fips_shared_support.c +32 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hmac/hmac.c +228 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/is_fips.c +29 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md4/md4.c +256 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md5/internal.h +37 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md5/md5.c +301 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/cbc.c +167 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/cfb.c +202 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/ctr.c +200 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/gcm.c +729 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/gcm_nohw.c +304 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/internal.h +441 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/ofb.c +96 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/polyval.c +91 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/ctrdrbg.c +202 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/fork_detect.c +137 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/fork_detect.h +49 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/getrandom_fillin.h +64 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/internal.h +163 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/rand.c +378 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/urandom.c +391 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/blinding.c +243 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/internal.h +127 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/padding.c +695 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa.c +898 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.c +1358 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.c +654 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/internal.h +53 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha1-altivec.c +361 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha1.c +371 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha256.c +343 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha512.c +544 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/internal.h +39 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/kdf.c +165 -0
- data/third_party/boringssl-with-bazel/src/crypto/hkdf/hkdf.c +112 -0
- data/third_party/boringssl-with-bazel/src/crypto/hrss/hrss.c +2100 -0
- data/third_party/boringssl-with-bazel/src/crypto/hrss/internal.h +61 -0
- data/third_party/boringssl-with-bazel/src/crypto/internal.h +834 -0
- data/third_party/boringssl-with-bazel/src/crypto/lhash/lhash.c +348 -0
- data/third_party/boringssl-with-bazel/src/crypto/mem.c +359 -0
- data/third_party/boringssl-with-bazel/src/crypto/obj/obj.c +549 -0
- data/third_party/boringssl-with-bazel/src/crypto/obj/obj_dat.h +11585 -0
- data/third_party/boringssl-with-bazel/src/crypto/obj/obj_xref.c +122 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_all.c +261 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_info.c +360 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_lib.c +777 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_oth.c +87 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pk8.c +257 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pkey.c +218 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_x509.c +65 -0
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_xaux.c +65 -0
- data/third_party/boringssl-with-bazel/src/crypto/pkcs7/internal.h +49 -0
- data/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7.c +159 -0
- data/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7_x509.c +385 -0
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/internal.h +131 -0
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/p5_pbev2.c +316 -0
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8.c +530 -0
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.c +1305 -0
- data/third_party/boringssl-with-bazel/src/crypto/poly1305/internal.h +41 -0
- data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305.c +318 -0
- data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_arm.c +305 -0
- data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_vec.c +856 -0
- data/third_party/boringssl-with-bazel/src/crypto/pool/internal.h +45 -0
- data/third_party/boringssl-with-bazel/src/crypto/pool/pool.c +220 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/deterministic.c +52 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/forkunsafe.c +46 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/fuchsia.c +30 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/rand_extra.c +70 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/windows.c +69 -0
- data/third_party/boringssl-with-bazel/src/crypto/rc4/rc4.c +98 -0
- data/third_party/boringssl-with-bazel/src/crypto/refcount_c11.c +67 -0
- data/third_party/boringssl-with-bazel/src/crypto/refcount_lock.c +53 -0
- data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/rsa_asn1.c +325 -0
- data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/rsa_print.c +22 -0
- data/third_party/boringssl-with-bazel/src/crypto/siphash/siphash.c +82 -0
- data/third_party/boringssl-with-bazel/src/crypto/stack/stack.c +431 -0
- data/third_party/boringssl-with-bazel/src/crypto/thread.c +110 -0
- data/third_party/boringssl-with-bazel/src/crypto/thread_none.c +59 -0
- data/third_party/boringssl-with-bazel/src/crypto/thread_pthread.c +210 -0
- data/third_party/boringssl-with-bazel/src/crypto/thread_win.c +260 -0
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/internal.h +278 -0
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/pmbtoken.c +1474 -0
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/trust_token.c +720 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/a_digest.c +96 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/a_sign.c +128 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/a_strex.c +653 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/a_verify.c +114 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/algorithm.c +153 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/asn1_gen.c +842 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/by_dir.c +458 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/by_file.c +275 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/charmap.h +15 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/i2d_pr.c +83 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/internal.h +66 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/rsa_pss.c +385 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/t_crl.c +125 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/t_req.c +244 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/t_x509.c +544 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/t_x509a.c +111 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/vpm_int.h +71 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509.c +157 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_att.c +381 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_cmp.c +476 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_d2.c +106 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_def.c +103 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_ext.c +206 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_lu.c +834 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_obj.c +198 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_r2x.c +116 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_req.c +341 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_set.c +185 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_trs.c +326 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_txt.c +204 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_v3.c +278 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c +2487 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vpm.c +671 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509cset.c +210 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509name.c +389 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509rset.c +81 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509spki.c +137 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_algor.c +151 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_all.c +399 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_attrib.c +111 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_crl.c +541 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_exten.c +75 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_info.c +98 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_name.c +554 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_pkey.c +106 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_pubkey.c +368 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_req.c +109 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_sig.c +69 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_spki.c +80 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_val.c +69 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509.c +334 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509a.c +198 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/ext_dat.h +141 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/internal.h +56 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_cache.c +286 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_data.c +130 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_int.h +217 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_lib.c +155 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_map.c +130 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_node.c +189 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_tree.c +842 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_akey.c +207 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_akeya.c +72 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_alt.c +629 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_bcons.c +133 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_bitst.c +141 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_conf.c +463 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_cpols.c +503 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_crld.c +561 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_enum.c +100 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_extku.c +148 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_genn.c +246 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_ia5.c +122 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_info.c +218 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_int.c +91 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_lib.c +371 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_ncons.c +501 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_ocsp.c +68 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pci.c +288 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pcia.c +57 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pcons.c +139 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pku.c +110 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pmaps.c +154 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_prn.c +229 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_purp.c +843 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_skey.c +155 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_sxnet.c +274 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_utl.c +1395 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/aead.h +459 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/aes.h +195 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/arm_arch.h +121 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +911 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/asn1_mac.h +18 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/asn1t.h +892 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/base.h +575 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/base64.h +190 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/bio.h +933 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/blowfish.h +93 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/bn.h +1057 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/buf.h +137 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/buffer.h +18 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/bytestring.h +561 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/cast.h +96 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/chacha.h +41 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/cipher.h +638 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/cmac.h +91 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/conf.h +180 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/cpu.h +212 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/crypto.h +149 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/curve25519.h +201 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/des.h +177 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/dh.h +319 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/digest.h +331 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/dsa.h +457 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/dtls1.h +16 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/e_os2.h +18 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/ec.h +424 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/ec_key.h +372 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/ecdh.h +118 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/ecdsa.h +205 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/engine.h +109 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/err.h +465 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/evp.h +1050 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/ex_data.h +203 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/hkdf.h +64 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/hmac.h +186 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/hrss.h +100 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/is_boringssl.h +16 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/lhash.h +282 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/md4.h +108 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/md5.h +109 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/mem.h +175 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/nid.h +4259 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/obj.h +236 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/obj_mac.h +18 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/objects.h +18 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/opensslconf.h +67 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/opensslv.h +18 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/ossl_typ.h +18 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/pem.h +435 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/pkcs12.h +18 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/pkcs7.h +215 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/pkcs8.h +269 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/poly1305.h +49 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/pool.h +102 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/rand.h +111 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/rc4.h +96 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/ripemd.h +108 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/rsa.h +818 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/safestack.h +16 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/sha.h +294 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/siphash.h +37 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/span.h +199 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/srtp.h +18 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +5198 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/ssl3.h +333 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/stack.h +542 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/thread.h +191 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/tls1.h +632 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/trust_token.h +291 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/type_check.h +90 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +1207 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/x509_vfy.h +681 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/x509v3.h +831 -0
- data/third_party/boringssl-with-bazel/src/ssl/bio_ssl.cc +179 -0
- data/third_party/boringssl-with-bazel/src/ssl/d1_both.cc +837 -0
- data/third_party/boringssl-with-bazel/src/ssl/d1_lib.cc +268 -0
- data/third_party/boringssl-with-bazel/src/ssl/d1_pkt.cc +273 -0
- data/third_party/boringssl-with-bazel/src/ssl/d1_srtp.cc +232 -0
- data/third_party/boringssl-with-bazel/src/ssl/dtls_method.cc +200 -0
- data/third_party/boringssl-with-bazel/src/ssl/dtls_record.cc +353 -0
- data/third_party/boringssl-with-bazel/src/ssl/handoff.cc +675 -0
- data/third_party/boringssl-with-bazel/src/ssl/handshake.cc +703 -0
- data/third_party/boringssl-with-bazel/src/ssl/handshake_client.cc +1890 -0
- data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +1805 -0
- data/third_party/boringssl-with-bazel/src/ssl/internal.h +3572 -0
- data/third_party/boringssl-with-bazel/src/ssl/s3_both.cc +724 -0
- data/third_party/boringssl-with-bazel/src/ssl/s3_lib.cc +221 -0
- data/third_party/boringssl-with-bazel/src/ssl/s3_pkt.cc +458 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_aead_ctx.cc +432 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_asn1.cc +856 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_buffer.cc +306 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_cert.cc +1019 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_cipher.cc +1718 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_file.cc +585 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_key_share.cc +397 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +3015 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_privkey.cc +835 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_session.cc +1333 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_stat.cc +230 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_transcript.cc +277 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_versions.cc +394 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_x509.cc +1358 -0
- data/third_party/boringssl-with-bazel/src/ssl/t1_enc.cc +365 -0
- data/third_party/boringssl-with-bazel/src/ssl/t1_lib.cc +3870 -0
- data/third_party/boringssl-with-bazel/src/ssl/tls13_both.cc +689 -0
- data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +1017 -0
- data/third_party/boringssl-with-bazel/src/ssl/tls13_enc.cc +513 -0
- data/third_party/boringssl-with-bazel/src/ssl/tls13_server.cc +1096 -0
- data/third_party/boringssl-with-bazel/src/ssl/tls_method.cc +317 -0
- data/third_party/boringssl-with-bazel/src/ssl/tls_record.cc +703 -0
- data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_32.h +981 -0
- data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_64.h +619 -0
- data/third_party/boringssl-with-bazel/src/third_party/fiat/p256_32.h +3147 -0
- data/third_party/boringssl-with-bazel/src/third_party/fiat/p256_64.h +1226 -0
- data/third_party/cares/ares_build.h +223 -0
- data/third_party/cares/cares/ares.h +670 -0
- data/third_party/cares/cares/ares__close_sockets.c +61 -0
- data/third_party/cares/cares/ares__get_hostent.c +261 -0
- data/third_party/cares/cares/ares__read_line.c +73 -0
- data/third_party/cares/cares/ares__timeval.c +111 -0
- data/third_party/cares/cares/ares_cancel.c +63 -0
- data/third_party/cares/cares/ares_create_query.c +206 -0
- data/third_party/cares/cares/ares_data.c +222 -0
- data/third_party/cares/cares/ares_data.h +72 -0
- data/third_party/cares/cares/ares_destroy.c +113 -0
- data/third_party/cares/cares/ares_dns.h +103 -0
- data/third_party/cares/cares/ares_expand_name.c +209 -0
- data/third_party/cares/cares/ares_expand_string.c +70 -0
- data/third_party/cares/cares/ares_fds.c +59 -0
- data/third_party/cares/cares/ares_free_hostent.c +41 -0
- data/third_party/cares/cares/ares_free_string.c +25 -0
- data/third_party/cares/cares/ares_getenv.c +30 -0
- data/third_party/cares/cares/ares_getenv.h +26 -0
- data/third_party/cares/cares/ares_gethostbyaddr.c +294 -0
- data/third_party/cares/cares/ares_gethostbyname.c +529 -0
- data/third_party/cares/cares/ares_getnameinfo.c +453 -0
- data/third_party/cares/cares/ares_getopt.c +122 -0
- data/third_party/cares/cares/ares_getopt.h +53 -0
- data/third_party/cares/cares/ares_getsock.c +66 -0
- data/third_party/cares/cares/ares_inet_net_pton.h +25 -0
- data/third_party/cares/cares/ares_init.c +2615 -0
- data/third_party/cares/cares/ares_iphlpapi.h +221 -0
- data/third_party/cares/cares/ares_ipv6.h +78 -0
- data/third_party/cares/cares/ares_library_init.c +195 -0
- data/third_party/cares/cares/ares_library_init.h +43 -0
- data/third_party/cares/cares/ares_llist.c +63 -0
- data/third_party/cares/cares/ares_llist.h +39 -0
- data/third_party/cares/cares/ares_mkquery.c +24 -0
- data/third_party/cares/cares/ares_nowarn.c +260 -0
- data/third_party/cares/cares/ares_nowarn.h +61 -0
- data/third_party/cares/cares/ares_options.c +406 -0
- data/third_party/cares/cares/ares_parse_a_reply.c +264 -0
- data/third_party/cares/cares/ares_parse_aaaa_reply.c +264 -0
- data/third_party/cares/cares/ares_parse_mx_reply.c +170 -0
- data/third_party/cares/cares/ares_parse_naptr_reply.c +194 -0
- data/third_party/cares/cares/ares_parse_ns_reply.c +183 -0
- data/third_party/cares/cares/ares_parse_ptr_reply.c +221 -0
- data/third_party/cares/cares/ares_parse_soa_reply.c +133 -0
- data/third_party/cares/cares/ares_parse_srv_reply.c +179 -0
- data/third_party/cares/cares/ares_parse_txt_reply.c +220 -0
- data/third_party/cares/cares/ares_platform.c +11042 -0
- data/third_party/cares/cares/ares_platform.h +43 -0
- data/third_party/cares/cares/ares_private.h +382 -0
- data/third_party/cares/cares/ares_process.c +1473 -0
- data/third_party/cares/cares/ares_query.c +186 -0
- data/third_party/cares/cares/ares_rules.h +125 -0
- data/third_party/cares/cares/ares_search.c +323 -0
- data/third_party/cares/cares/ares_send.c +137 -0
- data/third_party/cares/cares/ares_setup.h +217 -0
- data/third_party/cares/cares/ares_strcasecmp.c +66 -0
- data/third_party/cares/cares/ares_strcasecmp.h +30 -0
- data/third_party/cares/cares/ares_strdup.c +49 -0
- data/third_party/cares/cares/ares_strdup.h +24 -0
- data/third_party/cares/cares/ares_strerror.c +56 -0
- data/third_party/cares/cares/ares_strsplit.c +174 -0
- data/third_party/cares/cares/ares_strsplit.h +43 -0
- data/third_party/cares/cares/ares_timeout.c +88 -0
- data/third_party/cares/cares/ares_version.c +11 -0
- data/third_party/cares/cares/ares_version.h +24 -0
- data/third_party/cares/cares/ares_writev.c +79 -0
- data/third_party/cares/cares/bitncmp.c +59 -0
- data/third_party/cares/cares/bitncmp.h +26 -0
- data/third_party/cares/cares/config-win32.h +351 -0
- data/third_party/cares/cares/inet_net_pton.c +450 -0
- data/third_party/cares/cares/inet_ntop.c +207 -0
- data/third_party/cares/cares/setup_once.h +554 -0
- data/third_party/cares/cares/windows_port.c +22 -0
- data/third_party/cares/config_darwin/ares_config.h +428 -0
- data/third_party/cares/config_freebsd/ares_config.h +505 -0
- data/third_party/cares/config_linux/ares_config.h +461 -0
- data/third_party/cares/config_openbsd/ares_config.h +505 -0
- data/third_party/upb/upb/decode.c +609 -0
- data/third_party/upb/upb/decode.h +21 -0
- data/third_party/upb/upb/encode.c +378 -0
- data/third_party/upb/upb/encode.h +21 -0
- data/third_party/upb/upb/generated_util.h +105 -0
- data/third_party/upb/upb/msg.c +111 -0
- data/third_party/upb/upb/msg.h +69 -0
- data/third_party/upb/upb/port.c +26 -0
- data/third_party/upb/upb/port_def.inc +150 -0
- data/third_party/upb/upb/port_undef.inc +21 -0
- data/third_party/upb/upb/table.c +913 -0
- data/third_party/upb/upb/table.int.h +507 -0
- data/third_party/upb/upb/upb.c +261 -0
- data/third_party/upb/upb/upb.h +364 -0
- data/third_party/zlib/adler32.c +186 -0
- data/third_party/zlib/compress.c +86 -0
- data/third_party/zlib/crc32.c +442 -0
- data/third_party/zlib/crc32.h +441 -0
- data/third_party/zlib/deflate.c +2163 -0
- data/third_party/zlib/deflate.h +349 -0
- data/third_party/zlib/gzclose.c +25 -0
- data/third_party/zlib/gzguts.h +218 -0
- data/third_party/zlib/gzlib.c +637 -0
- data/third_party/zlib/gzread.c +654 -0
- data/third_party/zlib/gzwrite.c +665 -0
- data/third_party/zlib/infback.c +640 -0
- data/third_party/zlib/inffast.c +323 -0
- data/third_party/zlib/inffast.h +11 -0
- data/third_party/zlib/inffixed.h +94 -0
- data/third_party/zlib/inflate.c +1561 -0
- data/third_party/zlib/inflate.h +125 -0
- data/third_party/zlib/inftrees.c +304 -0
- data/third_party/zlib/inftrees.h +62 -0
- data/third_party/zlib/trees.c +1203 -0
- data/third_party/zlib/trees.h +128 -0
- data/third_party/zlib/uncompr.c +93 -0
- data/third_party/zlib/zconf.h +534 -0
- data/third_party/zlib/zlib.h +1912 -0
- data/third_party/zlib/zutil.c +325 -0
- data/third_party/zlib/zutil.h +271 -0
- metadata +2029 -0
@@ -0,0 +1,56 @@
|
|
1
|
+
/*
|
2
|
+
*
|
3
|
+
* Copyright 2016 gRPC authors.
|
4
|
+
*
|
5
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
* you may not use this file except in compliance with the License.
|
7
|
+
* You may obtain a copy of the License at
|
8
|
+
*
|
9
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
*
|
11
|
+
* Unless required by applicable law or agreed to in writing, software
|
12
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
* See the License for the specific language governing permissions and
|
15
|
+
* limitations under the License.
|
16
|
+
*
|
17
|
+
*/
|
18
|
+
|
19
|
+
#ifndef GRPC_CORE_EXT_TRANSPORT_CHTTP2_TRANSPORT_BIN_DECODER_H
|
20
|
+
#define GRPC_CORE_EXT_TRANSPORT_CHTTP2_TRANSPORT_BIN_DECODER_H
|
21
|
+
|
22
|
+
#include <grpc/support/port_platform.h>
|
23
|
+
|
24
|
+
#include <grpc/slice.h>
|
25
|
+
#include <stdbool.h>
|
26
|
+
|
27
|
+
struct grpc_base64_decode_context {
|
28
|
+
/* input/output: */
|
29
|
+
const uint8_t* input_cur;
|
30
|
+
const uint8_t* input_end;
|
31
|
+
uint8_t* output_cur;
|
32
|
+
uint8_t* output_end;
|
33
|
+
/* Indicate if the decoder should handle the tail of input data*/
|
34
|
+
bool contains_tail;
|
35
|
+
};
|
36
|
+
|
37
|
+
/* base64 decode a grpc_base64_decode_context util either input_end is reached
|
38
|
+
or output_end is reached. When input_end is reached, (input_end - input_cur)
|
39
|
+
is less than 4. When output_end is reached, (output_end - output_cur) is less
|
40
|
+
than 3. Returns false if decoding is failed. */
|
41
|
+
bool grpc_base64_decode_partial(struct grpc_base64_decode_context* ctx);
|
42
|
+
|
43
|
+
/* base64 decode a slice with pad chars. Returns a new slice, does not take
|
44
|
+
ownership of the input. Returns an empty slice if decoding is failed. */
|
45
|
+
grpc_slice grpc_chttp2_base64_decode(const grpc_slice& input);
|
46
|
+
|
47
|
+
/* base64 decode a slice without pad chars, data length is needed. Returns a new
|
48
|
+
slice, does not take ownership of the input. Returns an empty slice if
|
49
|
+
decoding is failed. */
|
50
|
+
grpc_slice grpc_chttp2_base64_decode_with_length(const grpc_slice& input,
|
51
|
+
size_t output_length);
|
52
|
+
|
53
|
+
/* Infer the length of decoded data from encoded data. */
|
54
|
+
size_t grpc_chttp2_base64_infer_length_after_decode(const grpc_slice& slice);
|
55
|
+
|
56
|
+
#endif /* GRPC_CORE_EXT_TRANSPORT_CHTTP2_TRANSPORT_BIN_DECODER_H */
|
@@ -0,0 +1,230 @@
|
|
1
|
+
/*
|
2
|
+
*
|
3
|
+
* Copyright 2015 gRPC authors.
|
4
|
+
*
|
5
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
* you may not use this file except in compliance with the License.
|
7
|
+
* You may obtain a copy of the License at
|
8
|
+
*
|
9
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
*
|
11
|
+
* Unless required by applicable law or agreed to in writing, software
|
12
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
* See the License for the specific language governing permissions and
|
15
|
+
* limitations under the License.
|
16
|
+
*
|
17
|
+
*/
|
18
|
+
|
19
|
+
#include <grpc/support/port_platform.h>
|
20
|
+
|
21
|
+
#include "src/core/ext/transport/chttp2/transport/bin_encoder.h"
|
22
|
+
|
23
|
+
#include <string.h>
|
24
|
+
|
25
|
+
#include <grpc/support/log.h>
|
26
|
+
#include "src/core/ext/transport/chttp2/transport/huffsyms.h"
|
27
|
+
|
28
|
+
static const char alphabet[] =
|
29
|
+
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
|
30
|
+
|
31
|
+
struct b64_huff_sym {
|
32
|
+
uint16_t bits;
|
33
|
+
uint8_t length;
|
34
|
+
};
|
35
|
+
static const b64_huff_sym huff_alphabet[64] = {
|
36
|
+
{0x21, 6}, {0x5d, 7}, {0x5e, 7}, {0x5f, 7}, {0x60, 7}, {0x61, 7},
|
37
|
+
{0x62, 7}, {0x63, 7}, {0x64, 7}, {0x65, 7}, {0x66, 7}, {0x67, 7},
|
38
|
+
{0x68, 7}, {0x69, 7}, {0x6a, 7}, {0x6b, 7}, {0x6c, 7}, {0x6d, 7},
|
39
|
+
{0x6e, 7}, {0x6f, 7}, {0x70, 7}, {0x71, 7}, {0x72, 7}, {0xfc, 8},
|
40
|
+
{0x73, 7}, {0xfd, 8}, {0x3, 5}, {0x23, 6}, {0x4, 5}, {0x24, 6},
|
41
|
+
{0x5, 5}, {0x25, 6}, {0x26, 6}, {0x27, 6}, {0x6, 5}, {0x74, 7},
|
42
|
+
{0x75, 7}, {0x28, 6}, {0x29, 6}, {0x2a, 6}, {0x7, 5}, {0x2b, 6},
|
43
|
+
{0x76, 7}, {0x2c, 6}, {0x8, 5}, {0x9, 5}, {0x2d, 6}, {0x77, 7},
|
44
|
+
{0x78, 7}, {0x79, 7}, {0x7a, 7}, {0x7b, 7}, {0x0, 5}, {0x1, 5},
|
45
|
+
{0x2, 5}, {0x19, 6}, {0x1a, 6}, {0x1b, 6}, {0x1c, 6}, {0x1d, 6},
|
46
|
+
{0x1e, 6}, {0x1f, 6}, {0x7fb, 11}, {0x18, 6}};
|
47
|
+
|
48
|
+
static const uint8_t tail_xtra[3] = {0, 2, 3};
|
49
|
+
|
50
|
+
grpc_slice grpc_chttp2_base64_encode(const grpc_slice& input) {
|
51
|
+
size_t input_length = GRPC_SLICE_LENGTH(input);
|
52
|
+
size_t input_triplets = input_length / 3;
|
53
|
+
size_t tail_case = input_length % 3;
|
54
|
+
size_t output_length = input_triplets * 4 + tail_xtra[tail_case];
|
55
|
+
grpc_slice output = GRPC_SLICE_MALLOC(output_length);
|
56
|
+
const uint8_t* in = GRPC_SLICE_START_PTR(input);
|
57
|
+
char* out = reinterpret_cast<char*> GRPC_SLICE_START_PTR(output);
|
58
|
+
size_t i;
|
59
|
+
|
60
|
+
/* encode full triplets */
|
61
|
+
for (i = 0; i < input_triplets; i++) {
|
62
|
+
out[0] = alphabet[in[0] >> 2];
|
63
|
+
out[1] = alphabet[((in[0] & 0x3) << 4) | (in[1] >> 4)];
|
64
|
+
out[2] = alphabet[((in[1] & 0xf) << 2) | (in[2] >> 6)];
|
65
|
+
out[3] = alphabet[in[2] & 0x3f];
|
66
|
+
out += 4;
|
67
|
+
in += 3;
|
68
|
+
}
|
69
|
+
|
70
|
+
/* encode the remaining bytes */
|
71
|
+
switch (tail_case) {
|
72
|
+
case 0:
|
73
|
+
break;
|
74
|
+
case 1:
|
75
|
+
out[0] = alphabet[in[0] >> 2];
|
76
|
+
out[1] = alphabet[(in[0] & 0x3) << 4];
|
77
|
+
out += 2;
|
78
|
+
in += 1;
|
79
|
+
break;
|
80
|
+
case 2:
|
81
|
+
out[0] = alphabet[in[0] >> 2];
|
82
|
+
out[1] = alphabet[((in[0] & 0x3) << 4) | (in[1] >> 4)];
|
83
|
+
out[2] = alphabet[(in[1] & 0xf) << 2];
|
84
|
+
out += 3;
|
85
|
+
in += 2;
|
86
|
+
break;
|
87
|
+
}
|
88
|
+
|
89
|
+
GPR_ASSERT(out == (char*)GRPC_SLICE_END_PTR(output));
|
90
|
+
GPR_ASSERT(in == GRPC_SLICE_END_PTR(input));
|
91
|
+
return output;
|
92
|
+
}
|
93
|
+
|
94
|
+
grpc_slice grpc_chttp2_huffman_compress(const grpc_slice& input) {
|
95
|
+
size_t nbits;
|
96
|
+
const uint8_t* in;
|
97
|
+
uint8_t* out;
|
98
|
+
grpc_slice output;
|
99
|
+
uint32_t temp = 0;
|
100
|
+
uint32_t temp_length = 0;
|
101
|
+
|
102
|
+
nbits = 0;
|
103
|
+
for (in = GRPC_SLICE_START_PTR(input); in != GRPC_SLICE_END_PTR(input);
|
104
|
+
++in) {
|
105
|
+
nbits += grpc_chttp2_huffsyms[*in].length;
|
106
|
+
}
|
107
|
+
|
108
|
+
output = GRPC_SLICE_MALLOC(nbits / 8 + (nbits % 8 != 0));
|
109
|
+
out = GRPC_SLICE_START_PTR(output);
|
110
|
+
for (in = GRPC_SLICE_START_PTR(input); in != GRPC_SLICE_END_PTR(input);
|
111
|
+
++in) {
|
112
|
+
int sym = *in;
|
113
|
+
temp <<= grpc_chttp2_huffsyms[sym].length;
|
114
|
+
temp |= grpc_chttp2_huffsyms[sym].bits;
|
115
|
+
temp_length += grpc_chttp2_huffsyms[sym].length;
|
116
|
+
|
117
|
+
while (temp_length > 8) {
|
118
|
+
temp_length -= 8;
|
119
|
+
*out++ = static_cast<uint8_t>(temp >> temp_length);
|
120
|
+
}
|
121
|
+
}
|
122
|
+
|
123
|
+
if (temp_length) {
|
124
|
+
/* NB: the following integer arithmetic operation needs to be in its
|
125
|
+
* expanded form due to the "integral promotion" performed (see section
|
126
|
+
* 3.2.1.1 of the C89 draft standard). A cast to the smaller container type
|
127
|
+
* is then required to avoid the compiler warning */
|
128
|
+
*out++ =
|
129
|
+
static_cast<uint8_t>(static_cast<uint8_t>(temp << (8u - temp_length)) |
|
130
|
+
static_cast<uint8_t>(0xffu >> temp_length));
|
131
|
+
}
|
132
|
+
|
133
|
+
GPR_ASSERT(out == GRPC_SLICE_END_PTR(output));
|
134
|
+
|
135
|
+
return output;
|
136
|
+
}
|
137
|
+
|
138
|
+
struct huff_out {
|
139
|
+
uint32_t temp;
|
140
|
+
uint32_t temp_length;
|
141
|
+
uint8_t* out;
|
142
|
+
};
|
143
|
+
static void enc_flush_some(huff_out* out) {
|
144
|
+
while (out->temp_length > 8) {
|
145
|
+
out->temp_length -= 8;
|
146
|
+
*out->out++ = static_cast<uint8_t>(out->temp >> out->temp_length);
|
147
|
+
}
|
148
|
+
}
|
149
|
+
|
150
|
+
static void enc_add2(huff_out* out, uint8_t a, uint8_t b) {
|
151
|
+
b64_huff_sym sa = huff_alphabet[a];
|
152
|
+
b64_huff_sym sb = huff_alphabet[b];
|
153
|
+
out->temp = (out->temp << (sa.length + sb.length)) |
|
154
|
+
(static_cast<uint32_t>(sa.bits) << sb.length) | sb.bits;
|
155
|
+
out->temp_length +=
|
156
|
+
static_cast<uint32_t>(sa.length) + static_cast<uint32_t>(sb.length);
|
157
|
+
enc_flush_some(out);
|
158
|
+
}
|
159
|
+
|
160
|
+
static void enc_add1(huff_out* out, uint8_t a) {
|
161
|
+
b64_huff_sym sa = huff_alphabet[a];
|
162
|
+
out->temp = (out->temp << sa.length) | sa.bits;
|
163
|
+
out->temp_length += sa.length;
|
164
|
+
enc_flush_some(out);
|
165
|
+
}
|
166
|
+
|
167
|
+
grpc_slice grpc_chttp2_base64_encode_and_huffman_compress(
|
168
|
+
const grpc_slice& input) {
|
169
|
+
size_t input_length = GRPC_SLICE_LENGTH(input);
|
170
|
+
size_t input_triplets = input_length / 3;
|
171
|
+
size_t tail_case = input_length % 3;
|
172
|
+
size_t output_syms = input_triplets * 4 + tail_xtra[tail_case];
|
173
|
+
size_t max_output_bits = 11 * output_syms;
|
174
|
+
size_t max_output_length = max_output_bits / 8 + (max_output_bits % 8 != 0);
|
175
|
+
grpc_slice output = GRPC_SLICE_MALLOC(max_output_length);
|
176
|
+
const uint8_t* in = GRPC_SLICE_START_PTR(input);
|
177
|
+
uint8_t* start_out = GRPC_SLICE_START_PTR(output);
|
178
|
+
huff_out out;
|
179
|
+
size_t i;
|
180
|
+
|
181
|
+
out.temp = 0;
|
182
|
+
out.temp_length = 0;
|
183
|
+
out.out = start_out;
|
184
|
+
|
185
|
+
/* encode full triplets */
|
186
|
+
for (i = 0; i < input_triplets; i++) {
|
187
|
+
const uint8_t low_to_high = static_cast<uint8_t>((in[0] & 0x3) << 4);
|
188
|
+
const uint8_t high_to_low = in[1] >> 4;
|
189
|
+
enc_add2(&out, in[0] >> 2, low_to_high | high_to_low);
|
190
|
+
|
191
|
+
const uint8_t a = static_cast<uint8_t>((in[1] & 0xf) << 2);
|
192
|
+
const uint8_t b = (in[2] >> 6);
|
193
|
+
enc_add2(&out, a | b, in[2] & 0x3f);
|
194
|
+
in += 3;
|
195
|
+
}
|
196
|
+
|
197
|
+
/* encode the remaining bytes */
|
198
|
+
switch (tail_case) {
|
199
|
+
case 0:
|
200
|
+
break;
|
201
|
+
case 1:
|
202
|
+
enc_add2(&out, in[0] >> 2, static_cast<uint8_t>((in[0] & 0x3) << 4));
|
203
|
+
in += 1;
|
204
|
+
break;
|
205
|
+
case 2: {
|
206
|
+
const uint8_t low_to_high = static_cast<uint8_t>((in[0] & 0x3) << 4);
|
207
|
+
const uint8_t high_to_low = in[1] >> 4;
|
208
|
+
enc_add2(&out, in[0] >> 2, low_to_high | high_to_low);
|
209
|
+
enc_add1(&out, static_cast<uint8_t>((in[1] & 0xf) << 2));
|
210
|
+
in += 2;
|
211
|
+
break;
|
212
|
+
}
|
213
|
+
}
|
214
|
+
|
215
|
+
if (out.temp_length) {
|
216
|
+
/* NB: the following integer arithmetic operation needs to be in its
|
217
|
+
* expanded form due to the "integral promotion" performed (see section
|
218
|
+
* 3.2.1.1 of the C89 draft standard). A cast to the smaller container type
|
219
|
+
* is then required to avoid the compiler warning */
|
220
|
+
*out.out++ = static_cast<uint8_t>(
|
221
|
+
static_cast<uint8_t>(out.temp << (8u - out.temp_length)) |
|
222
|
+
static_cast<uint8_t>(0xffu >> out.temp_length));
|
223
|
+
}
|
224
|
+
|
225
|
+
GPR_ASSERT(out.out <= GRPC_SLICE_END_PTR(output));
|
226
|
+
GRPC_SLICE_SET_LENGTH(output, out.out - start_out);
|
227
|
+
|
228
|
+
GPR_ASSERT(in == GRPC_SLICE_END_PTR(input));
|
229
|
+
return output;
|
230
|
+
}
|
@@ -0,0 +1,42 @@
|
|
1
|
+
/*
|
2
|
+
*
|
3
|
+
* Copyright 2015 gRPC authors.
|
4
|
+
*
|
5
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
* you may not use this file except in compliance with the License.
|
7
|
+
* You may obtain a copy of the License at
|
8
|
+
*
|
9
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
*
|
11
|
+
* Unless required by applicable law or agreed to in writing, software
|
12
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
* See the License for the specific language governing permissions and
|
15
|
+
* limitations under the License.
|
16
|
+
*
|
17
|
+
*/
|
18
|
+
|
19
|
+
#ifndef GRPC_CORE_EXT_TRANSPORT_CHTTP2_TRANSPORT_BIN_ENCODER_H
|
20
|
+
#define GRPC_CORE_EXT_TRANSPORT_CHTTP2_TRANSPORT_BIN_ENCODER_H
|
21
|
+
|
22
|
+
#include <grpc/support/port_platform.h>
|
23
|
+
|
24
|
+
#include <grpc/slice.h>
|
25
|
+
|
26
|
+
/* base64 encode a slice. Returns a new slice, does not take ownership of the
|
27
|
+
input */
|
28
|
+
grpc_slice grpc_chttp2_base64_encode(const grpc_slice& input);
|
29
|
+
|
30
|
+
/* Compress a slice with the static huffman encoder detailed in the hpack
|
31
|
+
standard. Returns a new slice, does not take ownership of the input */
|
32
|
+
grpc_slice grpc_chttp2_huffman_compress(const grpc_slice& input);
|
33
|
+
|
34
|
+
/* equivalent to:
|
35
|
+
grpc_slice x = grpc_chttp2_base64_encode(input);
|
36
|
+
grpc_slice y = grpc_chttp2_huffman_compress(x);
|
37
|
+
grpc_slice_unref_internal( x);
|
38
|
+
return y; */
|
39
|
+
grpc_slice grpc_chttp2_base64_encode_and_huffman_compress(
|
40
|
+
const grpc_slice& input);
|
41
|
+
|
42
|
+
#endif /* GRPC_CORE_EXT_TRANSPORT_CHTTP2_TRANSPORT_BIN_ENCODER_H */
|
@@ -0,0 +1,37 @@
|
|
1
|
+
/*
|
2
|
+
*
|
3
|
+
* Copyright 2015 gRPC authors.
|
4
|
+
*
|
5
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
* you may not use this file except in compliance with the License.
|
7
|
+
* You may obtain a copy of the License at
|
8
|
+
*
|
9
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
*
|
11
|
+
* Unless required by applicable law or agreed to in writing, software
|
12
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
* See the License for the specific language governing permissions and
|
15
|
+
* limitations under the License.
|
16
|
+
*
|
17
|
+
*/
|
18
|
+
|
19
|
+
#include <grpc/support/port_platform.h>
|
20
|
+
|
21
|
+
#include "src/core/ext/transport/chttp2/transport/chttp2_transport.h"
|
22
|
+
#include "src/core/lib/debug/trace.h"
|
23
|
+
#include "src/core/lib/gprpp/global_config.h"
|
24
|
+
#include "src/core/lib/transport/metadata.h"
|
25
|
+
|
26
|
+
GPR_GLOBAL_CONFIG_DEFINE_BOOL(
|
27
|
+
grpc_experimental_disable_flow_control, false,
|
28
|
+
"If set, flow control will be effectively disabled. Max out all values and "
|
29
|
+
"assume the remote peer does the same. Thus we can ignore any flow control "
|
30
|
+
"bookkeeping, error checking, and decision making");
|
31
|
+
|
32
|
+
void grpc_chttp2_plugin_init(void) {
|
33
|
+
g_flow_control_enabled =
|
34
|
+
!GPR_GLOBAL_CONFIG_GET(grpc_experimental_disable_flow_control);
|
35
|
+
}
|
36
|
+
|
37
|
+
void grpc_chttp2_plugin_shutdown(void) {}
|
@@ -0,0 +1,3346 @@
|
|
1
|
+
/*
|
2
|
+
*
|
3
|
+
* Copyright 2018 gRPC authors.
|
4
|
+
*
|
5
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
* you may not use this file except in compliance with the License.
|
7
|
+
* You may obtain a copy of the License at
|
8
|
+
*
|
9
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
*
|
11
|
+
* Unless required by applicable law or agreed to in writing, software
|
12
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
* See the License for the specific language governing permissions and
|
15
|
+
* limitations under the License.
|
16
|
+
*
|
17
|
+
*/
|
18
|
+
|
19
|
+
#include <grpc/support/port_platform.h>
|
20
|
+
|
21
|
+
#include "src/core/ext/transport/chttp2/transport/chttp2_transport.h"
|
22
|
+
|
23
|
+
#include <grpc/slice_buffer.h>
|
24
|
+
#include <grpc/support/alloc.h>
|
25
|
+
#include <grpc/support/log.h>
|
26
|
+
#include <grpc/support/port_platform.h>
|
27
|
+
#include <grpc/support/string_util.h>
|
28
|
+
#include <inttypes.h>
|
29
|
+
#include <limits.h>
|
30
|
+
#include <math.h>
|
31
|
+
#include <stdio.h>
|
32
|
+
#include <string.h>
|
33
|
+
|
34
|
+
#include "absl/strings/str_format.h"
|
35
|
+
#include "src/core/ext/transport/chttp2/transport/context_list.h"
|
36
|
+
#include "src/core/ext/transport/chttp2/transport/frame_data.h"
|
37
|
+
#include "src/core/ext/transport/chttp2/transport/internal.h"
|
38
|
+
#include "src/core/ext/transport/chttp2/transport/varint.h"
|
39
|
+
#include "src/core/lib/channel/channel_args.h"
|
40
|
+
#include "src/core/lib/compression/stream_compression.h"
|
41
|
+
#include "src/core/lib/debug/stats.h"
|
42
|
+
#include "src/core/lib/gpr/env.h"
|
43
|
+
#include "src/core/lib/gpr/string.h"
|
44
|
+
#include "src/core/lib/gprpp/memory.h"
|
45
|
+
#include "src/core/lib/http/parser.h"
|
46
|
+
#include "src/core/lib/iomgr/executor.h"
|
47
|
+
#include "src/core/lib/iomgr/iomgr.h"
|
48
|
+
#include "src/core/lib/iomgr/timer.h"
|
49
|
+
#include "src/core/lib/profiling/timers.h"
|
50
|
+
#include "src/core/lib/slice/slice_internal.h"
|
51
|
+
#include "src/core/lib/slice/slice_string_helpers.h"
|
52
|
+
#include "src/core/lib/transport/error_utils.h"
|
53
|
+
#include "src/core/lib/transport/http2_errors.h"
|
54
|
+
#include "src/core/lib/transport/static_metadata.h"
|
55
|
+
#include "src/core/lib/transport/status_conversion.h"
|
56
|
+
#include "src/core/lib/transport/timeout_encoding.h"
|
57
|
+
#include "src/core/lib/transport/transport.h"
|
58
|
+
#include "src/core/lib/transport/transport_impl.h"
|
59
|
+
#include "src/core/lib/uri/uri_parser.h"
|
60
|
+
|
61
|
+
#define DEFAULT_CONNECTION_WINDOW_TARGET (1024 * 1024)
|
62
|
+
#define MAX_WINDOW 0x7fffffffu
|
63
|
+
#define MAX_WRITE_BUFFER_SIZE (64 * 1024 * 1024)
|
64
|
+
#define DEFAULT_MAX_HEADER_LIST_SIZE (8 * 1024)
|
65
|
+
|
66
|
+
#define DEFAULT_CLIENT_KEEPALIVE_TIME_MS INT_MAX
|
67
|
+
#define DEFAULT_CLIENT_KEEPALIVE_TIMEOUT_MS 20000 /* 20 seconds */
|
68
|
+
#define DEFAULT_SERVER_KEEPALIVE_TIME_MS 7200000 /* 2 hours */
|
69
|
+
#define DEFAULT_SERVER_KEEPALIVE_TIMEOUT_MS 20000 /* 20 seconds */
|
70
|
+
#define DEFAULT_KEEPALIVE_PERMIT_WITHOUT_CALLS false
|
71
|
+
#define KEEPALIVE_TIME_BACKOFF_MULTIPLIER 2
|
72
|
+
|
73
|
+
#define DEFAULT_MIN_SENT_PING_INTERVAL_WITHOUT_DATA_MS 300000 /* 5 minutes */
|
74
|
+
#define DEFAULT_MIN_RECV_PING_INTERVAL_WITHOUT_DATA_MS 300000 /* 5 minutes */
|
75
|
+
#define DEFAULT_MAX_PINGS_BETWEEN_DATA 2
|
76
|
+
#define DEFAULT_MAX_PING_STRIKES 2
|
77
|
+
|
78
|
+
#define DEFAULT_MAX_PENDING_INDUCED_FRAMES 10000
|
79
|
+
|
80
|
+
static int g_default_client_keepalive_time_ms =
|
81
|
+
DEFAULT_CLIENT_KEEPALIVE_TIME_MS;
|
82
|
+
static int g_default_client_keepalive_timeout_ms =
|
83
|
+
DEFAULT_CLIENT_KEEPALIVE_TIMEOUT_MS;
|
84
|
+
static int g_default_server_keepalive_time_ms =
|
85
|
+
DEFAULT_SERVER_KEEPALIVE_TIME_MS;
|
86
|
+
static int g_default_server_keepalive_timeout_ms =
|
87
|
+
DEFAULT_SERVER_KEEPALIVE_TIMEOUT_MS;
|
88
|
+
static bool g_default_client_keepalive_permit_without_calls =
|
89
|
+
DEFAULT_KEEPALIVE_PERMIT_WITHOUT_CALLS;
|
90
|
+
static bool g_default_server_keepalive_permit_without_calls =
|
91
|
+
DEFAULT_KEEPALIVE_PERMIT_WITHOUT_CALLS;
|
92
|
+
|
93
|
+
static int g_default_min_sent_ping_interval_without_data_ms =
|
94
|
+
DEFAULT_MIN_SENT_PING_INTERVAL_WITHOUT_DATA_MS;
|
95
|
+
static int g_default_min_recv_ping_interval_without_data_ms =
|
96
|
+
DEFAULT_MIN_RECV_PING_INTERVAL_WITHOUT_DATA_MS;
|
97
|
+
static int g_default_max_pings_without_data = DEFAULT_MAX_PINGS_BETWEEN_DATA;
|
98
|
+
static int g_default_max_ping_strikes = DEFAULT_MAX_PING_STRIKES;
|
99
|
+
|
100
|
+
#define MAX_CLIENT_STREAM_ID 0x7fffffffu
|
101
|
+
grpc_core::TraceFlag grpc_http_trace(false, "http");
|
102
|
+
grpc_core::TraceFlag grpc_keepalive_trace(false, "http_keepalive");
|
103
|
+
grpc_core::DebugOnlyTraceFlag grpc_trace_chttp2_refcount(false,
|
104
|
+
"chttp2_refcount");
|
105
|
+
|
106
|
+
/* forward declarations of various callbacks that we'll build closures around */
|
107
|
+
static void write_action_begin_locked(void* t, grpc_error* error);
|
108
|
+
static void write_action(void* t, grpc_error* error);
|
109
|
+
static void write_action_end(void* t, grpc_error* error);
|
110
|
+
static void write_action_end_locked(void* t, grpc_error* error);
|
111
|
+
|
112
|
+
static void read_action(void* t, grpc_error* error);
|
113
|
+
static void read_action_locked(void* t, grpc_error* error);
|
114
|
+
static void continue_read_action_locked(grpc_chttp2_transport* t);
|
115
|
+
|
116
|
+
static void complete_fetch(void* gs, grpc_error* error);
|
117
|
+
static void complete_fetch_locked(void* gs, grpc_error* error);
|
118
|
+
/** Set a transport level setting, and push it to our peer */
|
119
|
+
static void queue_setting_update(grpc_chttp2_transport* t,
|
120
|
+
grpc_chttp2_setting_id id, uint32_t value);
|
121
|
+
|
122
|
+
static void close_from_api(grpc_chttp2_transport* t, grpc_chttp2_stream* s,
|
123
|
+
grpc_error* error);
|
124
|
+
|
125
|
+
/** Start new streams that have been created if we can */
|
126
|
+
static void maybe_start_some_streams(grpc_chttp2_transport* t);
|
127
|
+
|
128
|
+
static void connectivity_state_set(grpc_chttp2_transport* t,
|
129
|
+
grpc_connectivity_state state,
|
130
|
+
const char* reason);
|
131
|
+
|
132
|
+
static void benign_reclaimer(void* t, grpc_error* error);
|
133
|
+
static void destructive_reclaimer(void* t, grpc_error* error);
|
134
|
+
static void benign_reclaimer_locked(void* t, grpc_error* error);
|
135
|
+
static void destructive_reclaimer_locked(void* t, grpc_error* error);
|
136
|
+
|
137
|
+
static void post_benign_reclaimer(grpc_chttp2_transport* t);
|
138
|
+
static void post_destructive_reclaimer(grpc_chttp2_transport* t);
|
139
|
+
|
140
|
+
static void close_transport_locked(grpc_chttp2_transport* t, grpc_error* error);
|
141
|
+
static void end_all_the_calls(grpc_chttp2_transport* t, grpc_error* error);
|
142
|
+
|
143
|
+
static void schedule_bdp_ping_locked(grpc_chttp2_transport* t);
|
144
|
+
static void start_bdp_ping(void* tp, grpc_error* error);
|
145
|
+
static void finish_bdp_ping(void* tp, grpc_error* error);
|
146
|
+
static void start_bdp_ping_locked(void* tp, grpc_error* error);
|
147
|
+
static void finish_bdp_ping_locked(void* tp, grpc_error* error);
|
148
|
+
static void next_bdp_ping_timer_expired(void* tp, grpc_error* error);
|
149
|
+
static void next_bdp_ping_timer_expired_locked(void* tp, grpc_error* error);
|
150
|
+
|
151
|
+
static void cancel_pings(grpc_chttp2_transport* t, grpc_error* error);
|
152
|
+
static void send_ping_locked(grpc_chttp2_transport* t,
|
153
|
+
grpc_closure* on_initiate,
|
154
|
+
grpc_closure* on_complete);
|
155
|
+
static void retry_initiate_ping_locked(void* tp, grpc_error* error);
|
156
|
+
|
157
|
+
/** keepalive-relevant functions */
|
158
|
+
static void init_keepalive_ping(void* arg, grpc_error* error);
|
159
|
+
static void init_keepalive_ping_locked(void* arg, grpc_error* error);
|
160
|
+
static void start_keepalive_ping(void* arg, grpc_error* error);
|
161
|
+
static void finish_keepalive_ping(void* arg, grpc_error* error);
|
162
|
+
static void start_keepalive_ping_locked(void* arg, grpc_error* error);
|
163
|
+
static void finish_keepalive_ping_locked(void* arg, grpc_error* error);
|
164
|
+
static void keepalive_watchdog_fired(void* arg, grpc_error* error);
|
165
|
+
static void keepalive_watchdog_fired_locked(void* arg, grpc_error* error);
|
166
|
+
|
167
|
+
static void reset_byte_stream(void* arg, grpc_error* error);
|
168
|
+
|
169
|
+
// Flow control default enabled. Can be disabled by setting
|
170
|
+
// GRPC_EXPERIMENTAL_DISABLE_FLOW_CONTROL
|
171
|
+
bool g_flow_control_enabled = true;
|
172
|
+
|
173
|
+
/*******************************************************************************
|
174
|
+
* CONSTRUCTION/DESTRUCTION/REFCOUNTING
|
175
|
+
*/
|
176
|
+
|
177
|
+
grpc_chttp2_transport::~grpc_chttp2_transport() {
|
178
|
+
size_t i;
|
179
|
+
|
180
|
+
if (channelz_socket != nullptr) {
|
181
|
+
channelz_socket.reset();
|
182
|
+
}
|
183
|
+
|
184
|
+
grpc_endpoint_destroy(ep);
|
185
|
+
|
186
|
+
grpc_slice_buffer_destroy_internal(&qbuf);
|
187
|
+
|
188
|
+
grpc_slice_buffer_destroy_internal(&outbuf);
|
189
|
+
grpc_chttp2_hpack_compressor_destroy(&hpack_compressor);
|
190
|
+
|
191
|
+
grpc_error* error =
|
192
|
+
GRPC_ERROR_CREATE_FROM_STATIC_STRING("Transport destroyed");
|
193
|
+
// ContextList::Execute follows semantics of a callback function and does not
|
194
|
+
// take a ref on error
|
195
|
+
grpc_core::ContextList::Execute(cl, nullptr, error);
|
196
|
+
GRPC_ERROR_UNREF(error);
|
197
|
+
cl = nullptr;
|
198
|
+
|
199
|
+
grpc_slice_buffer_destroy_internal(&read_buffer);
|
200
|
+
grpc_chttp2_hpack_parser_destroy(&hpack_parser);
|
201
|
+
grpc_chttp2_goaway_parser_destroy(&goaway_parser);
|
202
|
+
|
203
|
+
for (i = 0; i < STREAM_LIST_COUNT; i++) {
|
204
|
+
GPR_ASSERT(lists[i].head == nullptr);
|
205
|
+
GPR_ASSERT(lists[i].tail == nullptr);
|
206
|
+
}
|
207
|
+
|
208
|
+
GRPC_ERROR_UNREF(goaway_error);
|
209
|
+
|
210
|
+
GPR_ASSERT(grpc_chttp2_stream_map_size(&stream_map) == 0);
|
211
|
+
|
212
|
+
grpc_chttp2_stream_map_destroy(&stream_map);
|
213
|
+
|
214
|
+
GRPC_COMBINER_UNREF(combiner, "chttp2_transport");
|
215
|
+
|
216
|
+
cancel_pings(this,
|
217
|
+
GRPC_ERROR_CREATE_FROM_STATIC_STRING("Transport destroyed"));
|
218
|
+
|
219
|
+
while (write_cb_pool) {
|
220
|
+
grpc_chttp2_write_cb* next = write_cb_pool->next;
|
221
|
+
gpr_free(write_cb_pool);
|
222
|
+
write_cb_pool = next;
|
223
|
+
}
|
224
|
+
|
225
|
+
flow_control.Destroy();
|
226
|
+
|
227
|
+
GRPC_ERROR_UNREF(closed_with_error);
|
228
|
+
gpr_free(ping_acks);
|
229
|
+
gpr_free(peer_string);
|
230
|
+
}
|
231
|
+
|
232
|
+
static const grpc_transport_vtable* get_vtable(void);
|
233
|
+
|
234
|
+
/* Returns whether bdp is enabled */
|
235
|
+
static bool read_channel_args(grpc_chttp2_transport* t,
|
236
|
+
const grpc_channel_args* channel_args,
|
237
|
+
bool is_client) {
|
238
|
+
bool enable_bdp = true;
|
239
|
+
bool channelz_enabled = GRPC_ENABLE_CHANNELZ_DEFAULT;
|
240
|
+
size_t i;
|
241
|
+
int j;
|
242
|
+
|
243
|
+
for (i = 0; i < channel_args->num_args; i++) {
|
244
|
+
if (0 == strcmp(channel_args->args[i].key,
|
245
|
+
GRPC_ARG_HTTP2_INITIAL_SEQUENCE_NUMBER)) {
|
246
|
+
const grpc_integer_options options = {-1, 0, INT_MAX};
|
247
|
+
const int value =
|
248
|
+
grpc_channel_arg_get_integer(&channel_args->args[i], options);
|
249
|
+
if (value >= 0) {
|
250
|
+
if ((t->next_stream_id & 1) != (value & 1)) {
|
251
|
+
gpr_log(GPR_ERROR, "%s: low bit must be %d on %s",
|
252
|
+
GRPC_ARG_HTTP2_INITIAL_SEQUENCE_NUMBER, t->next_stream_id & 1,
|
253
|
+
is_client ? "client" : "server");
|
254
|
+
} else {
|
255
|
+
t->next_stream_id = static_cast<uint32_t>(value);
|
256
|
+
}
|
257
|
+
}
|
258
|
+
} else if (0 == strcmp(channel_args->args[i].key,
|
259
|
+
GRPC_ARG_HTTP2_HPACK_TABLE_SIZE_ENCODER)) {
|
260
|
+
const grpc_integer_options options = {-1, 0, INT_MAX};
|
261
|
+
const int value =
|
262
|
+
grpc_channel_arg_get_integer(&channel_args->args[i], options);
|
263
|
+
if (value >= 0) {
|
264
|
+
grpc_chttp2_hpack_compressor_set_max_usable_size(
|
265
|
+
&t->hpack_compressor, static_cast<uint32_t>(value));
|
266
|
+
}
|
267
|
+
} else if (0 == strcmp(channel_args->args[i].key,
|
268
|
+
GRPC_ARG_HTTP2_MAX_PINGS_WITHOUT_DATA)) {
|
269
|
+
t->ping_policy.max_pings_without_data = grpc_channel_arg_get_integer(
|
270
|
+
&channel_args->args[i],
|
271
|
+
{g_default_max_pings_without_data, 0, INT_MAX});
|
272
|
+
} else if (0 == strcmp(channel_args->args[i].key,
|
273
|
+
GRPC_ARG_HTTP2_MAX_PING_STRIKES)) {
|
274
|
+
t->ping_policy.max_ping_strikes = grpc_channel_arg_get_integer(
|
275
|
+
&channel_args->args[i], {g_default_max_ping_strikes, 0, INT_MAX});
|
276
|
+
} else if (0 ==
|
277
|
+
strcmp(channel_args->args[i].key,
|
278
|
+
GRPC_ARG_HTTP2_MIN_SENT_PING_INTERVAL_WITHOUT_DATA_MS)) {
|
279
|
+
t->ping_policy.min_sent_ping_interval_without_data =
|
280
|
+
grpc_channel_arg_get_integer(
|
281
|
+
&channel_args->args[i],
|
282
|
+
grpc_integer_options{
|
283
|
+
g_default_min_sent_ping_interval_without_data_ms, 0,
|
284
|
+
INT_MAX});
|
285
|
+
} else if (0 ==
|
286
|
+
strcmp(channel_args->args[i].key,
|
287
|
+
GRPC_ARG_HTTP2_MIN_RECV_PING_INTERVAL_WITHOUT_DATA_MS)) {
|
288
|
+
t->ping_policy.min_recv_ping_interval_without_data =
|
289
|
+
grpc_channel_arg_get_integer(
|
290
|
+
&channel_args->args[i],
|
291
|
+
grpc_integer_options{
|
292
|
+
g_default_min_recv_ping_interval_without_data_ms, 0,
|
293
|
+
INT_MAX});
|
294
|
+
} else if (0 == strcmp(channel_args->args[i].key,
|
295
|
+
GRPC_ARG_HTTP2_WRITE_BUFFER_SIZE)) {
|
296
|
+
t->write_buffer_size = static_cast<uint32_t>(grpc_channel_arg_get_integer(
|
297
|
+
&channel_args->args[i], {0, 0, MAX_WRITE_BUFFER_SIZE}));
|
298
|
+
} else if (0 ==
|
299
|
+
strcmp(channel_args->args[i].key, GRPC_ARG_HTTP2_BDP_PROBE)) {
|
300
|
+
enable_bdp = grpc_channel_arg_get_bool(&channel_args->args[i], true);
|
301
|
+
} else if (0 ==
|
302
|
+
strcmp(channel_args->args[i].key, GRPC_ARG_KEEPALIVE_TIME_MS)) {
|
303
|
+
const int value = grpc_channel_arg_get_integer(
|
304
|
+
&channel_args->args[i],
|
305
|
+
grpc_integer_options{t->is_client
|
306
|
+
? g_default_client_keepalive_time_ms
|
307
|
+
: g_default_server_keepalive_time_ms,
|
308
|
+
1, INT_MAX});
|
309
|
+
t->keepalive_time = value == INT_MAX ? GRPC_MILLIS_INF_FUTURE : value;
|
310
|
+
} else if (0 == strcmp(channel_args->args[i].key,
|
311
|
+
GRPC_ARG_KEEPALIVE_TIMEOUT_MS)) {
|
312
|
+
const int value = grpc_channel_arg_get_integer(
|
313
|
+
&channel_args->args[i],
|
314
|
+
grpc_integer_options{t->is_client
|
315
|
+
? g_default_client_keepalive_timeout_ms
|
316
|
+
: g_default_server_keepalive_timeout_ms,
|
317
|
+
0, INT_MAX});
|
318
|
+
t->keepalive_timeout = value == INT_MAX ? GRPC_MILLIS_INF_FUTURE : value;
|
319
|
+
} else if (0 == strcmp(channel_args->args[i].key,
|
320
|
+
GRPC_ARG_KEEPALIVE_PERMIT_WITHOUT_CALLS)) {
|
321
|
+
t->keepalive_permit_without_calls = static_cast<uint32_t>(
|
322
|
+
grpc_channel_arg_get_integer(&channel_args->args[i], {0, 0, 1}));
|
323
|
+
} else if (0 == strcmp(channel_args->args[i].key,
|
324
|
+
GRPC_ARG_OPTIMIZATION_TARGET)) {
|
325
|
+
gpr_log(GPR_INFO, "GRPC_ARG_OPTIMIZATION_TARGET is deprecated");
|
326
|
+
} else if (0 ==
|
327
|
+
strcmp(channel_args->args[i].key, GRPC_ARG_ENABLE_CHANNELZ)) {
|
328
|
+
channelz_enabled = grpc_channel_arg_get_bool(
|
329
|
+
&channel_args->args[i], GRPC_ENABLE_CHANNELZ_DEFAULT);
|
330
|
+
} else {
|
331
|
+
static const struct {
|
332
|
+
const char* channel_arg_name;
|
333
|
+
grpc_chttp2_setting_id setting_id;
|
334
|
+
grpc_integer_options integer_options;
|
335
|
+
bool availability[2] /* server, client */;
|
336
|
+
} settings_map[] = {{GRPC_ARG_MAX_CONCURRENT_STREAMS,
|
337
|
+
GRPC_CHTTP2_SETTINGS_MAX_CONCURRENT_STREAMS,
|
338
|
+
{-1, 0, INT32_MAX},
|
339
|
+
{true, false}},
|
340
|
+
{GRPC_ARG_HTTP2_HPACK_TABLE_SIZE_DECODER,
|
341
|
+
GRPC_CHTTP2_SETTINGS_HEADER_TABLE_SIZE,
|
342
|
+
{-1, 0, INT32_MAX},
|
343
|
+
{true, true}},
|
344
|
+
{GRPC_ARG_MAX_METADATA_SIZE,
|
345
|
+
GRPC_CHTTP2_SETTINGS_MAX_HEADER_LIST_SIZE,
|
346
|
+
{-1, 0, INT32_MAX},
|
347
|
+
{true, true}},
|
348
|
+
{GRPC_ARG_HTTP2_MAX_FRAME_SIZE,
|
349
|
+
GRPC_CHTTP2_SETTINGS_MAX_FRAME_SIZE,
|
350
|
+
{-1, 16384, 16777215},
|
351
|
+
{true, true}},
|
352
|
+
{GRPC_ARG_HTTP2_ENABLE_TRUE_BINARY,
|
353
|
+
GRPC_CHTTP2_SETTINGS_GRPC_ALLOW_TRUE_BINARY_METADATA,
|
354
|
+
{1, 0, 1},
|
355
|
+
{true, true}},
|
356
|
+
{GRPC_ARG_HTTP2_STREAM_LOOKAHEAD_BYTES,
|
357
|
+
GRPC_CHTTP2_SETTINGS_INITIAL_WINDOW_SIZE,
|
358
|
+
{-1, 5, INT32_MAX},
|
359
|
+
{true, true}}};
|
360
|
+
for (j = 0; j < static_cast<int> GPR_ARRAY_SIZE(settings_map); j++) {
|
361
|
+
if (0 == strcmp(channel_args->args[i].key,
|
362
|
+
settings_map[j].channel_arg_name)) {
|
363
|
+
if (!settings_map[j].availability[is_client]) {
|
364
|
+
gpr_log(GPR_DEBUG, "%s is not available on %s",
|
365
|
+
settings_map[j].channel_arg_name,
|
366
|
+
is_client ? "clients" : "servers");
|
367
|
+
} else {
|
368
|
+
int value = grpc_channel_arg_get_integer(
|
369
|
+
&channel_args->args[i], settings_map[j].integer_options);
|
370
|
+
if (value >= 0) {
|
371
|
+
queue_setting_update(t, settings_map[j].setting_id,
|
372
|
+
static_cast<uint32_t>(value));
|
373
|
+
}
|
374
|
+
}
|
375
|
+
break;
|
376
|
+
}
|
377
|
+
}
|
378
|
+
}
|
379
|
+
}
|
380
|
+
if (channelz_enabled) {
|
381
|
+
// TODO(ncteisen): add an API to endpoint to query for local addr, and pass
|
382
|
+
// it in here, so SocketNode knows its own address.
|
383
|
+
t->channelz_socket =
|
384
|
+
grpc_core::MakeRefCounted<grpc_core::channelz::SocketNode>(
|
385
|
+
"", t->peer_string,
|
386
|
+
absl::StrFormat("%s %s", get_vtable()->name, t->peer_string));
|
387
|
+
}
|
388
|
+
return enable_bdp;
|
389
|
+
}
|
390
|
+
|
391
|
+
static void init_transport_keepalive_settings(grpc_chttp2_transport* t) {
|
392
|
+
if (t->is_client) {
|
393
|
+
t->keepalive_time = g_default_client_keepalive_time_ms == INT_MAX
|
394
|
+
? GRPC_MILLIS_INF_FUTURE
|
395
|
+
: g_default_client_keepalive_time_ms;
|
396
|
+
t->keepalive_timeout = g_default_client_keepalive_timeout_ms == INT_MAX
|
397
|
+
? GRPC_MILLIS_INF_FUTURE
|
398
|
+
: g_default_client_keepalive_timeout_ms;
|
399
|
+
t->keepalive_permit_without_calls =
|
400
|
+
g_default_client_keepalive_permit_without_calls;
|
401
|
+
} else {
|
402
|
+
t->keepalive_time = g_default_server_keepalive_time_ms == INT_MAX
|
403
|
+
? GRPC_MILLIS_INF_FUTURE
|
404
|
+
: g_default_server_keepalive_time_ms;
|
405
|
+
t->keepalive_timeout = g_default_server_keepalive_timeout_ms == INT_MAX
|
406
|
+
? GRPC_MILLIS_INF_FUTURE
|
407
|
+
: g_default_server_keepalive_timeout_ms;
|
408
|
+
t->keepalive_permit_without_calls =
|
409
|
+
g_default_server_keepalive_permit_without_calls;
|
410
|
+
}
|
411
|
+
}
|
412
|
+
|
413
|
+
static void configure_transport_ping_policy(grpc_chttp2_transport* t) {
|
414
|
+
t->ping_policy.max_pings_without_data = g_default_max_pings_without_data;
|
415
|
+
t->ping_policy.min_sent_ping_interval_without_data =
|
416
|
+
g_default_min_sent_ping_interval_without_data_ms;
|
417
|
+
t->ping_policy.max_ping_strikes = g_default_max_ping_strikes;
|
418
|
+
t->ping_policy.min_recv_ping_interval_without_data =
|
419
|
+
g_default_min_recv_ping_interval_without_data_ms;
|
420
|
+
}
|
421
|
+
|
422
|
+
static void init_keepalive_pings_if_enabled(grpc_chttp2_transport* t) {
|
423
|
+
if (t->keepalive_time != GRPC_MILLIS_INF_FUTURE) {
|
424
|
+
t->keepalive_state = GRPC_CHTTP2_KEEPALIVE_STATE_WAITING;
|
425
|
+
GRPC_CHTTP2_REF_TRANSPORT(t, "init keepalive ping");
|
426
|
+
GRPC_CLOSURE_INIT(&t->init_keepalive_ping_locked, init_keepalive_ping, t,
|
427
|
+
grpc_schedule_on_exec_ctx);
|
428
|
+
grpc_timer_init(&t->keepalive_ping_timer,
|
429
|
+
grpc_core::ExecCtx::Get()->Now() + t->keepalive_time,
|
430
|
+
&t->init_keepalive_ping_locked);
|
431
|
+
} else {
|
432
|
+
/* Use GRPC_CHTTP2_KEEPALIVE_STATE_DISABLED to indicate there are no
|
433
|
+
inflight keeaplive timers */
|
434
|
+
t->keepalive_state = GRPC_CHTTP2_KEEPALIVE_STATE_DISABLED;
|
435
|
+
}
|
436
|
+
}
|
437
|
+
|
438
|
+
grpc_chttp2_transport::grpc_chttp2_transport(
|
439
|
+
const grpc_channel_args* channel_args, grpc_endpoint* ep, bool is_client,
|
440
|
+
grpc_resource_user* resource_user)
|
441
|
+
: refs(1, &grpc_trace_chttp2_refcount),
|
442
|
+
ep(ep),
|
443
|
+
peer_string(grpc_endpoint_get_peer(ep)),
|
444
|
+
resource_user(resource_user),
|
445
|
+
combiner(grpc_combiner_create()),
|
446
|
+
state_tracker(is_client ? "client_transport" : "server_transport",
|
447
|
+
GRPC_CHANNEL_READY),
|
448
|
+
is_client(is_client),
|
449
|
+
next_stream_id(is_client ? 1 : 2),
|
450
|
+
deframe_state(is_client ? GRPC_DTS_FH_0 : GRPC_DTS_CLIENT_PREFIX_0) {
|
451
|
+
GPR_ASSERT(strlen(GRPC_CHTTP2_CLIENT_CONNECT_STRING) ==
|
452
|
+
GRPC_CHTTP2_CLIENT_CONNECT_STRLEN);
|
453
|
+
base.vtable = get_vtable();
|
454
|
+
/* 8 is a random stab in the dark as to a good initial size: it's small enough
|
455
|
+
that it shouldn't waste memory for infrequently used connections, yet
|
456
|
+
large enough that the exponential growth should happen nicely when it's
|
457
|
+
needed.
|
458
|
+
TODO(ctiller): tune this */
|
459
|
+
grpc_chttp2_stream_map_init(&stream_map, 8);
|
460
|
+
|
461
|
+
grpc_slice_buffer_init(&read_buffer);
|
462
|
+
grpc_slice_buffer_init(&outbuf);
|
463
|
+
if (is_client) {
|
464
|
+
grpc_slice_buffer_add(&outbuf, grpc_slice_from_copied_string(
|
465
|
+
GRPC_CHTTP2_CLIENT_CONNECT_STRING));
|
466
|
+
}
|
467
|
+
grpc_chttp2_hpack_compressor_init(&hpack_compressor);
|
468
|
+
grpc_slice_buffer_init(&qbuf);
|
469
|
+
/* copy in initial settings to all setting sets */
|
470
|
+
size_t i;
|
471
|
+
int j;
|
472
|
+
for (i = 0; i < GRPC_CHTTP2_NUM_SETTINGS; i++) {
|
473
|
+
for (j = 0; j < GRPC_NUM_SETTING_SETS; j++) {
|
474
|
+
settings[j][i] = grpc_chttp2_settings_parameters[i].default_value;
|
475
|
+
}
|
476
|
+
}
|
477
|
+
grpc_chttp2_hpack_parser_init(&hpack_parser);
|
478
|
+
grpc_chttp2_goaway_parser_init(&goaway_parser);
|
479
|
+
|
480
|
+
/* configure http2 the way we like it */
|
481
|
+
if (is_client) {
|
482
|
+
queue_setting_update(this, GRPC_CHTTP2_SETTINGS_ENABLE_PUSH, 0);
|
483
|
+
queue_setting_update(this, GRPC_CHTTP2_SETTINGS_MAX_CONCURRENT_STREAMS, 0);
|
484
|
+
}
|
485
|
+
queue_setting_update(this, GRPC_CHTTP2_SETTINGS_MAX_HEADER_LIST_SIZE,
|
486
|
+
DEFAULT_MAX_HEADER_LIST_SIZE);
|
487
|
+
queue_setting_update(this,
|
488
|
+
GRPC_CHTTP2_SETTINGS_GRPC_ALLOW_TRUE_BINARY_METADATA, 1);
|
489
|
+
|
490
|
+
configure_transport_ping_policy(this);
|
491
|
+
init_transport_keepalive_settings(this);
|
492
|
+
|
493
|
+
bool enable_bdp = true;
|
494
|
+
if (channel_args) {
|
495
|
+
enable_bdp = read_channel_args(this, channel_args, is_client);
|
496
|
+
}
|
497
|
+
|
498
|
+
if (g_flow_control_enabled) {
|
499
|
+
flow_control.Init<grpc_core::chttp2::TransportFlowControl>(this,
|
500
|
+
enable_bdp);
|
501
|
+
} else {
|
502
|
+
flow_control.Init<grpc_core::chttp2::TransportFlowControlDisabled>(this);
|
503
|
+
enable_bdp = false;
|
504
|
+
}
|
505
|
+
|
506
|
+
/* No pings allowed before receiving a header or data frame. */
|
507
|
+
ping_state.pings_before_data_required = 0;
|
508
|
+
ping_state.is_delayed_ping_timer_set = false;
|
509
|
+
ping_state.last_ping_sent_time = GRPC_MILLIS_INF_PAST;
|
510
|
+
|
511
|
+
ping_recv_state.last_ping_recv_time = GRPC_MILLIS_INF_PAST;
|
512
|
+
ping_recv_state.ping_strikes = 0;
|
513
|
+
|
514
|
+
init_keepalive_pings_if_enabled(this);
|
515
|
+
|
516
|
+
if (enable_bdp) {
|
517
|
+
GRPC_CHTTP2_REF_TRANSPORT(this, "bdp_ping");
|
518
|
+
schedule_bdp_ping_locked(this);
|
519
|
+
grpc_chttp2_act_on_flowctl_action(flow_control->PeriodicUpdate(), this,
|
520
|
+
nullptr);
|
521
|
+
}
|
522
|
+
|
523
|
+
grpc_chttp2_initiate_write(this, GRPC_CHTTP2_INITIATE_WRITE_INITIAL_WRITE);
|
524
|
+
post_benign_reclaimer(this);
|
525
|
+
}
|
526
|
+
|
527
|
+
static void destroy_transport_locked(void* tp, grpc_error* /*error*/) {
|
528
|
+
grpc_chttp2_transport* t = static_cast<grpc_chttp2_transport*>(tp);
|
529
|
+
t->destroying = 1;
|
530
|
+
close_transport_locked(
|
531
|
+
t, grpc_error_set_int(
|
532
|
+
GRPC_ERROR_CREATE_FROM_STATIC_STRING("Transport destroyed"),
|
533
|
+
GRPC_ERROR_INT_OCCURRED_DURING_WRITE, t->write_state));
|
534
|
+
// Must be the last line.
|
535
|
+
GRPC_CHTTP2_UNREF_TRANSPORT(t, "destroy");
|
536
|
+
}
|
537
|
+
|
538
|
+
static void destroy_transport(grpc_transport* gt) {
|
539
|
+
grpc_chttp2_transport* t = reinterpret_cast<grpc_chttp2_transport*>(gt);
|
540
|
+
t->combiner->Run(GRPC_CLOSURE_CREATE(destroy_transport_locked, t, nullptr),
|
541
|
+
GRPC_ERROR_NONE);
|
542
|
+
}
|
543
|
+
|
544
|
+
static void close_transport_locked(grpc_chttp2_transport* t,
|
545
|
+
grpc_error* error) {
|
546
|
+
end_all_the_calls(t, GRPC_ERROR_REF(error));
|
547
|
+
cancel_pings(t, GRPC_ERROR_REF(error));
|
548
|
+
if (t->closed_with_error == GRPC_ERROR_NONE) {
|
549
|
+
if (!grpc_error_has_clear_grpc_status(error)) {
|
550
|
+
error = grpc_error_set_int(error, GRPC_ERROR_INT_GRPC_STATUS,
|
551
|
+
GRPC_STATUS_UNAVAILABLE);
|
552
|
+
}
|
553
|
+
if (t->write_state != GRPC_CHTTP2_WRITE_STATE_IDLE) {
|
554
|
+
if (t->close_transport_on_writes_finished == nullptr) {
|
555
|
+
t->close_transport_on_writes_finished =
|
556
|
+
GRPC_ERROR_CREATE_FROM_STATIC_STRING(
|
557
|
+
"Delayed close due to in-progress write");
|
558
|
+
}
|
559
|
+
t->close_transport_on_writes_finished =
|
560
|
+
grpc_error_add_child(t->close_transport_on_writes_finished, error);
|
561
|
+
return;
|
562
|
+
}
|
563
|
+
GPR_ASSERT(error != GRPC_ERROR_NONE);
|
564
|
+
t->closed_with_error = GRPC_ERROR_REF(error);
|
565
|
+
connectivity_state_set(t, GRPC_CHANNEL_SHUTDOWN, "close_transport");
|
566
|
+
if (t->ping_state.is_delayed_ping_timer_set) {
|
567
|
+
grpc_timer_cancel(&t->ping_state.delayed_ping_timer);
|
568
|
+
}
|
569
|
+
if (t->have_next_bdp_ping_timer) {
|
570
|
+
grpc_timer_cancel(&t->next_bdp_ping_timer);
|
571
|
+
}
|
572
|
+
switch (t->keepalive_state) {
|
573
|
+
case GRPC_CHTTP2_KEEPALIVE_STATE_WAITING:
|
574
|
+
grpc_timer_cancel(&t->keepalive_ping_timer);
|
575
|
+
break;
|
576
|
+
case GRPC_CHTTP2_KEEPALIVE_STATE_PINGING:
|
577
|
+
grpc_timer_cancel(&t->keepalive_ping_timer);
|
578
|
+
grpc_timer_cancel(&t->keepalive_watchdog_timer);
|
579
|
+
break;
|
580
|
+
case GRPC_CHTTP2_KEEPALIVE_STATE_DYING:
|
581
|
+
case GRPC_CHTTP2_KEEPALIVE_STATE_DISABLED:
|
582
|
+
/* keepalive timers are not set in these two states */
|
583
|
+
break;
|
584
|
+
}
|
585
|
+
|
586
|
+
/* flush writable stream list to avoid dangling references */
|
587
|
+
grpc_chttp2_stream* s;
|
588
|
+
while (grpc_chttp2_list_pop_writable_stream(t, &s)) {
|
589
|
+
GRPC_CHTTP2_STREAM_UNREF(s, "chttp2_writing:close");
|
590
|
+
}
|
591
|
+
GPR_ASSERT(t->write_state == GRPC_CHTTP2_WRITE_STATE_IDLE);
|
592
|
+
grpc_endpoint_shutdown(t->ep, GRPC_ERROR_REF(error));
|
593
|
+
}
|
594
|
+
if (t->notify_on_receive_settings != nullptr) {
|
595
|
+
grpc_core::ExecCtx::Run(DEBUG_LOCATION, t->notify_on_receive_settings,
|
596
|
+
GRPC_ERROR_CANCELLED);
|
597
|
+
t->notify_on_receive_settings = nullptr;
|
598
|
+
}
|
599
|
+
GRPC_ERROR_UNREF(error);
|
600
|
+
}
|
601
|
+
|
602
|
+
#ifndef NDEBUG
|
603
|
+
void grpc_chttp2_stream_ref(grpc_chttp2_stream* s, const char* reason) {
|
604
|
+
grpc_stream_ref(s->refcount, reason);
|
605
|
+
}
|
606
|
+
void grpc_chttp2_stream_unref(grpc_chttp2_stream* s, const char* reason) {
|
607
|
+
grpc_stream_unref(s->refcount, reason);
|
608
|
+
}
|
609
|
+
#else
|
610
|
+
void grpc_chttp2_stream_ref(grpc_chttp2_stream* s) {
|
611
|
+
grpc_stream_ref(s->refcount);
|
612
|
+
}
|
613
|
+
void grpc_chttp2_stream_unref(grpc_chttp2_stream* s) {
|
614
|
+
grpc_stream_unref(s->refcount);
|
615
|
+
}
|
616
|
+
#endif
|
617
|
+
|
618
|
+
grpc_chttp2_stream::Reffer::Reffer(grpc_chttp2_stream* s) {
|
619
|
+
/* We reserve one 'active stream' that's dropped when the stream is
|
620
|
+
read-closed. The others are for Chttp2IncomingByteStreams that are
|
621
|
+
actively reading */
|
622
|
+
GRPC_CHTTP2_STREAM_REF(s, "chttp2");
|
623
|
+
GRPC_CHTTP2_REF_TRANSPORT(s->t, "stream");
|
624
|
+
}
|
625
|
+
|
626
|
+
grpc_chttp2_stream::grpc_chttp2_stream(grpc_chttp2_transport* t,
|
627
|
+
grpc_stream_refcount* refcount,
|
628
|
+
const void* server_data,
|
629
|
+
grpc_core::Arena* arena)
|
630
|
+
: t(t),
|
631
|
+
refcount(refcount),
|
632
|
+
reffer(this),
|
633
|
+
metadata_buffer{grpc_chttp2_incoming_metadata_buffer(arena),
|
634
|
+
grpc_chttp2_incoming_metadata_buffer(arena)} {
|
635
|
+
if (server_data) {
|
636
|
+
id = static_cast<uint32_t>((uintptr_t)server_data);
|
637
|
+
*t->accepting_stream = this;
|
638
|
+
grpc_chttp2_stream_map_add(&t->stream_map, id, this);
|
639
|
+
post_destructive_reclaimer(t);
|
640
|
+
}
|
641
|
+
if (t->flow_control->flow_control_enabled()) {
|
642
|
+
flow_control.Init<grpc_core::chttp2::StreamFlowControl>(
|
643
|
+
static_cast<grpc_core::chttp2::TransportFlowControl*>(
|
644
|
+
t->flow_control.get()),
|
645
|
+
this);
|
646
|
+
} else {
|
647
|
+
flow_control.Init<grpc_core::chttp2::StreamFlowControlDisabled>();
|
648
|
+
}
|
649
|
+
|
650
|
+
grpc_slice_buffer_init(&frame_storage);
|
651
|
+
grpc_slice_buffer_init(&unprocessed_incoming_frames_buffer);
|
652
|
+
grpc_slice_buffer_init(&flow_controlled_buffer);
|
653
|
+
GRPC_CLOSURE_INIT(&reset_byte_stream, ::reset_byte_stream, this, nullptr);
|
654
|
+
}
|
655
|
+
|
656
|
+
grpc_chttp2_stream::~grpc_chttp2_stream() {
|
657
|
+
if (t->channelz_socket != nullptr) {
|
658
|
+
if ((t->is_client && eos_received) || (!t->is_client && eos_sent)) {
|
659
|
+
t->channelz_socket->RecordStreamSucceeded();
|
660
|
+
} else {
|
661
|
+
t->channelz_socket->RecordStreamFailed();
|
662
|
+
}
|
663
|
+
}
|
664
|
+
|
665
|
+
GPR_ASSERT((write_closed && read_closed) || id == 0);
|
666
|
+
if (id != 0) {
|
667
|
+
GPR_ASSERT(grpc_chttp2_stream_map_find(&t->stream_map, id) == nullptr);
|
668
|
+
}
|
669
|
+
|
670
|
+
grpc_slice_buffer_destroy_internal(&unprocessed_incoming_frames_buffer);
|
671
|
+
grpc_slice_buffer_destroy_internal(&frame_storage);
|
672
|
+
if (stream_compression_method != GRPC_STREAM_COMPRESSION_IDENTITY_COMPRESS) {
|
673
|
+
grpc_slice_buffer_destroy_internal(&compressed_data_buffer);
|
674
|
+
}
|
675
|
+
if (stream_decompression_method !=
|
676
|
+
GRPC_STREAM_COMPRESSION_IDENTITY_DECOMPRESS) {
|
677
|
+
grpc_slice_buffer_destroy_internal(&decompressed_data_buffer);
|
678
|
+
}
|
679
|
+
|
680
|
+
grpc_chttp2_list_remove_stalled_by_transport(t, this);
|
681
|
+
grpc_chttp2_list_remove_stalled_by_stream(t, this);
|
682
|
+
|
683
|
+
for (int i = 0; i < STREAM_LIST_COUNT; i++) {
|
684
|
+
if (GPR_UNLIKELY(included[i])) {
|
685
|
+
gpr_log(GPR_ERROR, "%s stream %d still included in list %d",
|
686
|
+
t->is_client ? "client" : "server", id, i);
|
687
|
+
abort();
|
688
|
+
}
|
689
|
+
}
|
690
|
+
|
691
|
+
GPR_ASSERT(send_initial_metadata_finished == nullptr);
|
692
|
+
GPR_ASSERT(fetching_send_message == nullptr);
|
693
|
+
GPR_ASSERT(send_trailing_metadata_finished == nullptr);
|
694
|
+
GPR_ASSERT(recv_initial_metadata_ready == nullptr);
|
695
|
+
GPR_ASSERT(recv_message_ready == nullptr);
|
696
|
+
GPR_ASSERT(recv_trailing_metadata_finished == nullptr);
|
697
|
+
grpc_slice_buffer_destroy_internal(&flow_controlled_buffer);
|
698
|
+
GRPC_ERROR_UNREF(read_closed_error);
|
699
|
+
GRPC_ERROR_UNREF(write_closed_error);
|
700
|
+
GRPC_ERROR_UNREF(byte_stream_error);
|
701
|
+
|
702
|
+
flow_control.Destroy();
|
703
|
+
|
704
|
+
if (t->resource_user != nullptr) {
|
705
|
+
grpc_resource_user_free(t->resource_user, GRPC_RESOURCE_QUOTA_CALL_SIZE);
|
706
|
+
}
|
707
|
+
|
708
|
+
GRPC_CHTTP2_UNREF_TRANSPORT(t, "stream");
|
709
|
+
grpc_core::ExecCtx::Run(DEBUG_LOCATION, destroy_stream_arg, GRPC_ERROR_NONE);
|
710
|
+
}
|
711
|
+
|
712
|
+
static int init_stream(grpc_transport* gt, grpc_stream* gs,
|
713
|
+
grpc_stream_refcount* refcount, const void* server_data,
|
714
|
+
grpc_core::Arena* arena) {
|
715
|
+
GPR_TIMER_SCOPE("init_stream", 0);
|
716
|
+
grpc_chttp2_transport* t = reinterpret_cast<grpc_chttp2_transport*>(gt);
|
717
|
+
new (gs) grpc_chttp2_stream(t, refcount, server_data, arena);
|
718
|
+
return 0;
|
719
|
+
}
|
720
|
+
|
721
|
+
static void destroy_stream_locked(void* sp, grpc_error* /*error*/) {
|
722
|
+
GPR_TIMER_SCOPE("destroy_stream", 0);
|
723
|
+
grpc_chttp2_stream* s = static_cast<grpc_chttp2_stream*>(sp);
|
724
|
+
s->~grpc_chttp2_stream();
|
725
|
+
}
|
726
|
+
|
727
|
+
static void destroy_stream(grpc_transport* gt, grpc_stream* gs,
|
728
|
+
grpc_closure* then_schedule_closure) {
|
729
|
+
GPR_TIMER_SCOPE("destroy_stream", 0);
|
730
|
+
grpc_chttp2_transport* t = reinterpret_cast<grpc_chttp2_transport*>(gt);
|
731
|
+
grpc_chttp2_stream* s = reinterpret_cast<grpc_chttp2_stream*>(gs);
|
732
|
+
if (s->stream_compression_method !=
|
733
|
+
GRPC_STREAM_COMPRESSION_IDENTITY_COMPRESS &&
|
734
|
+
s->stream_compression_ctx != nullptr) {
|
735
|
+
grpc_stream_compression_context_destroy(s->stream_compression_ctx);
|
736
|
+
s->stream_compression_ctx = nullptr;
|
737
|
+
}
|
738
|
+
if (s->stream_decompression_method !=
|
739
|
+
GRPC_STREAM_COMPRESSION_IDENTITY_DECOMPRESS &&
|
740
|
+
s->stream_decompression_ctx != nullptr) {
|
741
|
+
grpc_stream_compression_context_destroy(s->stream_decompression_ctx);
|
742
|
+
s->stream_decompression_ctx = nullptr;
|
743
|
+
}
|
744
|
+
|
745
|
+
s->destroy_stream_arg = then_schedule_closure;
|
746
|
+
t->combiner->Run(
|
747
|
+
GRPC_CLOSURE_INIT(&s->destroy_stream, destroy_stream_locked, s, nullptr),
|
748
|
+
GRPC_ERROR_NONE);
|
749
|
+
}
|
750
|
+
|
751
|
+
grpc_chttp2_stream* grpc_chttp2_parsing_accept_stream(grpc_chttp2_transport* t,
|
752
|
+
uint32_t id) {
|
753
|
+
if (t->accept_stream_cb == nullptr) {
|
754
|
+
return nullptr;
|
755
|
+
}
|
756
|
+
// Don't accept the stream if memory quota doesn't allow. Note that we should
|
757
|
+
// simply refuse the stream here instead of canceling the stream after it's
|
758
|
+
// accepted since the latter will create the call which costs much memory.
|
759
|
+
if (t->resource_user != nullptr &&
|
760
|
+
!grpc_resource_user_safe_alloc(t->resource_user,
|
761
|
+
GRPC_RESOURCE_QUOTA_CALL_SIZE)) {
|
762
|
+
gpr_log(GPR_ERROR, "Memory exhausted, rejecting the stream.");
|
763
|
+
grpc_chttp2_add_rst_stream_to_next_write(t, id, GRPC_HTTP2_REFUSED_STREAM,
|
764
|
+
nullptr);
|
765
|
+
grpc_chttp2_initiate_write(t, GRPC_CHTTP2_INITIATE_WRITE_RST_STREAM);
|
766
|
+
return nullptr;
|
767
|
+
}
|
768
|
+
grpc_chttp2_stream* accepting = nullptr;
|
769
|
+
GPR_ASSERT(t->accepting_stream == nullptr);
|
770
|
+
t->accepting_stream = &accepting;
|
771
|
+
t->accept_stream_cb(t->accept_stream_cb_user_data, &t->base,
|
772
|
+
(void*)static_cast<uintptr_t>(id));
|
773
|
+
t->accepting_stream = nullptr;
|
774
|
+
return accepting;
|
775
|
+
}
|
776
|
+
|
777
|
+
/*******************************************************************************
|
778
|
+
* OUTPUT PROCESSING
|
779
|
+
*/
|
780
|
+
|
781
|
+
static const char* write_state_name(grpc_chttp2_write_state st) {
|
782
|
+
switch (st) {
|
783
|
+
case GRPC_CHTTP2_WRITE_STATE_IDLE:
|
784
|
+
return "IDLE";
|
785
|
+
case GRPC_CHTTP2_WRITE_STATE_WRITING:
|
786
|
+
return "WRITING";
|
787
|
+
case GRPC_CHTTP2_WRITE_STATE_WRITING_WITH_MORE:
|
788
|
+
return "WRITING+MORE";
|
789
|
+
}
|
790
|
+
GPR_UNREACHABLE_CODE(return "UNKNOWN");
|
791
|
+
}
|
792
|
+
|
793
|
+
static void set_write_state(grpc_chttp2_transport* t,
|
794
|
+
grpc_chttp2_write_state st, const char* reason) {
|
795
|
+
GRPC_CHTTP2_IF_TRACING(
|
796
|
+
gpr_log(GPR_INFO, "W:%p %s [%s] state %s -> %s [%s]", t,
|
797
|
+
t->is_client ? "CLIENT" : "SERVER", t->peer_string,
|
798
|
+
write_state_name(t->write_state), write_state_name(st), reason));
|
799
|
+
t->write_state = st;
|
800
|
+
/* If the state is being reset back to idle, it means a write was just
|
801
|
+
* finished. Make sure all the run_after_write closures are scheduled.
|
802
|
+
*
|
803
|
+
* This is also our chance to close the transport if the transport was marked
|
804
|
+
* to be closed after all writes finish (for example, if we received a go-away
|
805
|
+
* from peer while we had some pending writes) */
|
806
|
+
if (st == GRPC_CHTTP2_WRITE_STATE_IDLE) {
|
807
|
+
grpc_core::ExecCtx::RunList(DEBUG_LOCATION, &t->run_after_write);
|
808
|
+
if (t->close_transport_on_writes_finished != nullptr) {
|
809
|
+
grpc_error* err = t->close_transport_on_writes_finished;
|
810
|
+
t->close_transport_on_writes_finished = nullptr;
|
811
|
+
close_transport_locked(t, err);
|
812
|
+
}
|
813
|
+
}
|
814
|
+
}
|
815
|
+
|
816
|
+
static void inc_initiate_write_reason(
|
817
|
+
grpc_chttp2_initiate_write_reason reason) {
|
818
|
+
switch (reason) {
|
819
|
+
case GRPC_CHTTP2_INITIATE_WRITE_INITIAL_WRITE:
|
820
|
+
GRPC_STATS_INC_HTTP2_INITIATE_WRITE_DUE_TO_INITIAL_WRITE();
|
821
|
+
break;
|
822
|
+
case GRPC_CHTTP2_INITIATE_WRITE_START_NEW_STREAM:
|
823
|
+
GRPC_STATS_INC_HTTP2_INITIATE_WRITE_DUE_TO_START_NEW_STREAM();
|
824
|
+
break;
|
825
|
+
case GRPC_CHTTP2_INITIATE_WRITE_SEND_MESSAGE:
|
826
|
+
GRPC_STATS_INC_HTTP2_INITIATE_WRITE_DUE_TO_SEND_MESSAGE();
|
827
|
+
break;
|
828
|
+
case GRPC_CHTTP2_INITIATE_WRITE_SEND_INITIAL_METADATA:
|
829
|
+
GRPC_STATS_INC_HTTP2_INITIATE_WRITE_DUE_TO_SEND_INITIAL_METADATA();
|
830
|
+
break;
|
831
|
+
case GRPC_CHTTP2_INITIATE_WRITE_SEND_TRAILING_METADATA:
|
832
|
+
GRPC_STATS_INC_HTTP2_INITIATE_WRITE_DUE_TO_SEND_TRAILING_METADATA();
|
833
|
+
break;
|
834
|
+
case GRPC_CHTTP2_INITIATE_WRITE_RETRY_SEND_PING:
|
835
|
+
GRPC_STATS_INC_HTTP2_INITIATE_WRITE_DUE_TO_RETRY_SEND_PING();
|
836
|
+
break;
|
837
|
+
case GRPC_CHTTP2_INITIATE_WRITE_CONTINUE_PINGS:
|
838
|
+
GRPC_STATS_INC_HTTP2_INITIATE_WRITE_DUE_TO_CONTINUE_PINGS();
|
839
|
+
break;
|
840
|
+
case GRPC_CHTTP2_INITIATE_WRITE_GOAWAY_SENT:
|
841
|
+
GRPC_STATS_INC_HTTP2_INITIATE_WRITE_DUE_TO_GOAWAY_SENT();
|
842
|
+
break;
|
843
|
+
case GRPC_CHTTP2_INITIATE_WRITE_RST_STREAM:
|
844
|
+
GRPC_STATS_INC_HTTP2_INITIATE_WRITE_DUE_TO_RST_STREAM();
|
845
|
+
break;
|
846
|
+
case GRPC_CHTTP2_INITIATE_WRITE_CLOSE_FROM_API:
|
847
|
+
GRPC_STATS_INC_HTTP2_INITIATE_WRITE_DUE_TO_CLOSE_FROM_API();
|
848
|
+
break;
|
849
|
+
case GRPC_CHTTP2_INITIATE_WRITE_STREAM_FLOW_CONTROL:
|
850
|
+
GRPC_STATS_INC_HTTP2_INITIATE_WRITE_DUE_TO_STREAM_FLOW_CONTROL();
|
851
|
+
break;
|
852
|
+
case GRPC_CHTTP2_INITIATE_WRITE_TRANSPORT_FLOW_CONTROL:
|
853
|
+
GRPC_STATS_INC_HTTP2_INITIATE_WRITE_DUE_TO_TRANSPORT_FLOW_CONTROL();
|
854
|
+
break;
|
855
|
+
case GRPC_CHTTP2_INITIATE_WRITE_SEND_SETTINGS:
|
856
|
+
GRPC_STATS_INC_HTTP2_INITIATE_WRITE_DUE_TO_SEND_SETTINGS();
|
857
|
+
break;
|
858
|
+
case GRPC_CHTTP2_INITIATE_WRITE_FLOW_CONTROL_UNSTALLED_BY_SETTING:
|
859
|
+
GRPC_STATS_INC_HTTP2_INITIATE_WRITE_DUE_TO_FLOW_CONTROL_UNSTALLED_BY_SETTING();
|
860
|
+
break;
|
861
|
+
case GRPC_CHTTP2_INITIATE_WRITE_FLOW_CONTROL_UNSTALLED_BY_UPDATE:
|
862
|
+
GRPC_STATS_INC_HTTP2_INITIATE_WRITE_DUE_TO_FLOW_CONTROL_UNSTALLED_BY_UPDATE();
|
863
|
+
break;
|
864
|
+
case GRPC_CHTTP2_INITIATE_WRITE_APPLICATION_PING:
|
865
|
+
GRPC_STATS_INC_HTTP2_INITIATE_WRITE_DUE_TO_APPLICATION_PING();
|
866
|
+
break;
|
867
|
+
case GRPC_CHTTP2_INITIATE_WRITE_KEEPALIVE_PING:
|
868
|
+
GRPC_STATS_INC_HTTP2_INITIATE_WRITE_DUE_TO_KEEPALIVE_PING();
|
869
|
+
break;
|
870
|
+
case GRPC_CHTTP2_INITIATE_WRITE_TRANSPORT_FLOW_CONTROL_UNSTALLED:
|
871
|
+
GRPC_STATS_INC_HTTP2_INITIATE_WRITE_DUE_TO_TRANSPORT_FLOW_CONTROL_UNSTALLED();
|
872
|
+
break;
|
873
|
+
case GRPC_CHTTP2_INITIATE_WRITE_PING_RESPONSE:
|
874
|
+
GRPC_STATS_INC_HTTP2_INITIATE_WRITE_DUE_TO_PING_RESPONSE();
|
875
|
+
break;
|
876
|
+
case GRPC_CHTTP2_INITIATE_WRITE_FORCE_RST_STREAM:
|
877
|
+
GRPC_STATS_INC_HTTP2_INITIATE_WRITE_DUE_TO_FORCE_RST_STREAM();
|
878
|
+
break;
|
879
|
+
}
|
880
|
+
}
|
881
|
+
|
882
|
+
void grpc_chttp2_initiate_write(grpc_chttp2_transport* t,
|
883
|
+
grpc_chttp2_initiate_write_reason reason) {
|
884
|
+
GPR_TIMER_SCOPE("grpc_chttp2_initiate_write", 0);
|
885
|
+
|
886
|
+
switch (t->write_state) {
|
887
|
+
case GRPC_CHTTP2_WRITE_STATE_IDLE:
|
888
|
+
inc_initiate_write_reason(reason);
|
889
|
+
set_write_state(t, GRPC_CHTTP2_WRITE_STATE_WRITING,
|
890
|
+
grpc_chttp2_initiate_write_reason_string(reason));
|
891
|
+
GRPC_CHTTP2_REF_TRANSPORT(t, "writing");
|
892
|
+
/* Note that the 'write_action_begin_locked' closure is being scheduled
|
893
|
+
* on the 'finally_scheduler' of t->combiner. This means that
|
894
|
+
* 'write_action_begin_locked' is called only *after* all the other
|
895
|
+
* closures (some of which are potentially initiating more writes on the
|
896
|
+
* transport) are executed on the t->combiner.
|
897
|
+
*
|
898
|
+
* The reason for scheduling on finally_scheduler is to make sure we batch
|
899
|
+
* as many writes as possible. 'write_action_begin_locked' is the function
|
900
|
+
* that gathers all the relevant bytes (which are at various places in the
|
901
|
+
* grpc_chttp2_transport structure) and append them to 'outbuf' field in
|
902
|
+
* grpc_chttp2_transport thereby batching what would have been potentially
|
903
|
+
* multiple write operations.
|
904
|
+
*
|
905
|
+
* Also, 'write_action_begin_locked' only gathers the bytes into outbuf.
|
906
|
+
* It does not call the endpoint to write the bytes. That is done by the
|
907
|
+
* 'write_action' (which is scheduled by 'write_action_begin_locked') */
|
908
|
+
t->combiner->FinallyRun(
|
909
|
+
GRPC_CLOSURE_INIT(&t->write_action_begin_locked,
|
910
|
+
write_action_begin_locked, t, nullptr),
|
911
|
+
GRPC_ERROR_NONE);
|
912
|
+
break;
|
913
|
+
case GRPC_CHTTP2_WRITE_STATE_WRITING:
|
914
|
+
set_write_state(t, GRPC_CHTTP2_WRITE_STATE_WRITING_WITH_MORE,
|
915
|
+
grpc_chttp2_initiate_write_reason_string(reason));
|
916
|
+
break;
|
917
|
+
case GRPC_CHTTP2_WRITE_STATE_WRITING_WITH_MORE:
|
918
|
+
break;
|
919
|
+
}
|
920
|
+
}
|
921
|
+
|
922
|
+
void grpc_chttp2_mark_stream_writable(grpc_chttp2_transport* t,
|
923
|
+
grpc_chttp2_stream* s) {
|
924
|
+
if (t->closed_with_error == GRPC_ERROR_NONE &&
|
925
|
+
grpc_chttp2_list_add_writable_stream(t, s)) {
|
926
|
+
GRPC_CHTTP2_STREAM_REF(s, "chttp2_writing:become");
|
927
|
+
}
|
928
|
+
}
|
929
|
+
|
930
|
+
static const char* begin_writing_desc(bool partial) {
|
931
|
+
if (partial) {
|
932
|
+
return "begin partial write in background";
|
933
|
+
} else {
|
934
|
+
return "begin write in current thread";
|
935
|
+
}
|
936
|
+
}
|
937
|
+
|
938
|
+
static void write_action_begin_locked(void* gt, grpc_error* /*error_ignored*/) {
|
939
|
+
GPR_TIMER_SCOPE("write_action_begin_locked", 0);
|
940
|
+
grpc_chttp2_transport* t = static_cast<grpc_chttp2_transport*>(gt);
|
941
|
+
GPR_ASSERT(t->write_state != GRPC_CHTTP2_WRITE_STATE_IDLE);
|
942
|
+
grpc_chttp2_begin_write_result r;
|
943
|
+
if (t->closed_with_error != GRPC_ERROR_NONE) {
|
944
|
+
r.writing = false;
|
945
|
+
} else {
|
946
|
+
r = grpc_chttp2_begin_write(t);
|
947
|
+
}
|
948
|
+
if (r.writing) {
|
949
|
+
if (r.partial) {
|
950
|
+
GRPC_STATS_INC_HTTP2_PARTIAL_WRITES();
|
951
|
+
}
|
952
|
+
set_write_state(t,
|
953
|
+
r.partial ? GRPC_CHTTP2_WRITE_STATE_WRITING_WITH_MORE
|
954
|
+
: GRPC_CHTTP2_WRITE_STATE_WRITING,
|
955
|
+
begin_writing_desc(r.partial));
|
956
|
+
write_action(t, GRPC_ERROR_NONE);
|
957
|
+
if (t->reading_paused_on_pending_induced_frames) {
|
958
|
+
GPR_ASSERT(t->num_pending_induced_frames == 0);
|
959
|
+
/* We had paused reading, because we had many induced frames (SETTINGS
|
960
|
+
* ACK, PINGS ACK and RST_STREAMS) pending in t->qbuf. Now that we have
|
961
|
+
* been able to flush qbuf, we can resume reading. */
|
962
|
+
GRPC_CHTTP2_IF_TRACING(gpr_log(
|
963
|
+
GPR_INFO,
|
964
|
+
"transport %p : Resuming reading after being paused due to too "
|
965
|
+
"many unwritten SETTINGS ACK, PINGS ACK and RST_STREAM frames",
|
966
|
+
t));
|
967
|
+
t->reading_paused_on_pending_induced_frames = false;
|
968
|
+
continue_read_action_locked(t);
|
969
|
+
}
|
970
|
+
} else {
|
971
|
+
GRPC_STATS_INC_HTTP2_SPURIOUS_WRITES_BEGUN();
|
972
|
+
set_write_state(t, GRPC_CHTTP2_WRITE_STATE_IDLE, "begin writing nothing");
|
973
|
+
GRPC_CHTTP2_UNREF_TRANSPORT(t, "writing");
|
974
|
+
}
|
975
|
+
}
|
976
|
+
|
977
|
+
static void write_action(void* gt, grpc_error* /*error*/) {
|
978
|
+
GPR_TIMER_SCOPE("write_action", 0);
|
979
|
+
grpc_chttp2_transport* t = static_cast<grpc_chttp2_transport*>(gt);
|
980
|
+
void* cl = t->cl;
|
981
|
+
t->cl = nullptr;
|
982
|
+
grpc_endpoint_write(
|
983
|
+
t->ep, &t->outbuf,
|
984
|
+
GRPC_CLOSURE_INIT(&t->write_action_end_locked, write_action_end, t,
|
985
|
+
grpc_schedule_on_exec_ctx),
|
986
|
+
cl);
|
987
|
+
}
|
988
|
+
|
989
|
+
static void write_action_end(void* tp, grpc_error* error) {
|
990
|
+
grpc_chttp2_transport* t = static_cast<grpc_chttp2_transport*>(tp);
|
991
|
+
t->combiner->Run(GRPC_CLOSURE_INIT(&t->write_action_end_locked,
|
992
|
+
write_action_end_locked, t, nullptr),
|
993
|
+
GRPC_ERROR_REF(error));
|
994
|
+
}
|
995
|
+
|
996
|
+
/* Callback from the grpc_endpoint after bytes have been written by calling
|
997
|
+
* sendmsg */
|
998
|
+
static void write_action_end_locked(void* tp, grpc_error* error) {
|
999
|
+
GPR_TIMER_SCOPE("terminate_writing_with_lock", 0);
|
1000
|
+
grpc_chttp2_transport* t = static_cast<grpc_chttp2_transport*>(tp);
|
1001
|
+
|
1002
|
+
bool closed = false;
|
1003
|
+
if (error != GRPC_ERROR_NONE) {
|
1004
|
+
close_transport_locked(t, GRPC_ERROR_REF(error));
|
1005
|
+
closed = true;
|
1006
|
+
}
|
1007
|
+
|
1008
|
+
if (t->sent_goaway_state == GRPC_CHTTP2_GOAWAY_SEND_SCHEDULED) {
|
1009
|
+
t->sent_goaway_state = GRPC_CHTTP2_GOAWAY_SENT;
|
1010
|
+
closed = true;
|
1011
|
+
if (grpc_chttp2_stream_map_size(&t->stream_map) == 0) {
|
1012
|
+
close_transport_locked(
|
1013
|
+
t, GRPC_ERROR_CREATE_FROM_STATIC_STRING("goaway sent"));
|
1014
|
+
}
|
1015
|
+
}
|
1016
|
+
|
1017
|
+
switch (t->write_state) {
|
1018
|
+
case GRPC_CHTTP2_WRITE_STATE_IDLE:
|
1019
|
+
GPR_UNREACHABLE_CODE(break);
|
1020
|
+
case GRPC_CHTTP2_WRITE_STATE_WRITING:
|
1021
|
+
GPR_TIMER_MARK("state=writing", 0);
|
1022
|
+
set_write_state(t, GRPC_CHTTP2_WRITE_STATE_IDLE, "finish writing");
|
1023
|
+
break;
|
1024
|
+
case GRPC_CHTTP2_WRITE_STATE_WRITING_WITH_MORE:
|
1025
|
+
GPR_TIMER_MARK("state=writing_stale_no_poller", 0);
|
1026
|
+
set_write_state(t, GRPC_CHTTP2_WRITE_STATE_WRITING, "continue writing");
|
1027
|
+
GRPC_CHTTP2_REF_TRANSPORT(t, "writing");
|
1028
|
+
// If the transport is closed, we will retry writing on the endpoint
|
1029
|
+
// and next write may contain part of the currently serialized frames.
|
1030
|
+
// So, we should only call the run_after_write callbacks when the next
|
1031
|
+
// write finishes, or the callbacks will be invoked when the stream is
|
1032
|
+
// closed.
|
1033
|
+
if (!closed) {
|
1034
|
+
grpc_core::ExecCtx::RunList(DEBUG_LOCATION, &t->run_after_write);
|
1035
|
+
}
|
1036
|
+
t->combiner->FinallyRun(
|
1037
|
+
GRPC_CLOSURE_INIT(&t->write_action_begin_locked,
|
1038
|
+
write_action_begin_locked, t, nullptr),
|
1039
|
+
GRPC_ERROR_NONE);
|
1040
|
+
break;
|
1041
|
+
}
|
1042
|
+
|
1043
|
+
grpc_chttp2_end_write(t, GRPC_ERROR_REF(error));
|
1044
|
+
GRPC_CHTTP2_UNREF_TRANSPORT(t, "writing");
|
1045
|
+
}
|
1046
|
+
|
1047
|
+
// Dirties an HTTP2 setting to be sent out next time a writing path occurs.
|
1048
|
+
// If the change needs to occur immediately, manually initiate a write.
|
1049
|
+
static void queue_setting_update(grpc_chttp2_transport* t,
|
1050
|
+
grpc_chttp2_setting_id id, uint32_t value) {
|
1051
|
+
const grpc_chttp2_setting_parameters* sp =
|
1052
|
+
&grpc_chttp2_settings_parameters[id];
|
1053
|
+
uint32_t use_value = GPR_CLAMP(value, sp->min_value, sp->max_value);
|
1054
|
+
if (use_value != value) {
|
1055
|
+
gpr_log(GPR_INFO, "Requested parameter %s clamped from %d to %d", sp->name,
|
1056
|
+
value, use_value);
|
1057
|
+
}
|
1058
|
+
if (use_value != t->settings[GRPC_LOCAL_SETTINGS][id]) {
|
1059
|
+
t->settings[GRPC_LOCAL_SETTINGS][id] = use_value;
|
1060
|
+
t->dirtied_local_settings = 1;
|
1061
|
+
}
|
1062
|
+
}
|
1063
|
+
|
1064
|
+
void grpc_chttp2_add_incoming_goaway(grpc_chttp2_transport* t,
|
1065
|
+
uint32_t goaway_error,
|
1066
|
+
uint32_t last_stream_id,
|
1067
|
+
const grpc_slice& goaway_text) {
|
1068
|
+
// Discard the error from a previous goaway frame (if any)
|
1069
|
+
if (t->goaway_error != GRPC_ERROR_NONE) {
|
1070
|
+
GRPC_ERROR_UNREF(t->goaway_error);
|
1071
|
+
}
|
1072
|
+
t->goaway_error = grpc_error_set_str(
|
1073
|
+
grpc_error_set_int(
|
1074
|
+
grpc_error_set_int(
|
1075
|
+
GRPC_ERROR_CREATE_FROM_STATIC_STRING("GOAWAY received"),
|
1076
|
+
GRPC_ERROR_INT_HTTP2_ERROR, static_cast<intptr_t>(goaway_error)),
|
1077
|
+
GRPC_ERROR_INT_GRPC_STATUS, GRPC_STATUS_UNAVAILABLE),
|
1078
|
+
GRPC_ERROR_STR_RAW_BYTES, goaway_text);
|
1079
|
+
|
1080
|
+
GRPC_CHTTP2_IF_TRACING(
|
1081
|
+
gpr_log(GPR_INFO, "transport %p got goaway with last stream id %d", t,
|
1082
|
+
last_stream_id));
|
1083
|
+
/* We want to log this irrespective of whether http tracing is enabled if we
|
1084
|
+
* received a GOAWAY with a non NO_ERROR code. */
|
1085
|
+
if (goaway_error != GRPC_HTTP2_NO_ERROR) {
|
1086
|
+
gpr_log(GPR_INFO, "%s: Got goaway [%d] err=%s", t->peer_string,
|
1087
|
+
goaway_error, grpc_error_string(t->goaway_error));
|
1088
|
+
}
|
1089
|
+
/* When a client receives a GOAWAY with error code ENHANCE_YOUR_CALM and debug
|
1090
|
+
* data equal to "too_many_pings", it should log the occurrence at a log level
|
1091
|
+
* that is enabled by default and double the configured KEEPALIVE_TIME used
|
1092
|
+
* for new connections on that channel. */
|
1093
|
+
if (GPR_UNLIKELY(t->is_client &&
|
1094
|
+
goaway_error == GRPC_HTTP2_ENHANCE_YOUR_CALM &&
|
1095
|
+
grpc_slice_str_cmp(goaway_text, "too_many_pings") == 0)) {
|
1096
|
+
gpr_log(GPR_ERROR,
|
1097
|
+
"Received a GOAWAY with error code ENHANCE_YOUR_CALM and debug "
|
1098
|
+
"data equal to \"too_many_pings\"");
|
1099
|
+
double current_keepalive_time_ms = static_cast<double>(t->keepalive_time);
|
1100
|
+
constexpr int max_keepalive_time_ms =
|
1101
|
+
INT_MAX / KEEPALIVE_TIME_BACKOFF_MULTIPLIER;
|
1102
|
+
t->keepalive_time =
|
1103
|
+
current_keepalive_time_ms > static_cast<double>(max_keepalive_time_ms)
|
1104
|
+
? GRPC_MILLIS_INF_FUTURE
|
1105
|
+
: static_cast<grpc_millis>(current_keepalive_time_ms *
|
1106
|
+
KEEPALIVE_TIME_BACKOFF_MULTIPLIER);
|
1107
|
+
}
|
1108
|
+
|
1109
|
+
/* lie: use transient failure from the transport to indicate goaway has been
|
1110
|
+
* received */
|
1111
|
+
connectivity_state_set(t, GRPC_CHANNEL_TRANSIENT_FAILURE, "got_goaway");
|
1112
|
+
}
|
1113
|
+
|
1114
|
+
static void maybe_start_some_streams(grpc_chttp2_transport* t) {
|
1115
|
+
grpc_chttp2_stream* s;
|
1116
|
+
/* cancel out streams that haven't yet started if we have received a GOAWAY */
|
1117
|
+
if (t->goaway_error != GRPC_ERROR_NONE) {
|
1118
|
+
while (grpc_chttp2_list_pop_waiting_for_concurrency(t, &s)) {
|
1119
|
+
grpc_chttp2_cancel_stream(
|
1120
|
+
t, s,
|
1121
|
+
grpc_error_set_int(
|
1122
|
+
GRPC_ERROR_CREATE_FROM_STATIC_STRING("GOAWAY received"),
|
1123
|
+
GRPC_ERROR_INT_GRPC_STATUS, GRPC_STATUS_UNAVAILABLE));
|
1124
|
+
}
|
1125
|
+
return;
|
1126
|
+
}
|
1127
|
+
/* start streams where we have free grpc_chttp2_stream ids and free
|
1128
|
+
* concurrency */
|
1129
|
+
while (t->next_stream_id <= MAX_CLIENT_STREAM_ID &&
|
1130
|
+
grpc_chttp2_stream_map_size(&t->stream_map) <
|
1131
|
+
t->settings[GRPC_PEER_SETTINGS]
|
1132
|
+
[GRPC_CHTTP2_SETTINGS_MAX_CONCURRENT_STREAMS] &&
|
1133
|
+
grpc_chttp2_list_pop_waiting_for_concurrency(t, &s)) {
|
1134
|
+
/* safe since we can't (legally) be parsing this stream yet */
|
1135
|
+
GRPC_CHTTP2_IF_TRACING(gpr_log(
|
1136
|
+
GPR_INFO,
|
1137
|
+
"HTTP:%s: Transport %p allocating new grpc_chttp2_stream %p to id %d",
|
1138
|
+
t->is_client ? "CLI" : "SVR", t, s, t->next_stream_id));
|
1139
|
+
|
1140
|
+
GPR_ASSERT(s->id == 0);
|
1141
|
+
s->id = t->next_stream_id;
|
1142
|
+
t->next_stream_id += 2;
|
1143
|
+
|
1144
|
+
if (t->next_stream_id >= MAX_CLIENT_STREAM_ID) {
|
1145
|
+
connectivity_state_set(t, GRPC_CHANNEL_TRANSIENT_FAILURE,
|
1146
|
+
"no_more_stream_ids");
|
1147
|
+
}
|
1148
|
+
|
1149
|
+
grpc_chttp2_stream_map_add(&t->stream_map, s->id, s);
|
1150
|
+
post_destructive_reclaimer(t);
|
1151
|
+
grpc_chttp2_mark_stream_writable(t, s);
|
1152
|
+
grpc_chttp2_initiate_write(t, GRPC_CHTTP2_INITIATE_WRITE_START_NEW_STREAM);
|
1153
|
+
}
|
1154
|
+
/* cancel out streams that will never be started */
|
1155
|
+
if (t->next_stream_id >= MAX_CLIENT_STREAM_ID) {
|
1156
|
+
while (grpc_chttp2_list_pop_waiting_for_concurrency(t, &s)) {
|
1157
|
+
grpc_chttp2_cancel_stream(
|
1158
|
+
t, s,
|
1159
|
+
grpc_error_set_int(
|
1160
|
+
GRPC_ERROR_CREATE_FROM_STATIC_STRING("Stream IDs exhausted"),
|
1161
|
+
GRPC_ERROR_INT_GRPC_STATUS, GRPC_STATUS_UNAVAILABLE));
|
1162
|
+
}
|
1163
|
+
}
|
1164
|
+
}
|
1165
|
+
|
1166
|
+
/* Flag that this closure barrier may be covering a write in a pollset, and so
|
1167
|
+
we should not complete this closure until we can prove that the write got
|
1168
|
+
scheduled */
|
1169
|
+
#define CLOSURE_BARRIER_MAY_COVER_WRITE (1 << 0)
|
1170
|
+
/* First bit of the reference count, stored in the high order bits (with the low
|
1171
|
+
bits being used for flags defined above) */
|
1172
|
+
#define CLOSURE_BARRIER_FIRST_REF_BIT (1 << 16)
|
1173
|
+
|
1174
|
+
static grpc_closure* add_closure_barrier(grpc_closure* closure) {
|
1175
|
+
closure->next_data.scratch += CLOSURE_BARRIER_FIRST_REF_BIT;
|
1176
|
+
return closure;
|
1177
|
+
}
|
1178
|
+
|
1179
|
+
static void null_then_sched_closure(grpc_closure** closure) {
|
1180
|
+
grpc_closure* c = *closure;
|
1181
|
+
*closure = nullptr;
|
1182
|
+
grpc_core::ExecCtx::Run(DEBUG_LOCATION, c, GRPC_ERROR_NONE);
|
1183
|
+
}
|
1184
|
+
|
1185
|
+
void grpc_chttp2_complete_closure_step(grpc_chttp2_transport* t,
|
1186
|
+
grpc_chttp2_stream* /*s*/,
|
1187
|
+
grpc_closure** pclosure,
|
1188
|
+
grpc_error* error, const char* desc) {
|
1189
|
+
grpc_closure* closure = *pclosure;
|
1190
|
+
*pclosure = nullptr;
|
1191
|
+
if (closure == nullptr) {
|
1192
|
+
GRPC_ERROR_UNREF(error);
|
1193
|
+
return;
|
1194
|
+
}
|
1195
|
+
closure->next_data.scratch -= CLOSURE_BARRIER_FIRST_REF_BIT;
|
1196
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_http_trace)) {
|
1197
|
+
const char* errstr = grpc_error_string(error);
|
1198
|
+
gpr_log(
|
1199
|
+
GPR_INFO,
|
1200
|
+
"complete_closure_step: t=%p %p refs=%d flags=0x%04x desc=%s err=%s "
|
1201
|
+
"write_state=%s",
|
1202
|
+
t, closure,
|
1203
|
+
static_cast<int>(closure->next_data.scratch /
|
1204
|
+
CLOSURE_BARRIER_FIRST_REF_BIT),
|
1205
|
+
static_cast<int>(closure->next_data.scratch %
|
1206
|
+
CLOSURE_BARRIER_FIRST_REF_BIT),
|
1207
|
+
desc, errstr, write_state_name(t->write_state));
|
1208
|
+
}
|
1209
|
+
if (error != GRPC_ERROR_NONE) {
|
1210
|
+
if (closure->error_data.error == GRPC_ERROR_NONE) {
|
1211
|
+
closure->error_data.error = GRPC_ERROR_CREATE_FROM_STATIC_STRING(
|
1212
|
+
"Error in HTTP transport completing operation");
|
1213
|
+
closure->error_data.error = grpc_error_set_str(
|
1214
|
+
closure->error_data.error, GRPC_ERROR_STR_TARGET_ADDRESS,
|
1215
|
+
grpc_slice_from_copied_string(t->peer_string));
|
1216
|
+
}
|
1217
|
+
closure->error_data.error =
|
1218
|
+
grpc_error_add_child(closure->error_data.error, error);
|
1219
|
+
}
|
1220
|
+
if (closure->next_data.scratch < CLOSURE_BARRIER_FIRST_REF_BIT) {
|
1221
|
+
if ((t->write_state == GRPC_CHTTP2_WRITE_STATE_IDLE) ||
|
1222
|
+
!(closure->next_data.scratch & CLOSURE_BARRIER_MAY_COVER_WRITE)) {
|
1223
|
+
// Using GRPC_CLOSURE_SCHED instead of GRPC_CLOSURE_RUN to avoid running
|
1224
|
+
// closures earlier than when it is safe to do so.
|
1225
|
+
grpc_core::ExecCtx::Run(DEBUG_LOCATION, closure,
|
1226
|
+
closure->error_data.error);
|
1227
|
+
} else {
|
1228
|
+
grpc_closure_list_append(&t->run_after_write, closure,
|
1229
|
+
closure->error_data.error);
|
1230
|
+
}
|
1231
|
+
}
|
1232
|
+
}
|
1233
|
+
|
1234
|
+
static bool contains_non_ok_status(grpc_metadata_batch* batch) {
|
1235
|
+
if (batch->idx.named.grpc_status != nullptr) {
|
1236
|
+
return !grpc_mdelem_static_value_eq(batch->idx.named.grpc_status->md,
|
1237
|
+
GRPC_MDELEM_GRPC_STATUS_0);
|
1238
|
+
}
|
1239
|
+
return false;
|
1240
|
+
}
|
1241
|
+
|
1242
|
+
static void maybe_become_writable_due_to_send_msg(grpc_chttp2_transport* t,
|
1243
|
+
grpc_chttp2_stream* s) {
|
1244
|
+
if (s->id != 0 && (!s->write_buffering ||
|
1245
|
+
s->flow_controlled_buffer.length > t->write_buffer_size)) {
|
1246
|
+
grpc_chttp2_mark_stream_writable(t, s);
|
1247
|
+
grpc_chttp2_initiate_write(t, GRPC_CHTTP2_INITIATE_WRITE_SEND_MESSAGE);
|
1248
|
+
}
|
1249
|
+
}
|
1250
|
+
|
1251
|
+
static void add_fetched_slice_locked(grpc_chttp2_transport* t,
|
1252
|
+
grpc_chttp2_stream* s) {
|
1253
|
+
s->fetched_send_message_length +=
|
1254
|
+
static_cast<uint32_t> GRPC_SLICE_LENGTH(s->fetching_slice);
|
1255
|
+
grpc_slice_buffer_add(&s->flow_controlled_buffer, s->fetching_slice);
|
1256
|
+
maybe_become_writable_due_to_send_msg(t, s);
|
1257
|
+
}
|
1258
|
+
|
1259
|
+
static void continue_fetching_send_locked(grpc_chttp2_transport* t,
|
1260
|
+
grpc_chttp2_stream* s) {
|
1261
|
+
for (;;) {
|
1262
|
+
if (s->fetching_send_message == nullptr) {
|
1263
|
+
/* Stream was cancelled before message fetch completed */
|
1264
|
+
abort(); /* TODO(ctiller): what cleanup here? */
|
1265
|
+
return; /* early out */
|
1266
|
+
}
|
1267
|
+
if (s->fetched_send_message_length == s->fetching_send_message->length()) {
|
1268
|
+
int64_t notify_offset = s->next_message_end_offset;
|
1269
|
+
if (notify_offset <= s->flow_controlled_bytes_written) {
|
1270
|
+
grpc_chttp2_complete_closure_step(
|
1271
|
+
t, s, &s->fetching_send_message_finished, GRPC_ERROR_NONE,
|
1272
|
+
"fetching_send_message_finished");
|
1273
|
+
} else {
|
1274
|
+
grpc_chttp2_write_cb* cb = t->write_cb_pool;
|
1275
|
+
if (cb == nullptr) {
|
1276
|
+
cb = static_cast<grpc_chttp2_write_cb*>(gpr_malloc(sizeof(*cb)));
|
1277
|
+
} else {
|
1278
|
+
t->write_cb_pool = cb->next;
|
1279
|
+
}
|
1280
|
+
cb->call_at_byte = notify_offset;
|
1281
|
+
cb->closure = s->fetching_send_message_finished;
|
1282
|
+
s->fetching_send_message_finished = nullptr;
|
1283
|
+
grpc_chttp2_write_cb** list =
|
1284
|
+
s->fetching_send_message->flags() & GRPC_WRITE_THROUGH
|
1285
|
+
? &s->on_write_finished_cbs
|
1286
|
+
: &s->on_flow_controlled_cbs;
|
1287
|
+
cb->next = *list;
|
1288
|
+
*list = cb;
|
1289
|
+
}
|
1290
|
+
s->fetching_send_message.reset();
|
1291
|
+
return; /* early out */
|
1292
|
+
} else if (s->fetching_send_message->Next(
|
1293
|
+
UINT32_MAX, GRPC_CLOSURE_INIT(&s->complete_fetch_locked,
|
1294
|
+
::complete_fetch, s,
|
1295
|
+
grpc_schedule_on_exec_ctx))) {
|
1296
|
+
grpc_error* error = s->fetching_send_message->Pull(&s->fetching_slice);
|
1297
|
+
if (error != GRPC_ERROR_NONE) {
|
1298
|
+
s->fetching_send_message.reset();
|
1299
|
+
grpc_chttp2_cancel_stream(t, s, error);
|
1300
|
+
} else {
|
1301
|
+
add_fetched_slice_locked(t, s);
|
1302
|
+
}
|
1303
|
+
}
|
1304
|
+
}
|
1305
|
+
}
|
1306
|
+
|
1307
|
+
static void complete_fetch(void* gs, grpc_error* error) {
|
1308
|
+
grpc_chttp2_stream* s = static_cast<grpc_chttp2_stream*>(gs);
|
1309
|
+
s->t->combiner->Run(GRPC_CLOSURE_INIT(&s->complete_fetch_locked,
|
1310
|
+
::complete_fetch_locked, s, nullptr),
|
1311
|
+
GRPC_ERROR_REF(error));
|
1312
|
+
}
|
1313
|
+
|
1314
|
+
static void complete_fetch_locked(void* gs, grpc_error* error) {
|
1315
|
+
grpc_chttp2_stream* s = static_cast<grpc_chttp2_stream*>(gs);
|
1316
|
+
grpc_chttp2_transport* t = s->t;
|
1317
|
+
if (error == GRPC_ERROR_NONE) {
|
1318
|
+
error = s->fetching_send_message->Pull(&s->fetching_slice);
|
1319
|
+
if (error == GRPC_ERROR_NONE) {
|
1320
|
+
add_fetched_slice_locked(t, s);
|
1321
|
+
continue_fetching_send_locked(t, s);
|
1322
|
+
}
|
1323
|
+
}
|
1324
|
+
if (error != GRPC_ERROR_NONE) {
|
1325
|
+
s->fetching_send_message.reset();
|
1326
|
+
grpc_chttp2_cancel_stream(t, s, error);
|
1327
|
+
}
|
1328
|
+
}
|
1329
|
+
|
1330
|
+
static void log_metadata(const grpc_metadata_batch* md_batch, uint32_t id,
|
1331
|
+
bool is_client, bool is_initial) {
|
1332
|
+
for (grpc_linked_mdelem* md = md_batch->list.head; md != nullptr;
|
1333
|
+
md = md->next) {
|
1334
|
+
char* key = grpc_slice_to_c_string(GRPC_MDKEY(md->md));
|
1335
|
+
char* value = grpc_slice_to_c_string(GRPC_MDVALUE(md->md));
|
1336
|
+
gpr_log(GPR_INFO, "HTTP:%d:%s:%s: %s: %s", id, is_initial ? "HDR" : "TRL",
|
1337
|
+
is_client ? "CLI" : "SVR", key, value);
|
1338
|
+
gpr_free(key);
|
1339
|
+
gpr_free(value);
|
1340
|
+
}
|
1341
|
+
}
|
1342
|
+
|
1343
|
+
static void perform_stream_op_locked(void* stream_op,
|
1344
|
+
grpc_error* /*error_ignored*/) {
|
1345
|
+
GPR_TIMER_SCOPE("perform_stream_op_locked", 0);
|
1346
|
+
|
1347
|
+
grpc_transport_stream_op_batch* op =
|
1348
|
+
static_cast<grpc_transport_stream_op_batch*>(stream_op);
|
1349
|
+
grpc_chttp2_stream* s =
|
1350
|
+
static_cast<grpc_chttp2_stream*>(op->handler_private.extra_arg);
|
1351
|
+
grpc_transport_stream_op_batch_payload* op_payload = op->payload;
|
1352
|
+
grpc_chttp2_transport* t = s->t;
|
1353
|
+
|
1354
|
+
GRPC_STATS_INC_HTTP2_OP_BATCHES();
|
1355
|
+
|
1356
|
+
s->context = op->payload->context;
|
1357
|
+
s->traced = op->is_traced;
|
1358
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_http_trace)) {
|
1359
|
+
gpr_log(GPR_INFO, "perform_stream_op_locked: %s; on_complete = %p",
|
1360
|
+
grpc_transport_stream_op_batch_string(op).c_str(), op->on_complete);
|
1361
|
+
if (op->send_initial_metadata) {
|
1362
|
+
log_metadata(op_payload->send_initial_metadata.send_initial_metadata,
|
1363
|
+
s->id, t->is_client, true);
|
1364
|
+
}
|
1365
|
+
if (op->send_trailing_metadata) {
|
1366
|
+
log_metadata(op_payload->send_trailing_metadata.send_trailing_metadata,
|
1367
|
+
s->id, t->is_client, false);
|
1368
|
+
}
|
1369
|
+
}
|
1370
|
+
|
1371
|
+
grpc_closure* on_complete = op->on_complete;
|
1372
|
+
// on_complete will be null if and only if there are no send ops in the batch.
|
1373
|
+
if (on_complete != nullptr) {
|
1374
|
+
// This batch has send ops. Use final_data as a barrier until enqueue time;
|
1375
|
+
// the initial counter is dropped at the end of this function.
|
1376
|
+
on_complete->next_data.scratch = CLOSURE_BARRIER_FIRST_REF_BIT;
|
1377
|
+
on_complete->error_data.error = GRPC_ERROR_NONE;
|
1378
|
+
}
|
1379
|
+
|
1380
|
+
if (op->cancel_stream) {
|
1381
|
+
GRPC_STATS_INC_HTTP2_OP_CANCEL();
|
1382
|
+
grpc_chttp2_cancel_stream(t, s, op_payload->cancel_stream.cancel_error);
|
1383
|
+
}
|
1384
|
+
|
1385
|
+
if (op->send_initial_metadata) {
|
1386
|
+
if (t->is_client && t->channelz_socket != nullptr) {
|
1387
|
+
t->channelz_socket->RecordStreamStartedFromLocal();
|
1388
|
+
}
|
1389
|
+
GRPC_STATS_INC_HTTP2_OP_SEND_INITIAL_METADATA();
|
1390
|
+
GPR_ASSERT(s->send_initial_metadata_finished == nullptr);
|
1391
|
+
on_complete->next_data.scratch |= CLOSURE_BARRIER_MAY_COVER_WRITE;
|
1392
|
+
|
1393
|
+
/* Identify stream compression */
|
1394
|
+
if (op_payload->send_initial_metadata.send_initial_metadata->idx.named
|
1395
|
+
.content_encoding == nullptr ||
|
1396
|
+
grpc_stream_compression_method_parse(
|
1397
|
+
GRPC_MDVALUE(
|
1398
|
+
op_payload->send_initial_metadata.send_initial_metadata->idx
|
1399
|
+
.named.content_encoding->md),
|
1400
|
+
true, &s->stream_compression_method) == 0) {
|
1401
|
+
s->stream_compression_method = GRPC_STREAM_COMPRESSION_IDENTITY_COMPRESS;
|
1402
|
+
}
|
1403
|
+
if (s->stream_compression_method !=
|
1404
|
+
GRPC_STREAM_COMPRESSION_IDENTITY_COMPRESS) {
|
1405
|
+
s->uncompressed_data_size = 0;
|
1406
|
+
s->stream_compression_ctx = nullptr;
|
1407
|
+
grpc_slice_buffer_init(&s->compressed_data_buffer);
|
1408
|
+
}
|
1409
|
+
s->send_initial_metadata_finished = add_closure_barrier(on_complete);
|
1410
|
+
s->send_initial_metadata =
|
1411
|
+
op_payload->send_initial_metadata.send_initial_metadata;
|
1412
|
+
const size_t metadata_size =
|
1413
|
+
grpc_metadata_batch_size(s->send_initial_metadata);
|
1414
|
+
const size_t metadata_peer_limit =
|
1415
|
+
t->settings[GRPC_PEER_SETTINGS]
|
1416
|
+
[GRPC_CHTTP2_SETTINGS_MAX_HEADER_LIST_SIZE];
|
1417
|
+
if (t->is_client) {
|
1418
|
+
s->deadline = GPR_MIN(s->deadline, s->send_initial_metadata->deadline);
|
1419
|
+
}
|
1420
|
+
if (metadata_size > metadata_peer_limit) {
|
1421
|
+
grpc_chttp2_cancel_stream(
|
1422
|
+
t, s,
|
1423
|
+
grpc_error_set_int(
|
1424
|
+
grpc_error_set_int(
|
1425
|
+
grpc_error_set_int(GRPC_ERROR_CREATE_FROM_STATIC_STRING(
|
1426
|
+
"to-be-sent initial metadata size "
|
1427
|
+
"exceeds peer limit"),
|
1428
|
+
GRPC_ERROR_INT_SIZE,
|
1429
|
+
static_cast<intptr_t>(metadata_size)),
|
1430
|
+
GRPC_ERROR_INT_LIMIT,
|
1431
|
+
static_cast<intptr_t>(metadata_peer_limit)),
|
1432
|
+
GRPC_ERROR_INT_GRPC_STATUS, GRPC_STATUS_RESOURCE_EXHAUSTED));
|
1433
|
+
} else {
|
1434
|
+
if (contains_non_ok_status(s->send_initial_metadata)) {
|
1435
|
+
s->seen_error = true;
|
1436
|
+
}
|
1437
|
+
if (!s->write_closed) {
|
1438
|
+
if (t->is_client) {
|
1439
|
+
if (t->closed_with_error == GRPC_ERROR_NONE) {
|
1440
|
+
GPR_ASSERT(s->id == 0);
|
1441
|
+
grpc_chttp2_list_add_waiting_for_concurrency(t, s);
|
1442
|
+
maybe_start_some_streams(t);
|
1443
|
+
} else {
|
1444
|
+
grpc_chttp2_cancel_stream(
|
1445
|
+
t, s,
|
1446
|
+
grpc_error_set_int(
|
1447
|
+
GRPC_ERROR_CREATE_REFERENCING_FROM_STATIC_STRING(
|
1448
|
+
"Transport closed", &t->closed_with_error, 1),
|
1449
|
+
GRPC_ERROR_INT_GRPC_STATUS, GRPC_STATUS_UNAVAILABLE));
|
1450
|
+
}
|
1451
|
+
} else {
|
1452
|
+
GPR_ASSERT(s->id != 0);
|
1453
|
+
grpc_chttp2_mark_stream_writable(t, s);
|
1454
|
+
if (!(op->send_message &&
|
1455
|
+
(op->payload->send_message.send_message->flags() &
|
1456
|
+
GRPC_WRITE_BUFFER_HINT))) {
|
1457
|
+
grpc_chttp2_initiate_write(
|
1458
|
+
t, GRPC_CHTTP2_INITIATE_WRITE_SEND_INITIAL_METADATA);
|
1459
|
+
}
|
1460
|
+
}
|
1461
|
+
} else {
|
1462
|
+
s->send_initial_metadata = nullptr;
|
1463
|
+
grpc_chttp2_complete_closure_step(
|
1464
|
+
t, s, &s->send_initial_metadata_finished,
|
1465
|
+
GRPC_ERROR_CREATE_REFERENCING_FROM_STATIC_STRING(
|
1466
|
+
"Attempt to send initial metadata after stream was closed",
|
1467
|
+
&s->write_closed_error, 1),
|
1468
|
+
"send_initial_metadata_finished");
|
1469
|
+
}
|
1470
|
+
}
|
1471
|
+
if (op_payload->send_initial_metadata.peer_string != nullptr) {
|
1472
|
+
gpr_atm_rel_store(op_payload->send_initial_metadata.peer_string,
|
1473
|
+
(gpr_atm)t->peer_string);
|
1474
|
+
}
|
1475
|
+
}
|
1476
|
+
|
1477
|
+
if (op->send_message) {
|
1478
|
+
GRPC_STATS_INC_HTTP2_OP_SEND_MESSAGE();
|
1479
|
+
t->num_messages_in_next_write++;
|
1480
|
+
GRPC_STATS_INC_HTTP2_SEND_MESSAGE_SIZE(
|
1481
|
+
op->payload->send_message.send_message->length());
|
1482
|
+
on_complete->next_data.scratch |= CLOSURE_BARRIER_MAY_COVER_WRITE;
|
1483
|
+
s->fetching_send_message_finished = add_closure_barrier(op->on_complete);
|
1484
|
+
if (s->write_closed) {
|
1485
|
+
op->payload->send_message.stream_write_closed = true;
|
1486
|
+
// We should NOT return an error here, so as to avoid a cancel OP being
|
1487
|
+
// started. The surface layer will notice that the stream has been closed
|
1488
|
+
// for writes and fail the send message op.
|
1489
|
+
op->payload->send_message.send_message.reset();
|
1490
|
+
grpc_chttp2_complete_closure_step(
|
1491
|
+
t, s, &s->fetching_send_message_finished, GRPC_ERROR_NONE,
|
1492
|
+
"fetching_send_message_finished");
|
1493
|
+
} else {
|
1494
|
+
GPR_ASSERT(s->fetching_send_message == nullptr);
|
1495
|
+
uint8_t* frame_hdr = grpc_slice_buffer_tiny_add(
|
1496
|
+
&s->flow_controlled_buffer, GRPC_HEADER_SIZE_IN_BYTES);
|
1497
|
+
uint32_t flags = op_payload->send_message.send_message->flags();
|
1498
|
+
frame_hdr[0] = (flags & GRPC_WRITE_INTERNAL_COMPRESS) != 0;
|
1499
|
+
size_t len = op_payload->send_message.send_message->length();
|
1500
|
+
frame_hdr[1] = static_cast<uint8_t>(len >> 24);
|
1501
|
+
frame_hdr[2] = static_cast<uint8_t>(len >> 16);
|
1502
|
+
frame_hdr[3] = static_cast<uint8_t>(len >> 8);
|
1503
|
+
frame_hdr[4] = static_cast<uint8_t>(len);
|
1504
|
+
s->fetching_send_message =
|
1505
|
+
std::move(op_payload->send_message.send_message);
|
1506
|
+
s->fetched_send_message_length = 0;
|
1507
|
+
s->next_message_end_offset =
|
1508
|
+
s->flow_controlled_bytes_written +
|
1509
|
+
static_cast<int64_t>(s->flow_controlled_buffer.length) +
|
1510
|
+
static_cast<int64_t>(len);
|
1511
|
+
if (flags & GRPC_WRITE_BUFFER_HINT) {
|
1512
|
+
s->next_message_end_offset -= t->write_buffer_size;
|
1513
|
+
s->write_buffering = true;
|
1514
|
+
} else {
|
1515
|
+
s->write_buffering = false;
|
1516
|
+
}
|
1517
|
+
continue_fetching_send_locked(t, s);
|
1518
|
+
maybe_become_writable_due_to_send_msg(t, s);
|
1519
|
+
}
|
1520
|
+
}
|
1521
|
+
|
1522
|
+
if (op->send_trailing_metadata) {
|
1523
|
+
GRPC_STATS_INC_HTTP2_OP_SEND_TRAILING_METADATA();
|
1524
|
+
GPR_ASSERT(s->send_trailing_metadata_finished == nullptr);
|
1525
|
+
on_complete->next_data.scratch |= CLOSURE_BARRIER_MAY_COVER_WRITE;
|
1526
|
+
s->send_trailing_metadata_finished = add_closure_barrier(on_complete);
|
1527
|
+
s->send_trailing_metadata =
|
1528
|
+
op_payload->send_trailing_metadata.send_trailing_metadata;
|
1529
|
+
s->write_buffering = false;
|
1530
|
+
const size_t metadata_size =
|
1531
|
+
grpc_metadata_batch_size(s->send_trailing_metadata);
|
1532
|
+
const size_t metadata_peer_limit =
|
1533
|
+
t->settings[GRPC_PEER_SETTINGS]
|
1534
|
+
[GRPC_CHTTP2_SETTINGS_MAX_HEADER_LIST_SIZE];
|
1535
|
+
if (metadata_size > metadata_peer_limit) {
|
1536
|
+
grpc_chttp2_cancel_stream(
|
1537
|
+
t, s,
|
1538
|
+
grpc_error_set_int(
|
1539
|
+
grpc_error_set_int(
|
1540
|
+
grpc_error_set_int(GRPC_ERROR_CREATE_FROM_STATIC_STRING(
|
1541
|
+
"to-be-sent trailing metadata size "
|
1542
|
+
"exceeds peer limit"),
|
1543
|
+
GRPC_ERROR_INT_SIZE,
|
1544
|
+
static_cast<intptr_t>(metadata_size)),
|
1545
|
+
GRPC_ERROR_INT_LIMIT,
|
1546
|
+
static_cast<intptr_t>(metadata_peer_limit)),
|
1547
|
+
GRPC_ERROR_INT_GRPC_STATUS, GRPC_STATUS_RESOURCE_EXHAUSTED));
|
1548
|
+
} else {
|
1549
|
+
if (contains_non_ok_status(s->send_trailing_metadata)) {
|
1550
|
+
s->seen_error = true;
|
1551
|
+
}
|
1552
|
+
if (s->write_closed) {
|
1553
|
+
s->send_trailing_metadata = nullptr;
|
1554
|
+
grpc_chttp2_complete_closure_step(
|
1555
|
+
t, s, &s->send_trailing_metadata_finished,
|
1556
|
+
grpc_metadata_batch_is_empty(
|
1557
|
+
op->payload->send_trailing_metadata.send_trailing_metadata)
|
1558
|
+
? GRPC_ERROR_NONE
|
1559
|
+
: GRPC_ERROR_CREATE_FROM_STATIC_STRING(
|
1560
|
+
"Attempt to send trailing metadata after "
|
1561
|
+
"stream was closed"),
|
1562
|
+
"send_trailing_metadata_finished");
|
1563
|
+
} else if (s->id != 0) {
|
1564
|
+
/* TODO(ctiller): check if there's flow control for any outstanding
|
1565
|
+
bytes before going writable */
|
1566
|
+
grpc_chttp2_mark_stream_writable(t, s);
|
1567
|
+
grpc_chttp2_initiate_write(
|
1568
|
+
t, GRPC_CHTTP2_INITIATE_WRITE_SEND_TRAILING_METADATA);
|
1569
|
+
}
|
1570
|
+
}
|
1571
|
+
}
|
1572
|
+
|
1573
|
+
if (op->recv_initial_metadata) {
|
1574
|
+
GRPC_STATS_INC_HTTP2_OP_RECV_INITIAL_METADATA();
|
1575
|
+
GPR_ASSERT(s->recv_initial_metadata_ready == nullptr);
|
1576
|
+
s->recv_initial_metadata_ready =
|
1577
|
+
op_payload->recv_initial_metadata.recv_initial_metadata_ready;
|
1578
|
+
s->recv_initial_metadata =
|
1579
|
+
op_payload->recv_initial_metadata.recv_initial_metadata;
|
1580
|
+
s->trailing_metadata_available =
|
1581
|
+
op_payload->recv_initial_metadata.trailing_metadata_available;
|
1582
|
+
if (op_payload->recv_initial_metadata.peer_string != nullptr) {
|
1583
|
+
gpr_atm_rel_store(op_payload->recv_initial_metadata.peer_string,
|
1584
|
+
(gpr_atm)t->peer_string);
|
1585
|
+
}
|
1586
|
+
grpc_chttp2_maybe_complete_recv_initial_metadata(t, s);
|
1587
|
+
}
|
1588
|
+
|
1589
|
+
if (op->recv_message) {
|
1590
|
+
GRPC_STATS_INC_HTTP2_OP_RECV_MESSAGE();
|
1591
|
+
size_t before = 0;
|
1592
|
+
GPR_ASSERT(s->recv_message_ready == nullptr);
|
1593
|
+
GPR_ASSERT(!s->pending_byte_stream);
|
1594
|
+
s->recv_message_ready = op_payload->recv_message.recv_message_ready;
|
1595
|
+
s->recv_message = op_payload->recv_message.recv_message;
|
1596
|
+
if (s->id != 0) {
|
1597
|
+
if (!s->read_closed) {
|
1598
|
+
before = s->frame_storage.length +
|
1599
|
+
s->unprocessed_incoming_frames_buffer.length;
|
1600
|
+
}
|
1601
|
+
}
|
1602
|
+
grpc_chttp2_maybe_complete_recv_message(t, s);
|
1603
|
+
if (s->id != 0) {
|
1604
|
+
if (!s->read_closed && s->frame_storage.length == 0) {
|
1605
|
+
size_t after = s->frame_storage.length +
|
1606
|
+
s->unprocessed_incoming_frames_buffer_cached_length;
|
1607
|
+
s->flow_control->IncomingByteStreamUpdate(GRPC_HEADER_SIZE_IN_BYTES,
|
1608
|
+
before - after);
|
1609
|
+
grpc_chttp2_act_on_flowctl_action(s->flow_control->MakeAction(), t, s);
|
1610
|
+
}
|
1611
|
+
}
|
1612
|
+
}
|
1613
|
+
|
1614
|
+
if (op->recv_trailing_metadata) {
|
1615
|
+
GRPC_STATS_INC_HTTP2_OP_RECV_TRAILING_METADATA();
|
1616
|
+
GPR_ASSERT(s->collecting_stats == nullptr);
|
1617
|
+
s->collecting_stats = op_payload->recv_trailing_metadata.collect_stats;
|
1618
|
+
GPR_ASSERT(s->recv_trailing_metadata_finished == nullptr);
|
1619
|
+
s->recv_trailing_metadata_finished =
|
1620
|
+
op_payload->recv_trailing_metadata.recv_trailing_metadata_ready;
|
1621
|
+
s->recv_trailing_metadata =
|
1622
|
+
op_payload->recv_trailing_metadata.recv_trailing_metadata;
|
1623
|
+
s->final_metadata_requested = true;
|
1624
|
+
grpc_chttp2_maybe_complete_recv_trailing_metadata(t, s);
|
1625
|
+
}
|
1626
|
+
|
1627
|
+
if (on_complete != nullptr) {
|
1628
|
+
grpc_chttp2_complete_closure_step(t, s, &on_complete, GRPC_ERROR_NONE,
|
1629
|
+
"op->on_complete");
|
1630
|
+
}
|
1631
|
+
|
1632
|
+
GRPC_CHTTP2_STREAM_UNREF(s, "perform_stream_op");
|
1633
|
+
}
|
1634
|
+
|
1635
|
+
static void perform_stream_op(grpc_transport* gt, grpc_stream* gs,
|
1636
|
+
grpc_transport_stream_op_batch* op) {
|
1637
|
+
GPR_TIMER_SCOPE("perform_stream_op", 0);
|
1638
|
+
grpc_chttp2_transport* t = reinterpret_cast<grpc_chttp2_transport*>(gt);
|
1639
|
+
grpc_chttp2_stream* s = reinterpret_cast<grpc_chttp2_stream*>(gs);
|
1640
|
+
|
1641
|
+
if (!t->is_client) {
|
1642
|
+
if (op->send_initial_metadata) {
|
1643
|
+
grpc_millis deadline =
|
1644
|
+
op->payload->send_initial_metadata.send_initial_metadata->deadline;
|
1645
|
+
GPR_ASSERT(deadline == GRPC_MILLIS_INF_FUTURE);
|
1646
|
+
}
|
1647
|
+
if (op->send_trailing_metadata) {
|
1648
|
+
grpc_millis deadline =
|
1649
|
+
op->payload->send_trailing_metadata.send_trailing_metadata->deadline;
|
1650
|
+
GPR_ASSERT(deadline == GRPC_MILLIS_INF_FUTURE);
|
1651
|
+
}
|
1652
|
+
}
|
1653
|
+
|
1654
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_http_trace)) {
|
1655
|
+
gpr_log(GPR_INFO, "perform_stream_op[s=%p]: %s", s,
|
1656
|
+
grpc_transport_stream_op_batch_string(op).c_str());
|
1657
|
+
}
|
1658
|
+
|
1659
|
+
GRPC_CHTTP2_STREAM_REF(s, "perform_stream_op");
|
1660
|
+
op->handler_private.extra_arg = gs;
|
1661
|
+
t->combiner->Run(GRPC_CLOSURE_INIT(&op->handler_private.closure,
|
1662
|
+
perform_stream_op_locked, op, nullptr),
|
1663
|
+
GRPC_ERROR_NONE);
|
1664
|
+
}
|
1665
|
+
|
1666
|
+
static void cancel_pings(grpc_chttp2_transport* t, grpc_error* error) {
|
1667
|
+
/* callback remaining pings: they're not allowed to call into the transport,
|
1668
|
+
and maybe they hold resources that need to be freed */
|
1669
|
+
grpc_chttp2_ping_queue* pq = &t->ping_queue;
|
1670
|
+
GPR_ASSERT(error != GRPC_ERROR_NONE);
|
1671
|
+
for (size_t j = 0; j < GRPC_CHTTP2_PCL_COUNT; j++) {
|
1672
|
+
grpc_closure_list_fail_all(&pq->lists[j], GRPC_ERROR_REF(error));
|
1673
|
+
grpc_core::ExecCtx::RunList(DEBUG_LOCATION, &pq->lists[j]);
|
1674
|
+
}
|
1675
|
+
GRPC_ERROR_UNREF(error);
|
1676
|
+
}
|
1677
|
+
|
1678
|
+
static void send_ping_locked(grpc_chttp2_transport* t,
|
1679
|
+
grpc_closure* on_initiate, grpc_closure* on_ack) {
|
1680
|
+
if (t->closed_with_error != GRPC_ERROR_NONE) {
|
1681
|
+
grpc_core::ExecCtx::Run(DEBUG_LOCATION, on_initiate,
|
1682
|
+
GRPC_ERROR_REF(t->closed_with_error));
|
1683
|
+
grpc_core::ExecCtx::Run(DEBUG_LOCATION, on_ack,
|
1684
|
+
GRPC_ERROR_REF(t->closed_with_error));
|
1685
|
+
return;
|
1686
|
+
}
|
1687
|
+
grpc_chttp2_ping_queue* pq = &t->ping_queue;
|
1688
|
+
grpc_closure_list_append(&pq->lists[GRPC_CHTTP2_PCL_INITIATE], on_initiate,
|
1689
|
+
GRPC_ERROR_NONE);
|
1690
|
+
grpc_closure_list_append(&pq->lists[GRPC_CHTTP2_PCL_NEXT], on_ack,
|
1691
|
+
GRPC_ERROR_NONE);
|
1692
|
+
}
|
1693
|
+
|
1694
|
+
/*
|
1695
|
+
* Specialized form of send_ping_locked for keepalive ping. If there is already
|
1696
|
+
* a ping in progress, the keepalive ping would piggyback onto that ping,
|
1697
|
+
* instead of waiting for that ping to complete and then starting a new ping.
|
1698
|
+
*/
|
1699
|
+
static void send_keepalive_ping_locked(grpc_chttp2_transport* t) {
|
1700
|
+
if (t->closed_with_error != GRPC_ERROR_NONE) {
|
1701
|
+
t->combiner->Run(GRPC_CLOSURE_INIT(&t->start_keepalive_ping_locked,
|
1702
|
+
start_keepalive_ping_locked, t, nullptr),
|
1703
|
+
GRPC_ERROR_REF(t->closed_with_error));
|
1704
|
+
t->combiner->Run(
|
1705
|
+
GRPC_CLOSURE_INIT(&t->finish_keepalive_ping_locked,
|
1706
|
+
finish_keepalive_ping_locked, t, nullptr),
|
1707
|
+
GRPC_ERROR_REF(t->closed_with_error));
|
1708
|
+
return;
|
1709
|
+
}
|
1710
|
+
grpc_chttp2_ping_queue* pq = &t->ping_queue;
|
1711
|
+
if (!grpc_closure_list_empty(pq->lists[GRPC_CHTTP2_PCL_INFLIGHT])) {
|
1712
|
+
/* There is a ping in flight. Add yourself to the inflight closure list. */
|
1713
|
+
t->combiner->Run(GRPC_CLOSURE_INIT(&t->start_keepalive_ping_locked,
|
1714
|
+
start_keepalive_ping_locked, t, nullptr),
|
1715
|
+
GRPC_ERROR_REF(t->closed_with_error));
|
1716
|
+
grpc_closure_list_append(
|
1717
|
+
&pq->lists[GRPC_CHTTP2_PCL_INFLIGHT],
|
1718
|
+
GRPC_CLOSURE_INIT(&t->finish_keepalive_ping_locked,
|
1719
|
+
finish_keepalive_ping, t, grpc_schedule_on_exec_ctx),
|
1720
|
+
GRPC_ERROR_NONE);
|
1721
|
+
return;
|
1722
|
+
}
|
1723
|
+
grpc_closure_list_append(
|
1724
|
+
&pq->lists[GRPC_CHTTP2_PCL_INITIATE],
|
1725
|
+
GRPC_CLOSURE_INIT(&t->start_keepalive_ping_locked, start_keepalive_ping,
|
1726
|
+
t, grpc_schedule_on_exec_ctx),
|
1727
|
+
GRPC_ERROR_NONE);
|
1728
|
+
grpc_closure_list_append(
|
1729
|
+
&pq->lists[GRPC_CHTTP2_PCL_NEXT],
|
1730
|
+
GRPC_CLOSURE_INIT(&t->finish_keepalive_ping_locked, finish_keepalive_ping,
|
1731
|
+
t, grpc_schedule_on_exec_ctx),
|
1732
|
+
GRPC_ERROR_NONE);
|
1733
|
+
}
|
1734
|
+
|
1735
|
+
void grpc_chttp2_retry_initiate_ping(void* tp, grpc_error* error) {
|
1736
|
+
grpc_chttp2_transport* t = static_cast<grpc_chttp2_transport*>(tp);
|
1737
|
+
t->combiner->Run(GRPC_CLOSURE_INIT(&t->retry_initiate_ping_locked,
|
1738
|
+
retry_initiate_ping_locked, t, nullptr),
|
1739
|
+
GRPC_ERROR_REF(error));
|
1740
|
+
}
|
1741
|
+
|
1742
|
+
static void retry_initiate_ping_locked(void* tp, grpc_error* error) {
|
1743
|
+
grpc_chttp2_transport* t = static_cast<grpc_chttp2_transport*>(tp);
|
1744
|
+
t->ping_state.is_delayed_ping_timer_set = false;
|
1745
|
+
if (error == GRPC_ERROR_NONE) {
|
1746
|
+
grpc_chttp2_initiate_write(t, GRPC_CHTTP2_INITIATE_WRITE_RETRY_SEND_PING);
|
1747
|
+
}
|
1748
|
+
GRPC_CHTTP2_UNREF_TRANSPORT(t, "retry_initiate_ping_locked");
|
1749
|
+
}
|
1750
|
+
|
1751
|
+
void grpc_chttp2_ack_ping(grpc_chttp2_transport* t, uint64_t id) {
|
1752
|
+
grpc_chttp2_ping_queue* pq = &t->ping_queue;
|
1753
|
+
if (pq->inflight_id != id) {
|
1754
|
+
char* from = grpc_endpoint_get_peer(t->ep);
|
1755
|
+
gpr_log(GPR_DEBUG, "Unknown ping response from %s: %" PRIx64, from, id);
|
1756
|
+
gpr_free(from);
|
1757
|
+
return;
|
1758
|
+
}
|
1759
|
+
grpc_core::ExecCtx::RunList(DEBUG_LOCATION,
|
1760
|
+
&pq->lists[GRPC_CHTTP2_PCL_INFLIGHT]);
|
1761
|
+
if (!grpc_closure_list_empty(pq->lists[GRPC_CHTTP2_PCL_NEXT])) {
|
1762
|
+
grpc_chttp2_initiate_write(t, GRPC_CHTTP2_INITIATE_WRITE_CONTINUE_PINGS);
|
1763
|
+
}
|
1764
|
+
}
|
1765
|
+
|
1766
|
+
static void send_goaway(grpc_chttp2_transport* t, grpc_error* error) {
|
1767
|
+
/* We want to log this irrespective of whether http tracing is enabled */
|
1768
|
+
gpr_log(GPR_INFO, "%s: Sending goaway err=%s", t->peer_string,
|
1769
|
+
grpc_error_string(error));
|
1770
|
+
t->sent_goaway_state = GRPC_CHTTP2_GOAWAY_SEND_SCHEDULED;
|
1771
|
+
grpc_http2_error_code http_error;
|
1772
|
+
grpc_slice slice;
|
1773
|
+
grpc_error_get_status(error, GRPC_MILLIS_INF_FUTURE, nullptr, &slice,
|
1774
|
+
&http_error, nullptr);
|
1775
|
+
grpc_chttp2_goaway_append(t->last_new_stream_id,
|
1776
|
+
static_cast<uint32_t>(http_error),
|
1777
|
+
grpc_slice_ref_internal(slice), &t->qbuf);
|
1778
|
+
grpc_chttp2_initiate_write(t, GRPC_CHTTP2_INITIATE_WRITE_GOAWAY_SENT);
|
1779
|
+
GRPC_ERROR_UNREF(error);
|
1780
|
+
}
|
1781
|
+
|
1782
|
+
void grpc_chttp2_add_ping_strike(grpc_chttp2_transport* t) {
|
1783
|
+
if (++t->ping_recv_state.ping_strikes > t->ping_policy.max_ping_strikes &&
|
1784
|
+
t->ping_policy.max_ping_strikes != 0) {
|
1785
|
+
send_goaway(t,
|
1786
|
+
grpc_error_set_int(
|
1787
|
+
GRPC_ERROR_CREATE_FROM_STATIC_STRING("too_many_pings"),
|
1788
|
+
GRPC_ERROR_INT_HTTP2_ERROR, GRPC_HTTP2_ENHANCE_YOUR_CALM));
|
1789
|
+
/*The transport will be closed after the write is done */
|
1790
|
+
close_transport_locked(
|
1791
|
+
t, grpc_error_set_int(
|
1792
|
+
GRPC_ERROR_CREATE_FROM_STATIC_STRING("Too many pings"),
|
1793
|
+
GRPC_ERROR_INT_GRPC_STATUS, GRPC_STATUS_UNAVAILABLE));
|
1794
|
+
}
|
1795
|
+
}
|
1796
|
+
|
1797
|
+
static void perform_transport_op_locked(void* stream_op,
|
1798
|
+
grpc_error* /*error_ignored*/) {
|
1799
|
+
grpc_transport_op* op = static_cast<grpc_transport_op*>(stream_op);
|
1800
|
+
grpc_chttp2_transport* t =
|
1801
|
+
static_cast<grpc_chttp2_transport*>(op->handler_private.extra_arg);
|
1802
|
+
|
1803
|
+
if (op->goaway_error) {
|
1804
|
+
send_goaway(t, op->goaway_error);
|
1805
|
+
}
|
1806
|
+
|
1807
|
+
if (op->set_accept_stream) {
|
1808
|
+
t->accept_stream_cb = op->set_accept_stream_fn;
|
1809
|
+
t->accept_stream_cb_user_data = op->set_accept_stream_user_data;
|
1810
|
+
}
|
1811
|
+
|
1812
|
+
if (op->bind_pollset) {
|
1813
|
+
grpc_endpoint_add_to_pollset(t->ep, op->bind_pollset);
|
1814
|
+
}
|
1815
|
+
|
1816
|
+
if (op->bind_pollset_set) {
|
1817
|
+
grpc_endpoint_add_to_pollset_set(t->ep, op->bind_pollset_set);
|
1818
|
+
}
|
1819
|
+
|
1820
|
+
if (op->send_ping.on_initiate != nullptr || op->send_ping.on_ack != nullptr) {
|
1821
|
+
send_ping_locked(t, op->send_ping.on_initiate, op->send_ping.on_ack);
|
1822
|
+
grpc_chttp2_initiate_write(t, GRPC_CHTTP2_INITIATE_WRITE_APPLICATION_PING);
|
1823
|
+
}
|
1824
|
+
|
1825
|
+
if (op->start_connectivity_watch != nullptr) {
|
1826
|
+
t->state_tracker.AddWatcher(op->start_connectivity_watch_state,
|
1827
|
+
std::move(op->start_connectivity_watch));
|
1828
|
+
}
|
1829
|
+
if (op->stop_connectivity_watch != nullptr) {
|
1830
|
+
t->state_tracker.RemoveWatcher(op->stop_connectivity_watch);
|
1831
|
+
}
|
1832
|
+
|
1833
|
+
if (op->disconnect_with_error != GRPC_ERROR_NONE) {
|
1834
|
+
close_transport_locked(t, op->disconnect_with_error);
|
1835
|
+
}
|
1836
|
+
|
1837
|
+
grpc_core::ExecCtx::Run(DEBUG_LOCATION, op->on_consumed, GRPC_ERROR_NONE);
|
1838
|
+
|
1839
|
+
GRPC_CHTTP2_UNREF_TRANSPORT(t, "transport_op");
|
1840
|
+
}
|
1841
|
+
|
1842
|
+
static void perform_transport_op(grpc_transport* gt, grpc_transport_op* op) {
|
1843
|
+
grpc_chttp2_transport* t = reinterpret_cast<grpc_chttp2_transport*>(gt);
|
1844
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_http_trace)) {
|
1845
|
+
gpr_log(GPR_INFO, "perform_transport_op[t=%p]: %s", t,
|
1846
|
+
grpc_transport_op_string(op).c_str());
|
1847
|
+
}
|
1848
|
+
op->handler_private.extra_arg = gt;
|
1849
|
+
GRPC_CHTTP2_REF_TRANSPORT(t, "transport_op");
|
1850
|
+
t->combiner->Run(GRPC_CLOSURE_INIT(&op->handler_private.closure,
|
1851
|
+
perform_transport_op_locked, op, nullptr),
|
1852
|
+
GRPC_ERROR_NONE);
|
1853
|
+
}
|
1854
|
+
|
1855
|
+
/*******************************************************************************
|
1856
|
+
* INPUT PROCESSING - GENERAL
|
1857
|
+
*/
|
1858
|
+
|
1859
|
+
void grpc_chttp2_maybe_complete_recv_initial_metadata(
|
1860
|
+
grpc_chttp2_transport* /*t*/, grpc_chttp2_stream* s) {
|
1861
|
+
if (s->recv_initial_metadata_ready != nullptr &&
|
1862
|
+
s->published_metadata[0] != GRPC_METADATA_NOT_PUBLISHED) {
|
1863
|
+
if (s->seen_error) {
|
1864
|
+
grpc_slice_buffer_reset_and_unref_internal(&s->frame_storage);
|
1865
|
+
if (!s->pending_byte_stream) {
|
1866
|
+
grpc_slice_buffer_reset_and_unref_internal(
|
1867
|
+
&s->unprocessed_incoming_frames_buffer);
|
1868
|
+
}
|
1869
|
+
}
|
1870
|
+
grpc_chttp2_incoming_metadata_buffer_publish(&s->metadata_buffer[0],
|
1871
|
+
s->recv_initial_metadata);
|
1872
|
+
null_then_sched_closure(&s->recv_initial_metadata_ready);
|
1873
|
+
}
|
1874
|
+
}
|
1875
|
+
|
1876
|
+
void grpc_chttp2_maybe_complete_recv_message(grpc_chttp2_transport* /*t*/,
|
1877
|
+
grpc_chttp2_stream* s) {
|
1878
|
+
grpc_error* error = GRPC_ERROR_NONE;
|
1879
|
+
if (s->recv_message_ready != nullptr) {
|
1880
|
+
*s->recv_message = nullptr;
|
1881
|
+
if (s->final_metadata_requested && s->seen_error) {
|
1882
|
+
grpc_slice_buffer_reset_and_unref_internal(&s->frame_storage);
|
1883
|
+
if (!s->pending_byte_stream) {
|
1884
|
+
grpc_slice_buffer_reset_and_unref_internal(
|
1885
|
+
&s->unprocessed_incoming_frames_buffer);
|
1886
|
+
}
|
1887
|
+
}
|
1888
|
+
if (!s->pending_byte_stream) {
|
1889
|
+
while (s->unprocessed_incoming_frames_buffer.length > 0 ||
|
1890
|
+
s->frame_storage.length > 0) {
|
1891
|
+
if (s->unprocessed_incoming_frames_buffer.length == 0) {
|
1892
|
+
grpc_slice_buffer_swap(&s->unprocessed_incoming_frames_buffer,
|
1893
|
+
&s->frame_storage);
|
1894
|
+
s->unprocessed_incoming_frames_decompressed = false;
|
1895
|
+
}
|
1896
|
+
if (!s->unprocessed_incoming_frames_decompressed &&
|
1897
|
+
s->stream_decompression_method !=
|
1898
|
+
GRPC_STREAM_COMPRESSION_IDENTITY_DECOMPRESS) {
|
1899
|
+
GPR_ASSERT(s->decompressed_data_buffer.length == 0);
|
1900
|
+
bool end_of_context;
|
1901
|
+
if (!s->stream_decompression_ctx) {
|
1902
|
+
s->stream_decompression_ctx =
|
1903
|
+
grpc_stream_compression_context_create(
|
1904
|
+
s->stream_decompression_method);
|
1905
|
+
}
|
1906
|
+
if (!grpc_stream_decompress(
|
1907
|
+
s->stream_decompression_ctx,
|
1908
|
+
&s->unprocessed_incoming_frames_buffer,
|
1909
|
+
&s->decompressed_data_buffer, nullptr,
|
1910
|
+
GRPC_HEADER_SIZE_IN_BYTES - s->decompressed_header_bytes,
|
1911
|
+
&end_of_context)) {
|
1912
|
+
grpc_slice_buffer_reset_and_unref_internal(&s->frame_storage);
|
1913
|
+
grpc_slice_buffer_reset_and_unref_internal(
|
1914
|
+
&s->unprocessed_incoming_frames_buffer);
|
1915
|
+
error = GRPC_ERROR_CREATE_FROM_STATIC_STRING(
|
1916
|
+
"Stream decompression error.");
|
1917
|
+
} else {
|
1918
|
+
s->decompressed_header_bytes += s->decompressed_data_buffer.length;
|
1919
|
+
if (s->decompressed_header_bytes == GRPC_HEADER_SIZE_IN_BYTES) {
|
1920
|
+
s->decompressed_header_bytes = 0;
|
1921
|
+
}
|
1922
|
+
error = grpc_deframe_unprocessed_incoming_frames(
|
1923
|
+
&s->data_parser, s, &s->decompressed_data_buffer, nullptr,
|
1924
|
+
s->recv_message);
|
1925
|
+
if (end_of_context) {
|
1926
|
+
grpc_stream_compression_context_destroy(
|
1927
|
+
s->stream_decompression_ctx);
|
1928
|
+
s->stream_decompression_ctx = nullptr;
|
1929
|
+
}
|
1930
|
+
}
|
1931
|
+
} else {
|
1932
|
+
error = grpc_deframe_unprocessed_incoming_frames(
|
1933
|
+
&s->data_parser, s, &s->unprocessed_incoming_frames_buffer,
|
1934
|
+
nullptr, s->recv_message);
|
1935
|
+
}
|
1936
|
+
if (error != GRPC_ERROR_NONE) {
|
1937
|
+
s->seen_error = true;
|
1938
|
+
grpc_slice_buffer_reset_and_unref_internal(&s->frame_storage);
|
1939
|
+
grpc_slice_buffer_reset_and_unref_internal(
|
1940
|
+
&s->unprocessed_incoming_frames_buffer);
|
1941
|
+
break;
|
1942
|
+
} else if (*s->recv_message != nullptr) {
|
1943
|
+
break;
|
1944
|
+
}
|
1945
|
+
}
|
1946
|
+
}
|
1947
|
+
// save the length of the buffer before handing control back to application
|
1948
|
+
// threads. Needed to support correct flow control bookkeeping
|
1949
|
+
s->unprocessed_incoming_frames_buffer_cached_length =
|
1950
|
+
s->unprocessed_incoming_frames_buffer.length;
|
1951
|
+
if (error == GRPC_ERROR_NONE && *s->recv_message != nullptr) {
|
1952
|
+
null_then_sched_closure(&s->recv_message_ready);
|
1953
|
+
} else if (s->published_metadata[1] != GRPC_METADATA_NOT_PUBLISHED) {
|
1954
|
+
*s->recv_message = nullptr;
|
1955
|
+
null_then_sched_closure(&s->recv_message_ready);
|
1956
|
+
}
|
1957
|
+
GRPC_ERROR_UNREF(error);
|
1958
|
+
}
|
1959
|
+
}
|
1960
|
+
|
1961
|
+
void grpc_chttp2_maybe_complete_recv_trailing_metadata(grpc_chttp2_transport* t,
|
1962
|
+
grpc_chttp2_stream* s) {
|
1963
|
+
grpc_chttp2_maybe_complete_recv_message(t, s);
|
1964
|
+
if (s->recv_trailing_metadata_finished != nullptr && s->read_closed &&
|
1965
|
+
s->write_closed) {
|
1966
|
+
if (s->seen_error || !t->is_client) {
|
1967
|
+
grpc_slice_buffer_reset_and_unref_internal(&s->frame_storage);
|
1968
|
+
if (!s->pending_byte_stream) {
|
1969
|
+
grpc_slice_buffer_reset_and_unref_internal(
|
1970
|
+
&s->unprocessed_incoming_frames_buffer);
|
1971
|
+
}
|
1972
|
+
}
|
1973
|
+
bool pending_data = s->pending_byte_stream ||
|
1974
|
+
s->unprocessed_incoming_frames_buffer.length > 0;
|
1975
|
+
if (s->read_closed && s->frame_storage.length > 0 && !pending_data &&
|
1976
|
+
!s->seen_error && s->recv_trailing_metadata_finished != nullptr) {
|
1977
|
+
/* Maybe some SYNC_FLUSH data is left in frame_storage. Consume them and
|
1978
|
+
* maybe decompress the next 5 bytes in the stream. */
|
1979
|
+
if (s->stream_decompression_method ==
|
1980
|
+
GRPC_STREAM_COMPRESSION_IDENTITY_DECOMPRESS) {
|
1981
|
+
grpc_slice_buffer_move_first(
|
1982
|
+
&s->frame_storage,
|
1983
|
+
GPR_MIN(s->frame_storage.length, GRPC_HEADER_SIZE_IN_BYTES),
|
1984
|
+
&s->unprocessed_incoming_frames_buffer);
|
1985
|
+
if (s->unprocessed_incoming_frames_buffer.length > 0) {
|
1986
|
+
s->unprocessed_incoming_frames_decompressed = true;
|
1987
|
+
pending_data = true;
|
1988
|
+
}
|
1989
|
+
} else {
|
1990
|
+
bool end_of_context;
|
1991
|
+
if (!s->stream_decompression_ctx) {
|
1992
|
+
s->stream_decompression_ctx = grpc_stream_compression_context_create(
|
1993
|
+
s->stream_decompression_method);
|
1994
|
+
}
|
1995
|
+
if (!grpc_stream_decompress(
|
1996
|
+
s->stream_decompression_ctx, &s->frame_storage,
|
1997
|
+
&s->unprocessed_incoming_frames_buffer, nullptr,
|
1998
|
+
GRPC_HEADER_SIZE_IN_BYTES, &end_of_context)) {
|
1999
|
+
grpc_slice_buffer_reset_and_unref_internal(&s->frame_storage);
|
2000
|
+
grpc_slice_buffer_reset_and_unref_internal(
|
2001
|
+
&s->unprocessed_incoming_frames_buffer);
|
2002
|
+
s->seen_error = true;
|
2003
|
+
} else {
|
2004
|
+
if (s->unprocessed_incoming_frames_buffer.length > 0) {
|
2005
|
+
s->unprocessed_incoming_frames_decompressed = true;
|
2006
|
+
pending_data = true;
|
2007
|
+
}
|
2008
|
+
if (end_of_context) {
|
2009
|
+
grpc_stream_compression_context_destroy(
|
2010
|
+
s->stream_decompression_ctx);
|
2011
|
+
s->stream_decompression_ctx = nullptr;
|
2012
|
+
}
|
2013
|
+
}
|
2014
|
+
}
|
2015
|
+
}
|
2016
|
+
if (s->read_closed && s->frame_storage.length == 0 && !pending_data &&
|
2017
|
+
s->recv_trailing_metadata_finished != nullptr) {
|
2018
|
+
grpc_transport_move_stats(&s->stats, s->collecting_stats);
|
2019
|
+
s->collecting_stats = nullptr;
|
2020
|
+
grpc_chttp2_incoming_metadata_buffer_publish(&s->metadata_buffer[1],
|
2021
|
+
s->recv_trailing_metadata);
|
2022
|
+
null_then_sched_closure(&s->recv_trailing_metadata_finished);
|
2023
|
+
}
|
2024
|
+
}
|
2025
|
+
}
|
2026
|
+
|
2027
|
+
static void remove_stream(grpc_chttp2_transport* t, uint32_t id,
|
2028
|
+
grpc_error* error) {
|
2029
|
+
grpc_chttp2_stream* s = static_cast<grpc_chttp2_stream*>(
|
2030
|
+
grpc_chttp2_stream_map_delete(&t->stream_map, id));
|
2031
|
+
GPR_DEBUG_ASSERT(s);
|
2032
|
+
if (t->incoming_stream == s) {
|
2033
|
+
t->incoming_stream = nullptr;
|
2034
|
+
grpc_chttp2_parsing_become_skip_parser(t);
|
2035
|
+
}
|
2036
|
+
if (s->pending_byte_stream) {
|
2037
|
+
if (s->on_next != nullptr) {
|
2038
|
+
grpc_core::Chttp2IncomingByteStream* bs = s->data_parser.parsing_frame;
|
2039
|
+
if (error == GRPC_ERROR_NONE) {
|
2040
|
+
error = GRPC_ERROR_CREATE_FROM_STATIC_STRING("Truncated message");
|
2041
|
+
}
|
2042
|
+
bs->PublishError(error);
|
2043
|
+
bs->Unref();
|
2044
|
+
s->data_parser.parsing_frame = nullptr;
|
2045
|
+
} else {
|
2046
|
+
GRPC_ERROR_UNREF(s->byte_stream_error);
|
2047
|
+
s->byte_stream_error = GRPC_ERROR_REF(error);
|
2048
|
+
}
|
2049
|
+
}
|
2050
|
+
|
2051
|
+
if (grpc_chttp2_stream_map_size(&t->stream_map) == 0) {
|
2052
|
+
post_benign_reclaimer(t);
|
2053
|
+
if (t->sent_goaway_state == GRPC_CHTTP2_GOAWAY_SENT) {
|
2054
|
+
close_transport_locked(
|
2055
|
+
t, GRPC_ERROR_CREATE_REFERENCING_FROM_STATIC_STRING(
|
2056
|
+
"Last stream closed after sending GOAWAY", &error, 1));
|
2057
|
+
}
|
2058
|
+
}
|
2059
|
+
if (grpc_chttp2_list_remove_writable_stream(t, s)) {
|
2060
|
+
GRPC_CHTTP2_STREAM_UNREF(s, "chttp2_writing:remove_stream");
|
2061
|
+
}
|
2062
|
+
|
2063
|
+
GRPC_ERROR_UNREF(error);
|
2064
|
+
|
2065
|
+
maybe_start_some_streams(t);
|
2066
|
+
}
|
2067
|
+
|
2068
|
+
void grpc_chttp2_cancel_stream(grpc_chttp2_transport* t, grpc_chttp2_stream* s,
|
2069
|
+
grpc_error* due_to_error) {
|
2070
|
+
if (!t->is_client && !s->sent_trailing_metadata &&
|
2071
|
+
grpc_error_has_clear_grpc_status(due_to_error)) {
|
2072
|
+
close_from_api(t, s, due_to_error);
|
2073
|
+
return;
|
2074
|
+
}
|
2075
|
+
|
2076
|
+
if (!s->read_closed || !s->write_closed) {
|
2077
|
+
if (s->id != 0) {
|
2078
|
+
grpc_http2_error_code http_error;
|
2079
|
+
grpc_error_get_status(due_to_error, s->deadline, nullptr, nullptr,
|
2080
|
+
&http_error, nullptr);
|
2081
|
+
grpc_chttp2_add_rst_stream_to_next_write(
|
2082
|
+
t, s->id, static_cast<uint32_t>(http_error), &s->stats.outgoing);
|
2083
|
+
grpc_chttp2_initiate_write(t, GRPC_CHTTP2_INITIATE_WRITE_RST_STREAM);
|
2084
|
+
}
|
2085
|
+
}
|
2086
|
+
if (due_to_error != GRPC_ERROR_NONE && !s->seen_error) {
|
2087
|
+
s->seen_error = true;
|
2088
|
+
}
|
2089
|
+
grpc_chttp2_mark_stream_closed(t, s, 1, 1, due_to_error);
|
2090
|
+
}
|
2091
|
+
|
2092
|
+
void grpc_chttp2_fake_status(grpc_chttp2_transport* t, grpc_chttp2_stream* s,
|
2093
|
+
grpc_error* error) {
|
2094
|
+
grpc_status_code status;
|
2095
|
+
grpc_slice slice;
|
2096
|
+
grpc_error_get_status(error, s->deadline, &status, &slice, nullptr, nullptr);
|
2097
|
+
if (status != GRPC_STATUS_OK) {
|
2098
|
+
s->seen_error = true;
|
2099
|
+
}
|
2100
|
+
/* stream_global->recv_trailing_metadata_finished gives us a
|
2101
|
+
last chance replacement: we've received trailing metadata,
|
2102
|
+
but something more important has become available to signal
|
2103
|
+
to the upper layers - drop what we've got, and then publish
|
2104
|
+
what we want - which is safe because we haven't told anyone
|
2105
|
+
about the metadata yet */
|
2106
|
+
if (s->published_metadata[1] == GRPC_METADATA_NOT_PUBLISHED ||
|
2107
|
+
s->recv_trailing_metadata_finished != nullptr) {
|
2108
|
+
char status_string[GPR_LTOA_MIN_BUFSIZE];
|
2109
|
+
gpr_ltoa(status, status_string);
|
2110
|
+
GRPC_LOG_IF_ERROR("add_status",
|
2111
|
+
grpc_chttp2_incoming_metadata_buffer_replace_or_add(
|
2112
|
+
&s->metadata_buffer[1],
|
2113
|
+
grpc_mdelem_from_slices(
|
2114
|
+
GRPC_MDSTR_GRPC_STATUS,
|
2115
|
+
grpc_core::UnmanagedMemorySlice(status_string))));
|
2116
|
+
if (!GRPC_SLICE_IS_EMPTY(slice)) {
|
2117
|
+
GRPC_LOG_IF_ERROR(
|
2118
|
+
"add_status_message",
|
2119
|
+
grpc_chttp2_incoming_metadata_buffer_replace_or_add(
|
2120
|
+
&s->metadata_buffer[1],
|
2121
|
+
grpc_mdelem_create(GRPC_MDSTR_GRPC_MESSAGE, slice, nullptr)));
|
2122
|
+
}
|
2123
|
+
s->published_metadata[1] = GRPC_METADATA_SYNTHESIZED_FROM_FAKE;
|
2124
|
+
grpc_chttp2_maybe_complete_recv_trailing_metadata(t, s);
|
2125
|
+
}
|
2126
|
+
|
2127
|
+
GRPC_ERROR_UNREF(error);
|
2128
|
+
}
|
2129
|
+
|
2130
|
+
static void add_error(grpc_error* error, grpc_error** refs, size_t* nrefs) {
|
2131
|
+
if (error == GRPC_ERROR_NONE) return;
|
2132
|
+
for (size_t i = 0; i < *nrefs; i++) {
|
2133
|
+
if (error == refs[i]) {
|
2134
|
+
return;
|
2135
|
+
}
|
2136
|
+
}
|
2137
|
+
refs[*nrefs] = error;
|
2138
|
+
++*nrefs;
|
2139
|
+
}
|
2140
|
+
|
2141
|
+
static grpc_error* removal_error(grpc_error* extra_error, grpc_chttp2_stream* s,
|
2142
|
+
const char* master_error_msg) {
|
2143
|
+
grpc_error* refs[3];
|
2144
|
+
size_t nrefs = 0;
|
2145
|
+
add_error(s->read_closed_error, refs, &nrefs);
|
2146
|
+
add_error(s->write_closed_error, refs, &nrefs);
|
2147
|
+
add_error(extra_error, refs, &nrefs);
|
2148
|
+
grpc_error* error = GRPC_ERROR_NONE;
|
2149
|
+
if (nrefs > 0) {
|
2150
|
+
error = GRPC_ERROR_CREATE_REFERENCING_FROM_STATIC_STRING(master_error_msg,
|
2151
|
+
refs, nrefs);
|
2152
|
+
}
|
2153
|
+
GRPC_ERROR_UNREF(extra_error);
|
2154
|
+
return error;
|
2155
|
+
}
|
2156
|
+
|
2157
|
+
static void flush_write_list(grpc_chttp2_transport* t, grpc_chttp2_stream* s,
|
2158
|
+
grpc_chttp2_write_cb** list, grpc_error* error) {
|
2159
|
+
while (*list) {
|
2160
|
+
grpc_chttp2_write_cb* cb = *list;
|
2161
|
+
*list = cb->next;
|
2162
|
+
grpc_chttp2_complete_closure_step(t, s, &cb->closure, GRPC_ERROR_REF(error),
|
2163
|
+
"on_write_finished_cb");
|
2164
|
+
cb->next = t->write_cb_pool;
|
2165
|
+
t->write_cb_pool = cb;
|
2166
|
+
}
|
2167
|
+
GRPC_ERROR_UNREF(error);
|
2168
|
+
}
|
2169
|
+
|
2170
|
+
void grpc_chttp2_fail_pending_writes(grpc_chttp2_transport* t,
|
2171
|
+
grpc_chttp2_stream* s, grpc_error* error) {
|
2172
|
+
error =
|
2173
|
+
removal_error(error, s, "Pending writes failed due to stream closure");
|
2174
|
+
s->send_initial_metadata = nullptr;
|
2175
|
+
grpc_chttp2_complete_closure_step(t, s, &s->send_initial_metadata_finished,
|
2176
|
+
GRPC_ERROR_REF(error),
|
2177
|
+
"send_initial_metadata_finished");
|
2178
|
+
|
2179
|
+
s->send_trailing_metadata = nullptr;
|
2180
|
+
grpc_chttp2_complete_closure_step(t, s, &s->send_trailing_metadata_finished,
|
2181
|
+
GRPC_ERROR_REF(error),
|
2182
|
+
"send_trailing_metadata_finished");
|
2183
|
+
|
2184
|
+
s->fetching_send_message.reset();
|
2185
|
+
grpc_chttp2_complete_closure_step(t, s, &s->fetching_send_message_finished,
|
2186
|
+
GRPC_ERROR_REF(error),
|
2187
|
+
"fetching_send_message_finished");
|
2188
|
+
flush_write_list(t, s, &s->on_write_finished_cbs, GRPC_ERROR_REF(error));
|
2189
|
+
flush_write_list(t, s, &s->on_flow_controlled_cbs, error);
|
2190
|
+
}
|
2191
|
+
|
2192
|
+
void grpc_chttp2_mark_stream_closed(grpc_chttp2_transport* t,
|
2193
|
+
grpc_chttp2_stream* s, int close_reads,
|
2194
|
+
int close_writes, grpc_error* error) {
|
2195
|
+
if (s->read_closed && s->write_closed) {
|
2196
|
+
/* already closed */
|
2197
|
+
grpc_chttp2_maybe_complete_recv_trailing_metadata(t, s);
|
2198
|
+
GRPC_ERROR_UNREF(error);
|
2199
|
+
return;
|
2200
|
+
}
|
2201
|
+
bool closed_read = false;
|
2202
|
+
bool became_closed = false;
|
2203
|
+
if (close_reads && !s->read_closed) {
|
2204
|
+
s->read_closed_error = GRPC_ERROR_REF(error);
|
2205
|
+
s->read_closed = true;
|
2206
|
+
closed_read = true;
|
2207
|
+
}
|
2208
|
+
if (close_writes && !s->write_closed) {
|
2209
|
+
s->write_closed_error = GRPC_ERROR_REF(error);
|
2210
|
+
s->write_closed = true;
|
2211
|
+
grpc_chttp2_fail_pending_writes(t, s, GRPC_ERROR_REF(error));
|
2212
|
+
}
|
2213
|
+
if (s->read_closed && s->write_closed) {
|
2214
|
+
became_closed = true;
|
2215
|
+
grpc_error* overall_error =
|
2216
|
+
removal_error(GRPC_ERROR_REF(error), s, "Stream removed");
|
2217
|
+
if (s->id != 0) {
|
2218
|
+
remove_stream(t, s->id, GRPC_ERROR_REF(overall_error));
|
2219
|
+
} else {
|
2220
|
+
/* Purge streams waiting on concurrency still waiting for id assignment */
|
2221
|
+
grpc_chttp2_list_remove_waiting_for_concurrency(t, s);
|
2222
|
+
}
|
2223
|
+
if (overall_error != GRPC_ERROR_NONE) {
|
2224
|
+
grpc_chttp2_fake_status(t, s, overall_error);
|
2225
|
+
}
|
2226
|
+
}
|
2227
|
+
if (closed_read) {
|
2228
|
+
for (int i = 0; i < 2; i++) {
|
2229
|
+
if (s->published_metadata[i] == GRPC_METADATA_NOT_PUBLISHED) {
|
2230
|
+
s->published_metadata[i] = GRPC_METADATA_PUBLISHED_AT_CLOSE;
|
2231
|
+
}
|
2232
|
+
}
|
2233
|
+
grpc_chttp2_maybe_complete_recv_initial_metadata(t, s);
|
2234
|
+
grpc_chttp2_maybe_complete_recv_message(t, s);
|
2235
|
+
}
|
2236
|
+
if (became_closed) {
|
2237
|
+
grpc_chttp2_maybe_complete_recv_trailing_metadata(t, s);
|
2238
|
+
GRPC_CHTTP2_STREAM_UNREF(s, "chttp2");
|
2239
|
+
}
|
2240
|
+
GRPC_ERROR_UNREF(error);
|
2241
|
+
}
|
2242
|
+
|
2243
|
+
static void close_from_api(grpc_chttp2_transport* t, grpc_chttp2_stream* s,
|
2244
|
+
grpc_error* error) {
|
2245
|
+
grpc_slice hdr;
|
2246
|
+
grpc_slice status_hdr;
|
2247
|
+
grpc_slice http_status_hdr;
|
2248
|
+
grpc_slice content_type_hdr;
|
2249
|
+
grpc_slice message_pfx;
|
2250
|
+
uint8_t* p;
|
2251
|
+
uint32_t len = 0;
|
2252
|
+
grpc_status_code grpc_status;
|
2253
|
+
grpc_slice slice;
|
2254
|
+
grpc_error_get_status(error, s->deadline, &grpc_status, &slice, nullptr,
|
2255
|
+
nullptr);
|
2256
|
+
|
2257
|
+
GPR_ASSERT(grpc_status >= 0 && (int)grpc_status < 100);
|
2258
|
+
|
2259
|
+
/* Hand roll a header block.
|
2260
|
+
This is unnecessarily ugly - at some point we should find a more
|
2261
|
+
elegant solution.
|
2262
|
+
It's complicated by the fact that our send machinery would be dead by
|
2263
|
+
the time we got around to sending this, so instead we ignore HPACK
|
2264
|
+
compression and just write the uncompressed bytes onto the wire. */
|
2265
|
+
if (!s->sent_initial_metadata) {
|
2266
|
+
http_status_hdr = GRPC_SLICE_MALLOC(13);
|
2267
|
+
p = GRPC_SLICE_START_PTR(http_status_hdr);
|
2268
|
+
*p++ = 0x00;
|
2269
|
+
*p++ = 7;
|
2270
|
+
*p++ = ':';
|
2271
|
+
*p++ = 's';
|
2272
|
+
*p++ = 't';
|
2273
|
+
*p++ = 'a';
|
2274
|
+
*p++ = 't';
|
2275
|
+
*p++ = 'u';
|
2276
|
+
*p++ = 's';
|
2277
|
+
*p++ = 3;
|
2278
|
+
*p++ = '2';
|
2279
|
+
*p++ = '0';
|
2280
|
+
*p++ = '0';
|
2281
|
+
GPR_ASSERT(p == GRPC_SLICE_END_PTR(http_status_hdr));
|
2282
|
+
len += static_cast<uint32_t> GRPC_SLICE_LENGTH(http_status_hdr);
|
2283
|
+
|
2284
|
+
content_type_hdr = GRPC_SLICE_MALLOC(31);
|
2285
|
+
p = GRPC_SLICE_START_PTR(content_type_hdr);
|
2286
|
+
*p++ = 0x00;
|
2287
|
+
*p++ = 12;
|
2288
|
+
*p++ = 'c';
|
2289
|
+
*p++ = 'o';
|
2290
|
+
*p++ = 'n';
|
2291
|
+
*p++ = 't';
|
2292
|
+
*p++ = 'e';
|
2293
|
+
*p++ = 'n';
|
2294
|
+
*p++ = 't';
|
2295
|
+
*p++ = '-';
|
2296
|
+
*p++ = 't';
|
2297
|
+
*p++ = 'y';
|
2298
|
+
*p++ = 'p';
|
2299
|
+
*p++ = 'e';
|
2300
|
+
*p++ = 16;
|
2301
|
+
*p++ = 'a';
|
2302
|
+
*p++ = 'p';
|
2303
|
+
*p++ = 'p';
|
2304
|
+
*p++ = 'l';
|
2305
|
+
*p++ = 'i';
|
2306
|
+
*p++ = 'c';
|
2307
|
+
*p++ = 'a';
|
2308
|
+
*p++ = 't';
|
2309
|
+
*p++ = 'i';
|
2310
|
+
*p++ = 'o';
|
2311
|
+
*p++ = 'n';
|
2312
|
+
*p++ = '/';
|
2313
|
+
*p++ = 'g';
|
2314
|
+
*p++ = 'r';
|
2315
|
+
*p++ = 'p';
|
2316
|
+
*p++ = 'c';
|
2317
|
+
GPR_ASSERT(p == GRPC_SLICE_END_PTR(content_type_hdr));
|
2318
|
+
len += static_cast<uint32_t> GRPC_SLICE_LENGTH(content_type_hdr);
|
2319
|
+
}
|
2320
|
+
|
2321
|
+
status_hdr = GRPC_SLICE_MALLOC(15 + (grpc_status >= 10));
|
2322
|
+
p = GRPC_SLICE_START_PTR(status_hdr);
|
2323
|
+
*p++ = 0x00; /* literal header, not indexed */
|
2324
|
+
*p++ = 11; /* len(grpc-status) */
|
2325
|
+
*p++ = 'g';
|
2326
|
+
*p++ = 'r';
|
2327
|
+
*p++ = 'p';
|
2328
|
+
*p++ = 'c';
|
2329
|
+
*p++ = '-';
|
2330
|
+
*p++ = 's';
|
2331
|
+
*p++ = 't';
|
2332
|
+
*p++ = 'a';
|
2333
|
+
*p++ = 't';
|
2334
|
+
*p++ = 'u';
|
2335
|
+
*p++ = 's';
|
2336
|
+
if (grpc_status < 10) {
|
2337
|
+
*p++ = 1;
|
2338
|
+
*p++ = static_cast<uint8_t>('0' + grpc_status);
|
2339
|
+
} else {
|
2340
|
+
*p++ = 2;
|
2341
|
+
*p++ = static_cast<uint8_t>('0' + (grpc_status / 10));
|
2342
|
+
*p++ = static_cast<uint8_t>('0' + (grpc_status % 10));
|
2343
|
+
}
|
2344
|
+
GPR_ASSERT(p == GRPC_SLICE_END_PTR(status_hdr));
|
2345
|
+
len += static_cast<uint32_t> GRPC_SLICE_LENGTH(status_hdr);
|
2346
|
+
|
2347
|
+
size_t msg_len = GRPC_SLICE_LENGTH(slice);
|
2348
|
+
GPR_ASSERT(msg_len <= UINT32_MAX);
|
2349
|
+
uint32_t msg_len_len = GRPC_CHTTP2_VARINT_LENGTH((uint32_t)msg_len, 1);
|
2350
|
+
message_pfx = GRPC_SLICE_MALLOC(14 + msg_len_len);
|
2351
|
+
p = GRPC_SLICE_START_PTR(message_pfx);
|
2352
|
+
*p++ = 0x00; /* literal header, not indexed */
|
2353
|
+
*p++ = 12; /* len(grpc-message) */
|
2354
|
+
*p++ = 'g';
|
2355
|
+
*p++ = 'r';
|
2356
|
+
*p++ = 'p';
|
2357
|
+
*p++ = 'c';
|
2358
|
+
*p++ = '-';
|
2359
|
+
*p++ = 'm';
|
2360
|
+
*p++ = 'e';
|
2361
|
+
*p++ = 's';
|
2362
|
+
*p++ = 's';
|
2363
|
+
*p++ = 'a';
|
2364
|
+
*p++ = 'g';
|
2365
|
+
*p++ = 'e';
|
2366
|
+
GRPC_CHTTP2_WRITE_VARINT((uint32_t)msg_len, 1, 0, p, (uint32_t)msg_len_len);
|
2367
|
+
p += msg_len_len;
|
2368
|
+
GPR_ASSERT(p == GRPC_SLICE_END_PTR(message_pfx));
|
2369
|
+
len += static_cast<uint32_t> GRPC_SLICE_LENGTH(message_pfx);
|
2370
|
+
len += static_cast<uint32_t>(msg_len);
|
2371
|
+
|
2372
|
+
hdr = GRPC_SLICE_MALLOC(9);
|
2373
|
+
p = GRPC_SLICE_START_PTR(hdr);
|
2374
|
+
*p++ = static_cast<uint8_t>(len >> 16);
|
2375
|
+
*p++ = static_cast<uint8_t>(len >> 8);
|
2376
|
+
*p++ = static_cast<uint8_t>(len);
|
2377
|
+
*p++ = GRPC_CHTTP2_FRAME_HEADER;
|
2378
|
+
*p++ = GRPC_CHTTP2_DATA_FLAG_END_STREAM | GRPC_CHTTP2_DATA_FLAG_END_HEADERS;
|
2379
|
+
*p++ = static_cast<uint8_t>(s->id >> 24);
|
2380
|
+
*p++ = static_cast<uint8_t>(s->id >> 16);
|
2381
|
+
*p++ = static_cast<uint8_t>(s->id >> 8);
|
2382
|
+
*p++ = static_cast<uint8_t>(s->id);
|
2383
|
+
GPR_ASSERT(p == GRPC_SLICE_END_PTR(hdr));
|
2384
|
+
|
2385
|
+
grpc_slice_buffer_add(&t->qbuf, hdr);
|
2386
|
+
if (!s->sent_initial_metadata) {
|
2387
|
+
grpc_slice_buffer_add(&t->qbuf, http_status_hdr);
|
2388
|
+
grpc_slice_buffer_add(&t->qbuf, content_type_hdr);
|
2389
|
+
}
|
2390
|
+
grpc_slice_buffer_add(&t->qbuf, status_hdr);
|
2391
|
+
grpc_slice_buffer_add(&t->qbuf, message_pfx);
|
2392
|
+
grpc_slice_buffer_add(&t->qbuf, grpc_slice_ref_internal(slice));
|
2393
|
+
grpc_chttp2_add_rst_stream_to_next_write(t, s->id, GRPC_HTTP2_NO_ERROR,
|
2394
|
+
&s->stats.outgoing);
|
2395
|
+
|
2396
|
+
grpc_chttp2_mark_stream_closed(t, s, 1, 1, error);
|
2397
|
+
grpc_chttp2_initiate_write(t, GRPC_CHTTP2_INITIATE_WRITE_CLOSE_FROM_API);
|
2398
|
+
}
|
2399
|
+
|
2400
|
+
struct cancel_stream_cb_args {
|
2401
|
+
grpc_error* error;
|
2402
|
+
grpc_chttp2_transport* t;
|
2403
|
+
};
|
2404
|
+
|
2405
|
+
static void cancel_stream_cb(void* user_data, uint32_t /*key*/, void* stream) {
|
2406
|
+
cancel_stream_cb_args* args = static_cast<cancel_stream_cb_args*>(user_data);
|
2407
|
+
grpc_chttp2_stream* s = static_cast<grpc_chttp2_stream*>(stream);
|
2408
|
+
grpc_chttp2_cancel_stream(args->t, s, GRPC_ERROR_REF(args->error));
|
2409
|
+
}
|
2410
|
+
|
2411
|
+
static void end_all_the_calls(grpc_chttp2_transport* t, grpc_error* error) {
|
2412
|
+
intptr_t http2_error;
|
2413
|
+
// If there is no explicit grpc or HTTP/2 error, set to UNAVAILABLE on server.
|
2414
|
+
if (!t->is_client && !grpc_error_has_clear_grpc_status(error) &&
|
2415
|
+
!grpc_error_get_int(error, GRPC_ERROR_INT_HTTP2_ERROR, &http2_error)) {
|
2416
|
+
error = grpc_error_set_int(error, GRPC_ERROR_INT_GRPC_STATUS,
|
2417
|
+
GRPC_STATUS_UNAVAILABLE);
|
2418
|
+
}
|
2419
|
+
cancel_stream_cb_args args = {error, t};
|
2420
|
+
grpc_chttp2_stream_map_for_each(&t->stream_map, cancel_stream_cb, &args);
|
2421
|
+
GRPC_ERROR_UNREF(error);
|
2422
|
+
}
|
2423
|
+
|
2424
|
+
/*******************************************************************************
|
2425
|
+
* INPUT PROCESSING - PARSING
|
2426
|
+
*/
|
2427
|
+
|
2428
|
+
template <class F>
|
2429
|
+
static void WithUrgency(grpc_chttp2_transport* t,
|
2430
|
+
grpc_core::chttp2::FlowControlAction::Urgency urgency,
|
2431
|
+
grpc_chttp2_initiate_write_reason reason, F action) {
|
2432
|
+
switch (urgency) {
|
2433
|
+
case grpc_core::chttp2::FlowControlAction::Urgency::NO_ACTION_NEEDED:
|
2434
|
+
break;
|
2435
|
+
case grpc_core::chttp2::FlowControlAction::Urgency::UPDATE_IMMEDIATELY:
|
2436
|
+
grpc_chttp2_initiate_write(t, reason);
|
2437
|
+
// fallthrough
|
2438
|
+
case grpc_core::chttp2::FlowControlAction::Urgency::QUEUE_UPDATE:
|
2439
|
+
action();
|
2440
|
+
break;
|
2441
|
+
}
|
2442
|
+
}
|
2443
|
+
|
2444
|
+
void grpc_chttp2_act_on_flowctl_action(
|
2445
|
+
const grpc_core::chttp2::FlowControlAction& action,
|
2446
|
+
grpc_chttp2_transport* t, grpc_chttp2_stream* s) {
|
2447
|
+
WithUrgency(t, action.send_stream_update(),
|
2448
|
+
GRPC_CHTTP2_INITIATE_WRITE_STREAM_FLOW_CONTROL,
|
2449
|
+
[t, s]() { grpc_chttp2_mark_stream_writable(t, s); });
|
2450
|
+
WithUrgency(t, action.send_transport_update(),
|
2451
|
+
GRPC_CHTTP2_INITIATE_WRITE_TRANSPORT_FLOW_CONTROL, []() {});
|
2452
|
+
WithUrgency(t, action.send_initial_window_update(),
|
2453
|
+
GRPC_CHTTP2_INITIATE_WRITE_SEND_SETTINGS, [t, &action]() {
|
2454
|
+
queue_setting_update(t,
|
2455
|
+
GRPC_CHTTP2_SETTINGS_INITIAL_WINDOW_SIZE,
|
2456
|
+
action.initial_window_size());
|
2457
|
+
});
|
2458
|
+
WithUrgency(t, action.send_max_frame_size_update(),
|
2459
|
+
GRPC_CHTTP2_INITIATE_WRITE_SEND_SETTINGS, [t, &action]() {
|
2460
|
+
queue_setting_update(t, GRPC_CHTTP2_SETTINGS_MAX_FRAME_SIZE,
|
2461
|
+
action.max_frame_size());
|
2462
|
+
});
|
2463
|
+
}
|
2464
|
+
|
2465
|
+
static grpc_error* try_http_parsing(grpc_chttp2_transport* t) {
|
2466
|
+
grpc_http_parser parser;
|
2467
|
+
size_t i = 0;
|
2468
|
+
grpc_error* error = GRPC_ERROR_NONE;
|
2469
|
+
grpc_http_response response;
|
2470
|
+
|
2471
|
+
grpc_http_parser_init(&parser, GRPC_HTTP_RESPONSE, &response);
|
2472
|
+
|
2473
|
+
grpc_error* parse_error = GRPC_ERROR_NONE;
|
2474
|
+
for (; i < t->read_buffer.count && parse_error == GRPC_ERROR_NONE; i++) {
|
2475
|
+
parse_error =
|
2476
|
+
grpc_http_parser_parse(&parser, t->read_buffer.slices[i], nullptr);
|
2477
|
+
}
|
2478
|
+
if (parse_error == GRPC_ERROR_NONE &&
|
2479
|
+
(parse_error = grpc_http_parser_eof(&parser)) == GRPC_ERROR_NONE) {
|
2480
|
+
error = grpc_error_set_int(
|
2481
|
+
grpc_error_set_int(GRPC_ERROR_CREATE_FROM_STATIC_STRING(
|
2482
|
+
"Trying to connect an http1.x server"),
|
2483
|
+
GRPC_ERROR_INT_HTTP_STATUS, response.status),
|
2484
|
+
GRPC_ERROR_INT_GRPC_STATUS,
|
2485
|
+
grpc_http2_status_to_grpc_status(response.status));
|
2486
|
+
}
|
2487
|
+
GRPC_ERROR_UNREF(parse_error);
|
2488
|
+
|
2489
|
+
grpc_http_parser_destroy(&parser);
|
2490
|
+
grpc_http_response_destroy(&response);
|
2491
|
+
return error;
|
2492
|
+
}
|
2493
|
+
|
2494
|
+
static void read_action(void* tp, grpc_error* error) {
|
2495
|
+
grpc_chttp2_transport* t = static_cast<grpc_chttp2_transport*>(tp);
|
2496
|
+
t->combiner->Run(
|
2497
|
+
GRPC_CLOSURE_INIT(&t->read_action_locked, read_action_locked, t, nullptr),
|
2498
|
+
GRPC_ERROR_REF(error));
|
2499
|
+
}
|
2500
|
+
|
2501
|
+
static void read_action_locked(void* tp, grpc_error* error) {
|
2502
|
+
GPR_TIMER_SCOPE("reading_action_locked", 0);
|
2503
|
+
|
2504
|
+
grpc_chttp2_transport* t = static_cast<grpc_chttp2_transport*>(tp);
|
2505
|
+
|
2506
|
+
GRPC_ERROR_REF(error);
|
2507
|
+
|
2508
|
+
grpc_error* err = error;
|
2509
|
+
if (err != GRPC_ERROR_NONE) {
|
2510
|
+
err = grpc_error_set_int(GRPC_ERROR_CREATE_REFERENCING_FROM_STATIC_STRING(
|
2511
|
+
"Endpoint read failed", &err, 1),
|
2512
|
+
GRPC_ERROR_INT_OCCURRED_DURING_WRITE,
|
2513
|
+
t->write_state);
|
2514
|
+
}
|
2515
|
+
GPR_SWAP(grpc_error*, err, error);
|
2516
|
+
GRPC_ERROR_UNREF(err);
|
2517
|
+
if (t->closed_with_error == GRPC_ERROR_NONE) {
|
2518
|
+
GPR_TIMER_SCOPE("reading_action.parse", 0);
|
2519
|
+
size_t i = 0;
|
2520
|
+
grpc_error* errors[3] = {GRPC_ERROR_REF(error), GRPC_ERROR_NONE,
|
2521
|
+
GRPC_ERROR_NONE};
|
2522
|
+
for (; i < t->read_buffer.count && errors[1] == GRPC_ERROR_NONE; i++) {
|
2523
|
+
grpc_core::BdpEstimator* bdp_est = t->flow_control->bdp_estimator();
|
2524
|
+
if (bdp_est) {
|
2525
|
+
bdp_est->AddIncomingBytes(
|
2526
|
+
static_cast<int64_t> GRPC_SLICE_LENGTH(t->read_buffer.slices[i]));
|
2527
|
+
}
|
2528
|
+
errors[1] = grpc_chttp2_perform_read(t, t->read_buffer.slices[i]);
|
2529
|
+
}
|
2530
|
+
if (errors[1] != GRPC_ERROR_NONE) {
|
2531
|
+
errors[2] = try_http_parsing(t);
|
2532
|
+
GRPC_ERROR_UNREF(error);
|
2533
|
+
error = GRPC_ERROR_CREATE_REFERENCING_FROM_STATIC_STRING(
|
2534
|
+
"Failed parsing HTTP/2", errors, GPR_ARRAY_SIZE(errors));
|
2535
|
+
}
|
2536
|
+
for (i = 0; i < GPR_ARRAY_SIZE(errors); i++) {
|
2537
|
+
GRPC_ERROR_UNREF(errors[i]);
|
2538
|
+
}
|
2539
|
+
|
2540
|
+
GPR_TIMER_SCOPE("post_parse_locked", 0);
|
2541
|
+
if (t->initial_window_update != 0) {
|
2542
|
+
if (t->initial_window_update > 0) {
|
2543
|
+
grpc_chttp2_stream* s;
|
2544
|
+
while (grpc_chttp2_list_pop_stalled_by_stream(t, &s)) {
|
2545
|
+
grpc_chttp2_mark_stream_writable(t, s);
|
2546
|
+
grpc_chttp2_initiate_write(
|
2547
|
+
t, GRPC_CHTTP2_INITIATE_WRITE_FLOW_CONTROL_UNSTALLED_BY_SETTING);
|
2548
|
+
}
|
2549
|
+
}
|
2550
|
+
t->initial_window_update = 0;
|
2551
|
+
}
|
2552
|
+
}
|
2553
|
+
|
2554
|
+
GPR_TIMER_SCOPE("post_reading_action_locked", 0);
|
2555
|
+
bool keep_reading = false;
|
2556
|
+
if (error == GRPC_ERROR_NONE && t->closed_with_error != GRPC_ERROR_NONE) {
|
2557
|
+
error = GRPC_ERROR_CREATE_REFERENCING_FROM_STATIC_STRING(
|
2558
|
+
"Transport closed", &t->closed_with_error, 1);
|
2559
|
+
}
|
2560
|
+
if (error != GRPC_ERROR_NONE) {
|
2561
|
+
/* If a goaway frame was received, this might be the reason why the read
|
2562
|
+
* failed. Add this info to the error */
|
2563
|
+
if (t->goaway_error != GRPC_ERROR_NONE) {
|
2564
|
+
error = grpc_error_add_child(error, GRPC_ERROR_REF(t->goaway_error));
|
2565
|
+
}
|
2566
|
+
|
2567
|
+
close_transport_locked(t, GRPC_ERROR_REF(error));
|
2568
|
+
t->endpoint_reading = 0;
|
2569
|
+
} else if (t->closed_with_error == GRPC_ERROR_NONE) {
|
2570
|
+
keep_reading = true;
|
2571
|
+
/* Since we have read a byte, reset the keepalive timer */
|
2572
|
+
if (t->keepalive_state == GRPC_CHTTP2_KEEPALIVE_STATE_WAITING) {
|
2573
|
+
grpc_timer_cancel(&t->keepalive_ping_timer);
|
2574
|
+
}
|
2575
|
+
}
|
2576
|
+
grpc_slice_buffer_reset_and_unref_internal(&t->read_buffer);
|
2577
|
+
|
2578
|
+
if (keep_reading) {
|
2579
|
+
if (t->num_pending_induced_frames >= DEFAULT_MAX_PENDING_INDUCED_FRAMES) {
|
2580
|
+
t->reading_paused_on_pending_induced_frames = true;
|
2581
|
+
GRPC_CHTTP2_IF_TRACING(
|
2582
|
+
gpr_log(GPR_INFO,
|
2583
|
+
"transport %p : Pausing reading due to too "
|
2584
|
+
"many unwritten SETTINGS ACK and RST_STREAM frames",
|
2585
|
+
t));
|
2586
|
+
} else {
|
2587
|
+
continue_read_action_locked(t);
|
2588
|
+
}
|
2589
|
+
} else {
|
2590
|
+
GRPC_CHTTP2_UNREF_TRANSPORT(t, "reading_action");
|
2591
|
+
}
|
2592
|
+
|
2593
|
+
GRPC_ERROR_UNREF(error);
|
2594
|
+
}
|
2595
|
+
|
2596
|
+
static void continue_read_action_locked(grpc_chttp2_transport* t) {
|
2597
|
+
const bool urgent = t->goaway_error != GRPC_ERROR_NONE;
|
2598
|
+
GRPC_CLOSURE_INIT(&t->read_action_locked, read_action, t,
|
2599
|
+
grpc_schedule_on_exec_ctx);
|
2600
|
+
grpc_endpoint_read(t->ep, &t->read_buffer, &t->read_action_locked, urgent);
|
2601
|
+
grpc_chttp2_act_on_flowctl_action(t->flow_control->MakeAction(), t, nullptr);
|
2602
|
+
}
|
2603
|
+
|
2604
|
+
// t is reffed prior to calling the first time, and once the callback chain
|
2605
|
+
// that kicks off finishes, it's unreffed
|
2606
|
+
static void schedule_bdp_ping_locked(grpc_chttp2_transport* t) {
|
2607
|
+
t->flow_control->bdp_estimator()->SchedulePing();
|
2608
|
+
send_ping_locked(
|
2609
|
+
t,
|
2610
|
+
GRPC_CLOSURE_INIT(&t->start_bdp_ping_locked, start_bdp_ping, t,
|
2611
|
+
grpc_schedule_on_exec_ctx),
|
2612
|
+
GRPC_CLOSURE_INIT(&t->finish_bdp_ping_locked, finish_bdp_ping, t,
|
2613
|
+
grpc_schedule_on_exec_ctx));
|
2614
|
+
}
|
2615
|
+
|
2616
|
+
static void start_bdp_ping(void* tp, grpc_error* error) {
|
2617
|
+
grpc_chttp2_transport* t = static_cast<grpc_chttp2_transport*>(tp);
|
2618
|
+
t->combiner->Run(GRPC_CLOSURE_INIT(&t->start_bdp_ping_locked,
|
2619
|
+
start_bdp_ping_locked, t, nullptr),
|
2620
|
+
GRPC_ERROR_REF(error));
|
2621
|
+
}
|
2622
|
+
|
2623
|
+
static void start_bdp_ping_locked(void* tp, grpc_error* error) {
|
2624
|
+
grpc_chttp2_transport* t = static_cast<grpc_chttp2_transport*>(tp);
|
2625
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_http_trace)) {
|
2626
|
+
gpr_log(GPR_INFO, "%s: Start BDP ping err=%s", t->peer_string,
|
2627
|
+
grpc_error_string(error));
|
2628
|
+
}
|
2629
|
+
if (error != GRPC_ERROR_NONE || t->closed_with_error != GRPC_ERROR_NONE) {
|
2630
|
+
return;
|
2631
|
+
}
|
2632
|
+
/* Reset the keepalive ping timer */
|
2633
|
+
if (t->keepalive_state == GRPC_CHTTP2_KEEPALIVE_STATE_WAITING) {
|
2634
|
+
grpc_timer_cancel(&t->keepalive_ping_timer);
|
2635
|
+
}
|
2636
|
+
t->flow_control->bdp_estimator()->StartPing();
|
2637
|
+
t->bdp_ping_started = true;
|
2638
|
+
}
|
2639
|
+
|
2640
|
+
static void finish_bdp_ping(void* tp, grpc_error* error) {
|
2641
|
+
grpc_chttp2_transport* t = static_cast<grpc_chttp2_transport*>(tp);
|
2642
|
+
t->combiner->Run(GRPC_CLOSURE_INIT(&t->finish_bdp_ping_locked,
|
2643
|
+
finish_bdp_ping_locked, t, nullptr),
|
2644
|
+
GRPC_ERROR_REF(error));
|
2645
|
+
}
|
2646
|
+
|
2647
|
+
static void finish_bdp_ping_locked(void* tp, grpc_error* error) {
|
2648
|
+
grpc_chttp2_transport* t = static_cast<grpc_chttp2_transport*>(tp);
|
2649
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_http_trace)) {
|
2650
|
+
gpr_log(GPR_INFO, "%s: Complete BDP ping err=%s", t->peer_string,
|
2651
|
+
grpc_error_string(error));
|
2652
|
+
}
|
2653
|
+
if (error != GRPC_ERROR_NONE || t->closed_with_error != GRPC_ERROR_NONE) {
|
2654
|
+
GRPC_CHTTP2_UNREF_TRANSPORT(t, "bdp_ping");
|
2655
|
+
return;
|
2656
|
+
}
|
2657
|
+
if (!t->bdp_ping_started) {
|
2658
|
+
/* start_bdp_ping_locked has not been run yet. Schedule
|
2659
|
+
* finish_bdp_ping_locked to be run later. */
|
2660
|
+
t->combiner->Run(GRPC_CLOSURE_INIT(&t->finish_bdp_ping_locked,
|
2661
|
+
finish_bdp_ping_locked, t, nullptr),
|
2662
|
+
GRPC_ERROR_REF(error));
|
2663
|
+
return;
|
2664
|
+
}
|
2665
|
+
t->bdp_ping_started = false;
|
2666
|
+
grpc_millis next_ping = t->flow_control->bdp_estimator()->CompletePing();
|
2667
|
+
grpc_chttp2_act_on_flowctl_action(t->flow_control->PeriodicUpdate(), t,
|
2668
|
+
nullptr);
|
2669
|
+
GPR_ASSERT(!t->have_next_bdp_ping_timer);
|
2670
|
+
t->have_next_bdp_ping_timer = true;
|
2671
|
+
GRPC_CLOSURE_INIT(&t->next_bdp_ping_timer_expired_locked,
|
2672
|
+
next_bdp_ping_timer_expired, t, grpc_schedule_on_exec_ctx);
|
2673
|
+
grpc_timer_init(&t->next_bdp_ping_timer, next_ping,
|
2674
|
+
&t->next_bdp_ping_timer_expired_locked);
|
2675
|
+
}
|
2676
|
+
|
2677
|
+
static void next_bdp_ping_timer_expired(void* tp, grpc_error* error) {
|
2678
|
+
grpc_chttp2_transport* t = static_cast<grpc_chttp2_transport*>(tp);
|
2679
|
+
t->combiner->Run(
|
2680
|
+
GRPC_CLOSURE_INIT(&t->next_bdp_ping_timer_expired_locked,
|
2681
|
+
next_bdp_ping_timer_expired_locked, t, nullptr),
|
2682
|
+
GRPC_ERROR_REF(error));
|
2683
|
+
}
|
2684
|
+
|
2685
|
+
static void next_bdp_ping_timer_expired_locked(void* tp, grpc_error* error) {
|
2686
|
+
grpc_chttp2_transport* t = static_cast<grpc_chttp2_transport*>(tp);
|
2687
|
+
GPR_ASSERT(t->have_next_bdp_ping_timer);
|
2688
|
+
t->have_next_bdp_ping_timer = false;
|
2689
|
+
if (error != GRPC_ERROR_NONE) {
|
2690
|
+
GRPC_CHTTP2_UNREF_TRANSPORT(t, "bdp_ping");
|
2691
|
+
return;
|
2692
|
+
}
|
2693
|
+
schedule_bdp_ping_locked(t);
|
2694
|
+
}
|
2695
|
+
|
2696
|
+
void grpc_chttp2_config_default_keepalive_args(grpc_channel_args* args,
|
2697
|
+
bool is_client) {
|
2698
|
+
size_t i;
|
2699
|
+
if (args) {
|
2700
|
+
for (i = 0; i < args->num_args; i++) {
|
2701
|
+
if (0 == strcmp(args->args[i].key, GRPC_ARG_KEEPALIVE_TIME_MS)) {
|
2702
|
+
const int value = grpc_channel_arg_get_integer(
|
2703
|
+
&args->args[i], {is_client ? g_default_client_keepalive_time_ms
|
2704
|
+
: g_default_server_keepalive_time_ms,
|
2705
|
+
1, INT_MAX});
|
2706
|
+
if (is_client) {
|
2707
|
+
g_default_client_keepalive_time_ms = value;
|
2708
|
+
} else {
|
2709
|
+
g_default_server_keepalive_time_ms = value;
|
2710
|
+
}
|
2711
|
+
} else if (0 ==
|
2712
|
+
strcmp(args->args[i].key, GRPC_ARG_KEEPALIVE_TIMEOUT_MS)) {
|
2713
|
+
const int value = grpc_channel_arg_get_integer(
|
2714
|
+
&args->args[i], {is_client ? g_default_client_keepalive_timeout_ms
|
2715
|
+
: g_default_server_keepalive_timeout_ms,
|
2716
|
+
0, INT_MAX});
|
2717
|
+
if (is_client) {
|
2718
|
+
g_default_client_keepalive_timeout_ms = value;
|
2719
|
+
} else {
|
2720
|
+
g_default_server_keepalive_timeout_ms = value;
|
2721
|
+
}
|
2722
|
+
} else if (0 == strcmp(args->args[i].key,
|
2723
|
+
GRPC_ARG_KEEPALIVE_PERMIT_WITHOUT_CALLS)) {
|
2724
|
+
const bool value = static_cast<uint32_t>(grpc_channel_arg_get_integer(
|
2725
|
+
&args->args[i],
|
2726
|
+
{is_client ? g_default_client_keepalive_permit_without_calls
|
2727
|
+
: g_default_server_keepalive_timeout_ms,
|
2728
|
+
0, 1}));
|
2729
|
+
if (is_client) {
|
2730
|
+
g_default_client_keepalive_permit_without_calls = value;
|
2731
|
+
} else {
|
2732
|
+
g_default_server_keepalive_permit_without_calls = value;
|
2733
|
+
}
|
2734
|
+
} else if (0 ==
|
2735
|
+
strcmp(args->args[i].key, GRPC_ARG_HTTP2_MAX_PING_STRIKES)) {
|
2736
|
+
g_default_max_ping_strikes = grpc_channel_arg_get_integer(
|
2737
|
+
&args->args[i], {g_default_max_ping_strikes, 0, INT_MAX});
|
2738
|
+
} else if (0 == strcmp(args->args[i].key,
|
2739
|
+
GRPC_ARG_HTTP2_MAX_PINGS_WITHOUT_DATA)) {
|
2740
|
+
g_default_max_pings_without_data = grpc_channel_arg_get_integer(
|
2741
|
+
&args->args[i], {g_default_max_pings_without_data, 0, INT_MAX});
|
2742
|
+
} else if (0 ==
|
2743
|
+
strcmp(
|
2744
|
+
args->args[i].key,
|
2745
|
+
GRPC_ARG_HTTP2_MIN_SENT_PING_INTERVAL_WITHOUT_DATA_MS)) {
|
2746
|
+
g_default_min_sent_ping_interval_without_data_ms =
|
2747
|
+
grpc_channel_arg_get_integer(
|
2748
|
+
&args->args[i],
|
2749
|
+
{g_default_min_sent_ping_interval_without_data_ms, 0, INT_MAX});
|
2750
|
+
} else if (0 ==
|
2751
|
+
strcmp(
|
2752
|
+
args->args[i].key,
|
2753
|
+
GRPC_ARG_HTTP2_MIN_RECV_PING_INTERVAL_WITHOUT_DATA_MS)) {
|
2754
|
+
g_default_min_recv_ping_interval_without_data_ms =
|
2755
|
+
grpc_channel_arg_get_integer(
|
2756
|
+
&args->args[i],
|
2757
|
+
{g_default_min_recv_ping_interval_without_data_ms, 0, INT_MAX});
|
2758
|
+
}
|
2759
|
+
}
|
2760
|
+
}
|
2761
|
+
}
|
2762
|
+
|
2763
|
+
static void init_keepalive_ping(void* arg, grpc_error* error) {
|
2764
|
+
grpc_chttp2_transport* t = static_cast<grpc_chttp2_transport*>(arg);
|
2765
|
+
t->combiner->Run(GRPC_CLOSURE_INIT(&t->init_keepalive_ping_locked,
|
2766
|
+
init_keepalive_ping_locked, t, nullptr),
|
2767
|
+
GRPC_ERROR_REF(error));
|
2768
|
+
}
|
2769
|
+
|
2770
|
+
static void init_keepalive_ping_locked(void* arg, grpc_error* error) {
|
2771
|
+
grpc_chttp2_transport* t = static_cast<grpc_chttp2_transport*>(arg);
|
2772
|
+
GPR_ASSERT(t->keepalive_state == GRPC_CHTTP2_KEEPALIVE_STATE_WAITING);
|
2773
|
+
if (t->destroying || t->closed_with_error != GRPC_ERROR_NONE) {
|
2774
|
+
t->keepalive_state = GRPC_CHTTP2_KEEPALIVE_STATE_DYING;
|
2775
|
+
} else if (error == GRPC_ERROR_NONE) {
|
2776
|
+
if (t->keepalive_permit_without_calls ||
|
2777
|
+
grpc_chttp2_stream_map_size(&t->stream_map) > 0) {
|
2778
|
+
t->keepalive_state = GRPC_CHTTP2_KEEPALIVE_STATE_PINGING;
|
2779
|
+
GRPC_CHTTP2_REF_TRANSPORT(t, "keepalive ping end");
|
2780
|
+
grpc_timer_init_unset(&t->keepalive_watchdog_timer);
|
2781
|
+
send_keepalive_ping_locked(t);
|
2782
|
+
grpc_chttp2_initiate_write(t, GRPC_CHTTP2_INITIATE_WRITE_KEEPALIVE_PING);
|
2783
|
+
} else {
|
2784
|
+
GRPC_CHTTP2_REF_TRANSPORT(t, "init keepalive ping");
|
2785
|
+
GRPC_CLOSURE_INIT(&t->init_keepalive_ping_locked, init_keepalive_ping, t,
|
2786
|
+
grpc_schedule_on_exec_ctx);
|
2787
|
+
grpc_timer_init(&t->keepalive_ping_timer,
|
2788
|
+
grpc_core::ExecCtx::Get()->Now() + t->keepalive_time,
|
2789
|
+
&t->init_keepalive_ping_locked);
|
2790
|
+
}
|
2791
|
+
} else if (error == GRPC_ERROR_CANCELLED) {
|
2792
|
+
/* The keepalive ping timer may be cancelled by bdp */
|
2793
|
+
GRPC_CHTTP2_REF_TRANSPORT(t, "init keepalive ping");
|
2794
|
+
GRPC_CLOSURE_INIT(&t->init_keepalive_ping_locked, init_keepalive_ping, t,
|
2795
|
+
grpc_schedule_on_exec_ctx);
|
2796
|
+
grpc_timer_init(&t->keepalive_ping_timer,
|
2797
|
+
grpc_core::ExecCtx::Get()->Now() + t->keepalive_time,
|
2798
|
+
&t->init_keepalive_ping_locked);
|
2799
|
+
}
|
2800
|
+
GRPC_CHTTP2_UNREF_TRANSPORT(t, "init keepalive ping");
|
2801
|
+
}
|
2802
|
+
|
2803
|
+
static void start_keepalive_ping(void* arg, grpc_error* error) {
|
2804
|
+
grpc_chttp2_transport* t = static_cast<grpc_chttp2_transport*>(arg);
|
2805
|
+
t->combiner->Run(GRPC_CLOSURE_INIT(&t->start_keepalive_ping_locked,
|
2806
|
+
start_keepalive_ping_locked, t, nullptr),
|
2807
|
+
GRPC_ERROR_REF(error));
|
2808
|
+
}
|
2809
|
+
|
2810
|
+
static void start_keepalive_ping_locked(void* arg, grpc_error* error) {
|
2811
|
+
grpc_chttp2_transport* t = static_cast<grpc_chttp2_transport*>(arg);
|
2812
|
+
if (error != GRPC_ERROR_NONE) {
|
2813
|
+
return;
|
2814
|
+
}
|
2815
|
+
if (t->channelz_socket != nullptr) {
|
2816
|
+
t->channelz_socket->RecordKeepaliveSent();
|
2817
|
+
}
|
2818
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_http_trace) ||
|
2819
|
+
GRPC_TRACE_FLAG_ENABLED(grpc_keepalive_trace)) {
|
2820
|
+
gpr_log(GPR_INFO, "%s: Start keepalive ping", t->peer_string);
|
2821
|
+
}
|
2822
|
+
GRPC_CHTTP2_REF_TRANSPORT(t, "keepalive watchdog");
|
2823
|
+
GRPC_CLOSURE_INIT(&t->keepalive_watchdog_fired_locked,
|
2824
|
+
keepalive_watchdog_fired, t, grpc_schedule_on_exec_ctx);
|
2825
|
+
grpc_timer_init(&t->keepalive_watchdog_timer,
|
2826
|
+
grpc_core::ExecCtx::Get()->Now() + t->keepalive_timeout,
|
2827
|
+
&t->keepalive_watchdog_fired_locked);
|
2828
|
+
t->keepalive_ping_started = true;
|
2829
|
+
}
|
2830
|
+
|
2831
|
+
static void finish_keepalive_ping(void* arg, grpc_error* error) {
|
2832
|
+
grpc_chttp2_transport* t = static_cast<grpc_chttp2_transport*>(arg);
|
2833
|
+
t->combiner->Run(GRPC_CLOSURE_INIT(&t->finish_keepalive_ping_locked,
|
2834
|
+
finish_keepalive_ping_locked, t, nullptr),
|
2835
|
+
GRPC_ERROR_REF(error));
|
2836
|
+
}
|
2837
|
+
|
2838
|
+
static void finish_keepalive_ping_locked(void* arg, grpc_error* error) {
|
2839
|
+
grpc_chttp2_transport* t = static_cast<grpc_chttp2_transport*>(arg);
|
2840
|
+
if (t->keepalive_state == GRPC_CHTTP2_KEEPALIVE_STATE_PINGING) {
|
2841
|
+
if (error == GRPC_ERROR_NONE) {
|
2842
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_http_trace) ||
|
2843
|
+
GRPC_TRACE_FLAG_ENABLED(grpc_keepalive_trace)) {
|
2844
|
+
gpr_log(GPR_INFO, "%s: Finish keepalive ping", t->peer_string);
|
2845
|
+
}
|
2846
|
+
if (!t->keepalive_ping_started) {
|
2847
|
+
/* start_keepalive_ping_locked has not run yet. Reschedule
|
2848
|
+
* finish_keepalive_ping_locked for it to be run later. */
|
2849
|
+
t->combiner->Run(
|
2850
|
+
GRPC_CLOSURE_INIT(&t->finish_keepalive_ping_locked,
|
2851
|
+
finish_keepalive_ping_locked, t, nullptr),
|
2852
|
+
GRPC_ERROR_REF(error));
|
2853
|
+
return;
|
2854
|
+
}
|
2855
|
+
t->keepalive_ping_started = false;
|
2856
|
+
t->keepalive_state = GRPC_CHTTP2_KEEPALIVE_STATE_WAITING;
|
2857
|
+
grpc_timer_cancel(&t->keepalive_watchdog_timer);
|
2858
|
+
GRPC_CHTTP2_REF_TRANSPORT(t, "init keepalive ping");
|
2859
|
+
GRPC_CLOSURE_INIT(&t->init_keepalive_ping_locked, init_keepalive_ping, t,
|
2860
|
+
grpc_schedule_on_exec_ctx);
|
2861
|
+
grpc_timer_init(&t->keepalive_ping_timer,
|
2862
|
+
grpc_core::ExecCtx::Get()->Now() + t->keepalive_time,
|
2863
|
+
&t->init_keepalive_ping_locked);
|
2864
|
+
}
|
2865
|
+
}
|
2866
|
+
GRPC_CHTTP2_UNREF_TRANSPORT(t, "keepalive ping end");
|
2867
|
+
}
|
2868
|
+
|
2869
|
+
static void keepalive_watchdog_fired(void* arg, grpc_error* error) {
|
2870
|
+
grpc_chttp2_transport* t = static_cast<grpc_chttp2_transport*>(arg);
|
2871
|
+
t->combiner->Run(
|
2872
|
+
GRPC_CLOSURE_INIT(&t->keepalive_watchdog_fired_locked,
|
2873
|
+
keepalive_watchdog_fired_locked, t, nullptr),
|
2874
|
+
GRPC_ERROR_REF(error));
|
2875
|
+
}
|
2876
|
+
|
2877
|
+
static void keepalive_watchdog_fired_locked(void* arg, grpc_error* error) {
|
2878
|
+
grpc_chttp2_transport* t = static_cast<grpc_chttp2_transport*>(arg);
|
2879
|
+
if (t->keepalive_state == GRPC_CHTTP2_KEEPALIVE_STATE_PINGING) {
|
2880
|
+
if (error == GRPC_ERROR_NONE) {
|
2881
|
+
gpr_log(GPR_ERROR, "%s: Keepalive watchdog fired. Closing transport.",
|
2882
|
+
t->peer_string);
|
2883
|
+
t->keepalive_state = GRPC_CHTTP2_KEEPALIVE_STATE_DYING;
|
2884
|
+
close_transport_locked(
|
2885
|
+
t, grpc_error_set_int(GRPC_ERROR_CREATE_FROM_STATIC_STRING(
|
2886
|
+
"keepalive watchdog timeout"),
|
2887
|
+
GRPC_ERROR_INT_GRPC_STATUS,
|
2888
|
+
GRPC_STATUS_UNAVAILABLE));
|
2889
|
+
}
|
2890
|
+
} else {
|
2891
|
+
/* The watchdog timer should have been cancelled by
|
2892
|
+
* finish_keepalive_ping_locked. */
|
2893
|
+
if (GPR_UNLIKELY(error != GRPC_ERROR_CANCELLED)) {
|
2894
|
+
gpr_log(GPR_ERROR, "keepalive_ping_end state error: %d (expect: %d)",
|
2895
|
+
t->keepalive_state, GRPC_CHTTP2_KEEPALIVE_STATE_PINGING);
|
2896
|
+
}
|
2897
|
+
}
|
2898
|
+
GRPC_CHTTP2_UNREF_TRANSPORT(t, "keepalive watchdog");
|
2899
|
+
}
|
2900
|
+
|
2901
|
+
/*******************************************************************************
|
2902
|
+
* CALLBACK LOOP
|
2903
|
+
*/
|
2904
|
+
|
2905
|
+
static void connectivity_state_set(grpc_chttp2_transport* t,
|
2906
|
+
grpc_connectivity_state state,
|
2907
|
+
const char* reason) {
|
2908
|
+
GRPC_CHTTP2_IF_TRACING(
|
2909
|
+
gpr_log(GPR_INFO, "transport %p set connectivity_state=%d", t, state));
|
2910
|
+
t->state_tracker.SetState(state, reason);
|
2911
|
+
}
|
2912
|
+
|
2913
|
+
/*******************************************************************************
|
2914
|
+
* POLLSET STUFF
|
2915
|
+
*/
|
2916
|
+
|
2917
|
+
static void set_pollset(grpc_transport* gt, grpc_stream* /*gs*/,
|
2918
|
+
grpc_pollset* pollset) {
|
2919
|
+
grpc_chttp2_transport* t = reinterpret_cast<grpc_chttp2_transport*>(gt);
|
2920
|
+
grpc_endpoint_add_to_pollset(t->ep, pollset);
|
2921
|
+
}
|
2922
|
+
|
2923
|
+
static void set_pollset_set(grpc_transport* gt, grpc_stream* /*gs*/,
|
2924
|
+
grpc_pollset_set* pollset_set) {
|
2925
|
+
grpc_chttp2_transport* t = reinterpret_cast<grpc_chttp2_transport*>(gt);
|
2926
|
+
grpc_endpoint_add_to_pollset_set(t->ep, pollset_set);
|
2927
|
+
}
|
2928
|
+
|
2929
|
+
/*******************************************************************************
|
2930
|
+
* BYTE STREAM
|
2931
|
+
*/
|
2932
|
+
|
2933
|
+
static void reset_byte_stream(void* arg, grpc_error* error) {
|
2934
|
+
grpc_chttp2_stream* s = static_cast<grpc_chttp2_stream*>(arg);
|
2935
|
+
s->pending_byte_stream = false;
|
2936
|
+
if (error == GRPC_ERROR_NONE) {
|
2937
|
+
grpc_chttp2_maybe_complete_recv_message(s->t, s);
|
2938
|
+
grpc_chttp2_maybe_complete_recv_trailing_metadata(s->t, s);
|
2939
|
+
} else {
|
2940
|
+
GPR_ASSERT(error != GRPC_ERROR_NONE);
|
2941
|
+
grpc_core::ExecCtx::Run(DEBUG_LOCATION, s->on_next, GRPC_ERROR_REF(error));
|
2942
|
+
s->on_next = nullptr;
|
2943
|
+
GRPC_ERROR_UNREF(s->byte_stream_error);
|
2944
|
+
s->byte_stream_error = GRPC_ERROR_NONE;
|
2945
|
+
grpc_chttp2_cancel_stream(s->t, s, GRPC_ERROR_REF(error));
|
2946
|
+
s->byte_stream_error = GRPC_ERROR_REF(error);
|
2947
|
+
}
|
2948
|
+
}
|
2949
|
+
|
2950
|
+
namespace grpc_core {
|
2951
|
+
|
2952
|
+
Chttp2IncomingByteStream::Chttp2IncomingByteStream(
|
2953
|
+
grpc_chttp2_transport* transport, grpc_chttp2_stream* stream,
|
2954
|
+
uint32_t frame_size, uint32_t flags)
|
2955
|
+
: ByteStream(frame_size, flags),
|
2956
|
+
transport_(transport),
|
2957
|
+
stream_(stream),
|
2958
|
+
refs_(2),
|
2959
|
+
remaining_bytes_(frame_size) {
|
2960
|
+
GRPC_ERROR_UNREF(stream->byte_stream_error);
|
2961
|
+
stream->byte_stream_error = GRPC_ERROR_NONE;
|
2962
|
+
}
|
2963
|
+
|
2964
|
+
void Chttp2IncomingByteStream::OrphanLocked(void* arg,
|
2965
|
+
grpc_error* /*error_ignored*/) {
|
2966
|
+
Chttp2IncomingByteStream* bs = static_cast<Chttp2IncomingByteStream*>(arg);
|
2967
|
+
grpc_chttp2_stream* s = bs->stream_;
|
2968
|
+
grpc_chttp2_transport* t = s->t;
|
2969
|
+
bs->Unref();
|
2970
|
+
s->pending_byte_stream = false;
|
2971
|
+
grpc_chttp2_maybe_complete_recv_message(t, s);
|
2972
|
+
grpc_chttp2_maybe_complete_recv_trailing_metadata(t, s);
|
2973
|
+
}
|
2974
|
+
|
2975
|
+
void Chttp2IncomingByteStream::Orphan() {
|
2976
|
+
GPR_TIMER_SCOPE("incoming_byte_stream_destroy", 0);
|
2977
|
+
transport_->combiner->Run(
|
2978
|
+
GRPC_CLOSURE_INIT(&destroy_action_,
|
2979
|
+
&Chttp2IncomingByteStream::OrphanLocked, this, nullptr),
|
2980
|
+
GRPC_ERROR_NONE);
|
2981
|
+
}
|
2982
|
+
|
2983
|
+
void Chttp2IncomingByteStream::NextLocked(void* arg,
|
2984
|
+
grpc_error* /*error_ignored*/) {
|
2985
|
+
Chttp2IncomingByteStream* bs = static_cast<Chttp2IncomingByteStream*>(arg);
|
2986
|
+
grpc_chttp2_transport* t = bs->transport_;
|
2987
|
+
grpc_chttp2_stream* s = bs->stream_;
|
2988
|
+
size_t cur_length = s->frame_storage.length;
|
2989
|
+
if (!s->read_closed) {
|
2990
|
+
s->flow_control->IncomingByteStreamUpdate(bs->next_action_.max_size_hint,
|
2991
|
+
cur_length);
|
2992
|
+
grpc_chttp2_act_on_flowctl_action(s->flow_control->MakeAction(), t, s);
|
2993
|
+
}
|
2994
|
+
GPR_ASSERT(s->unprocessed_incoming_frames_buffer.length == 0);
|
2995
|
+
if (s->frame_storage.length > 0) {
|
2996
|
+
grpc_slice_buffer_swap(&s->frame_storage,
|
2997
|
+
&s->unprocessed_incoming_frames_buffer);
|
2998
|
+
s->unprocessed_incoming_frames_decompressed = false;
|
2999
|
+
grpc_core::ExecCtx::Run(DEBUG_LOCATION, bs->next_action_.on_complete,
|
3000
|
+
GRPC_ERROR_NONE);
|
3001
|
+
} else if (s->byte_stream_error != GRPC_ERROR_NONE) {
|
3002
|
+
grpc_core::ExecCtx::Run(DEBUG_LOCATION, bs->next_action_.on_complete,
|
3003
|
+
GRPC_ERROR_REF(s->byte_stream_error));
|
3004
|
+
if (s->data_parser.parsing_frame != nullptr) {
|
3005
|
+
s->data_parser.parsing_frame->Unref();
|
3006
|
+
s->data_parser.parsing_frame = nullptr;
|
3007
|
+
}
|
3008
|
+
} else if (s->read_closed) {
|
3009
|
+
if (bs->remaining_bytes_ != 0) {
|
3010
|
+
s->byte_stream_error = GRPC_ERROR_CREATE_REFERENCING_FROM_STATIC_STRING(
|
3011
|
+
"Truncated message", &s->read_closed_error, 1);
|
3012
|
+
grpc_core::ExecCtx::Run(DEBUG_LOCATION, bs->next_action_.on_complete,
|
3013
|
+
GRPC_ERROR_REF(s->byte_stream_error));
|
3014
|
+
if (s->data_parser.parsing_frame != nullptr) {
|
3015
|
+
s->data_parser.parsing_frame->Unref();
|
3016
|
+
s->data_parser.parsing_frame = nullptr;
|
3017
|
+
}
|
3018
|
+
} else {
|
3019
|
+
/* Should never reach here. */
|
3020
|
+
GPR_ASSERT(false);
|
3021
|
+
}
|
3022
|
+
} else {
|
3023
|
+
s->on_next = bs->next_action_.on_complete;
|
3024
|
+
}
|
3025
|
+
bs->Unref();
|
3026
|
+
}
|
3027
|
+
|
3028
|
+
bool Chttp2IncomingByteStream::Next(size_t max_size_hint,
|
3029
|
+
grpc_closure* on_complete) {
|
3030
|
+
GPR_TIMER_SCOPE("incoming_byte_stream_next", 0);
|
3031
|
+
if (stream_->unprocessed_incoming_frames_buffer.length > 0) {
|
3032
|
+
return true;
|
3033
|
+
} else {
|
3034
|
+
Ref();
|
3035
|
+
next_action_.max_size_hint = max_size_hint;
|
3036
|
+
next_action_.on_complete = on_complete;
|
3037
|
+
transport_->combiner->Run(
|
3038
|
+
GRPC_CLOSURE_INIT(&next_action_.closure,
|
3039
|
+
&Chttp2IncomingByteStream::NextLocked, this, nullptr),
|
3040
|
+
GRPC_ERROR_NONE);
|
3041
|
+
return false;
|
3042
|
+
}
|
3043
|
+
}
|
3044
|
+
|
3045
|
+
void Chttp2IncomingByteStream::MaybeCreateStreamDecompressionCtx() {
|
3046
|
+
GPR_DEBUG_ASSERT(stream_->stream_decompression_method !=
|
3047
|
+
GRPC_STREAM_COMPRESSION_IDENTITY_DECOMPRESS);
|
3048
|
+
if (!stream_->stream_decompression_ctx) {
|
3049
|
+
stream_->stream_decompression_ctx = grpc_stream_compression_context_create(
|
3050
|
+
stream_->stream_decompression_method);
|
3051
|
+
}
|
3052
|
+
}
|
3053
|
+
|
3054
|
+
grpc_error* Chttp2IncomingByteStream::Pull(grpc_slice* slice) {
|
3055
|
+
GPR_TIMER_SCOPE("incoming_byte_stream_pull", 0);
|
3056
|
+
grpc_error* error;
|
3057
|
+
if (stream_->unprocessed_incoming_frames_buffer.length > 0) {
|
3058
|
+
if (!stream_->unprocessed_incoming_frames_decompressed &&
|
3059
|
+
stream_->stream_decompression_method !=
|
3060
|
+
GRPC_STREAM_COMPRESSION_IDENTITY_DECOMPRESS) {
|
3061
|
+
bool end_of_context;
|
3062
|
+
MaybeCreateStreamDecompressionCtx();
|
3063
|
+
if (!grpc_stream_decompress(stream_->stream_decompression_ctx,
|
3064
|
+
&stream_->unprocessed_incoming_frames_buffer,
|
3065
|
+
&stream_->decompressed_data_buffer, nullptr,
|
3066
|
+
MAX_SIZE_T, &end_of_context)) {
|
3067
|
+
error =
|
3068
|
+
GRPC_ERROR_CREATE_FROM_STATIC_STRING("Stream decompression error.");
|
3069
|
+
return error;
|
3070
|
+
}
|
3071
|
+
GPR_ASSERT(stream_->unprocessed_incoming_frames_buffer.length == 0);
|
3072
|
+
grpc_slice_buffer_swap(&stream_->unprocessed_incoming_frames_buffer,
|
3073
|
+
&stream_->decompressed_data_buffer);
|
3074
|
+
stream_->unprocessed_incoming_frames_decompressed = true;
|
3075
|
+
if (end_of_context) {
|
3076
|
+
grpc_stream_compression_context_destroy(
|
3077
|
+
stream_->stream_decompression_ctx);
|
3078
|
+
stream_->stream_decompression_ctx = nullptr;
|
3079
|
+
}
|
3080
|
+
if (stream_->unprocessed_incoming_frames_buffer.length == 0) {
|
3081
|
+
*slice = grpc_empty_slice();
|
3082
|
+
}
|
3083
|
+
}
|
3084
|
+
error = grpc_deframe_unprocessed_incoming_frames(
|
3085
|
+
&stream_->data_parser, stream_,
|
3086
|
+
&stream_->unprocessed_incoming_frames_buffer, slice, nullptr);
|
3087
|
+
if (error != GRPC_ERROR_NONE) {
|
3088
|
+
return error;
|
3089
|
+
}
|
3090
|
+
} else {
|
3091
|
+
error = GRPC_ERROR_CREATE_FROM_STATIC_STRING("Truncated message");
|
3092
|
+
stream_->t->combiner->Run(&stream_->reset_byte_stream,
|
3093
|
+
GRPC_ERROR_REF(error));
|
3094
|
+
return error;
|
3095
|
+
}
|
3096
|
+
return GRPC_ERROR_NONE;
|
3097
|
+
}
|
3098
|
+
|
3099
|
+
void Chttp2IncomingByteStream::PublishError(grpc_error* error) {
|
3100
|
+
GPR_ASSERT(error != GRPC_ERROR_NONE);
|
3101
|
+
grpc_core::ExecCtx::Run(DEBUG_LOCATION, stream_->on_next,
|
3102
|
+
GRPC_ERROR_REF(error));
|
3103
|
+
stream_->on_next = nullptr;
|
3104
|
+
GRPC_ERROR_UNREF(stream_->byte_stream_error);
|
3105
|
+
stream_->byte_stream_error = GRPC_ERROR_REF(error);
|
3106
|
+
grpc_chttp2_cancel_stream(transport_, stream_, GRPC_ERROR_REF(error));
|
3107
|
+
}
|
3108
|
+
|
3109
|
+
grpc_error* Chttp2IncomingByteStream::Push(const grpc_slice& slice,
|
3110
|
+
grpc_slice* slice_out) {
|
3111
|
+
if (remaining_bytes_ < GRPC_SLICE_LENGTH(slice)) {
|
3112
|
+
grpc_error* error =
|
3113
|
+
GRPC_ERROR_CREATE_FROM_STATIC_STRING("Too many bytes in stream");
|
3114
|
+
transport_->combiner->Run(&stream_->reset_byte_stream,
|
3115
|
+
GRPC_ERROR_REF(error));
|
3116
|
+
grpc_slice_unref_internal(slice);
|
3117
|
+
return error;
|
3118
|
+
} else {
|
3119
|
+
remaining_bytes_ -= static_cast<uint32_t> GRPC_SLICE_LENGTH(slice);
|
3120
|
+
if (slice_out != nullptr) {
|
3121
|
+
*slice_out = slice;
|
3122
|
+
}
|
3123
|
+
return GRPC_ERROR_NONE;
|
3124
|
+
}
|
3125
|
+
}
|
3126
|
+
|
3127
|
+
grpc_error* Chttp2IncomingByteStream::Finished(grpc_error* error,
|
3128
|
+
bool reset_on_error) {
|
3129
|
+
if (error == GRPC_ERROR_NONE) {
|
3130
|
+
if (remaining_bytes_ != 0) {
|
3131
|
+
error = GRPC_ERROR_CREATE_FROM_STATIC_STRING("Truncated message");
|
3132
|
+
}
|
3133
|
+
}
|
3134
|
+
if (error != GRPC_ERROR_NONE && reset_on_error) {
|
3135
|
+
transport_->combiner->Run(&stream_->reset_byte_stream,
|
3136
|
+
GRPC_ERROR_REF(error));
|
3137
|
+
}
|
3138
|
+
Unref();
|
3139
|
+
return error;
|
3140
|
+
}
|
3141
|
+
|
3142
|
+
void Chttp2IncomingByteStream::Shutdown(grpc_error* error) {
|
3143
|
+
GRPC_ERROR_UNREF(Finished(error, true /* reset_on_error */));
|
3144
|
+
}
|
3145
|
+
|
3146
|
+
} // namespace grpc_core
|
3147
|
+
|
3148
|
+
/*******************************************************************************
|
3149
|
+
* RESOURCE QUOTAS
|
3150
|
+
*/
|
3151
|
+
|
3152
|
+
static void post_benign_reclaimer(grpc_chttp2_transport* t) {
|
3153
|
+
if (!t->benign_reclaimer_registered) {
|
3154
|
+
t->benign_reclaimer_registered = true;
|
3155
|
+
GRPC_CHTTP2_REF_TRANSPORT(t, "benign_reclaimer");
|
3156
|
+
GRPC_CLOSURE_INIT(&t->benign_reclaimer_locked, benign_reclaimer, t,
|
3157
|
+
grpc_schedule_on_exec_ctx);
|
3158
|
+
grpc_resource_user_post_reclaimer(grpc_endpoint_get_resource_user(t->ep),
|
3159
|
+
false, &t->benign_reclaimer_locked);
|
3160
|
+
}
|
3161
|
+
}
|
3162
|
+
|
3163
|
+
static void post_destructive_reclaimer(grpc_chttp2_transport* t) {
|
3164
|
+
if (!t->destructive_reclaimer_registered) {
|
3165
|
+
t->destructive_reclaimer_registered = true;
|
3166
|
+
GRPC_CHTTP2_REF_TRANSPORT(t, "destructive_reclaimer");
|
3167
|
+
GRPC_CLOSURE_INIT(&t->destructive_reclaimer_locked, destructive_reclaimer,
|
3168
|
+
t, grpc_schedule_on_exec_ctx);
|
3169
|
+
grpc_resource_user_post_reclaimer(grpc_endpoint_get_resource_user(t->ep),
|
3170
|
+
true, &t->destructive_reclaimer_locked);
|
3171
|
+
}
|
3172
|
+
}
|
3173
|
+
|
3174
|
+
static void benign_reclaimer(void* arg, grpc_error* error) {
|
3175
|
+
grpc_chttp2_transport* t = static_cast<grpc_chttp2_transport*>(arg);
|
3176
|
+
t->combiner->Run(GRPC_CLOSURE_INIT(&t->benign_reclaimer_locked,
|
3177
|
+
benign_reclaimer_locked, t, nullptr),
|
3178
|
+
GRPC_ERROR_REF(error));
|
3179
|
+
}
|
3180
|
+
|
3181
|
+
static void benign_reclaimer_locked(void* arg, grpc_error* error) {
|
3182
|
+
grpc_chttp2_transport* t = static_cast<grpc_chttp2_transport*>(arg);
|
3183
|
+
if (error == GRPC_ERROR_NONE &&
|
3184
|
+
grpc_chttp2_stream_map_size(&t->stream_map) == 0) {
|
3185
|
+
/* Channel with no active streams: send a goaway to try and make it
|
3186
|
+
* disconnect cleanly */
|
3187
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_resource_quota_trace)) {
|
3188
|
+
gpr_log(GPR_INFO, "HTTP2: %s - send goaway to free memory",
|
3189
|
+
t->peer_string);
|
3190
|
+
}
|
3191
|
+
send_goaway(t,
|
3192
|
+
grpc_error_set_int(
|
3193
|
+
GRPC_ERROR_CREATE_FROM_STATIC_STRING("Buffers full"),
|
3194
|
+
GRPC_ERROR_INT_HTTP2_ERROR, GRPC_HTTP2_ENHANCE_YOUR_CALM));
|
3195
|
+
} else if (error == GRPC_ERROR_NONE &&
|
3196
|
+
GRPC_TRACE_FLAG_ENABLED(grpc_resource_quota_trace)) {
|
3197
|
+
gpr_log(GPR_INFO,
|
3198
|
+
"HTTP2: %s - skip benign reclamation, there are still %" PRIdPTR
|
3199
|
+
" streams",
|
3200
|
+
t->peer_string, grpc_chttp2_stream_map_size(&t->stream_map));
|
3201
|
+
}
|
3202
|
+
t->benign_reclaimer_registered = false;
|
3203
|
+
if (error != GRPC_ERROR_CANCELLED) {
|
3204
|
+
grpc_resource_user_finish_reclamation(
|
3205
|
+
grpc_endpoint_get_resource_user(t->ep));
|
3206
|
+
}
|
3207
|
+
GRPC_CHTTP2_UNREF_TRANSPORT(t, "benign_reclaimer");
|
3208
|
+
}
|
3209
|
+
|
3210
|
+
static void destructive_reclaimer(void* arg, grpc_error* error) {
|
3211
|
+
grpc_chttp2_transport* t = static_cast<grpc_chttp2_transport*>(arg);
|
3212
|
+
t->combiner->Run(GRPC_CLOSURE_INIT(&t->destructive_reclaimer_locked,
|
3213
|
+
destructive_reclaimer_locked, t, nullptr),
|
3214
|
+
GRPC_ERROR_REF(error));
|
3215
|
+
}
|
3216
|
+
|
3217
|
+
static void destructive_reclaimer_locked(void* arg, grpc_error* error) {
|
3218
|
+
grpc_chttp2_transport* t = static_cast<grpc_chttp2_transport*>(arg);
|
3219
|
+
size_t n = grpc_chttp2_stream_map_size(&t->stream_map);
|
3220
|
+
t->destructive_reclaimer_registered = false;
|
3221
|
+
if (error == GRPC_ERROR_NONE && n > 0) {
|
3222
|
+
grpc_chttp2_stream* s = static_cast<grpc_chttp2_stream*>(
|
3223
|
+
grpc_chttp2_stream_map_rand(&t->stream_map));
|
3224
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_resource_quota_trace)) {
|
3225
|
+
gpr_log(GPR_INFO, "HTTP2: %s - abandon stream id %d", t->peer_string,
|
3226
|
+
s->id);
|
3227
|
+
}
|
3228
|
+
grpc_chttp2_cancel_stream(
|
3229
|
+
t, s,
|
3230
|
+
grpc_error_set_int(GRPC_ERROR_CREATE_FROM_STATIC_STRING("Buffers full"),
|
3231
|
+
GRPC_ERROR_INT_HTTP2_ERROR,
|
3232
|
+
GRPC_HTTP2_ENHANCE_YOUR_CALM));
|
3233
|
+
if (n > 1) {
|
3234
|
+
/* Since we cancel one stream per destructive reclamation, if
|
3235
|
+
there are more streams left, we can immediately post a new
|
3236
|
+
reclaimer in case the resource quota needs to free more
|
3237
|
+
memory */
|
3238
|
+
post_destructive_reclaimer(t);
|
3239
|
+
}
|
3240
|
+
}
|
3241
|
+
if (error != GRPC_ERROR_CANCELLED) {
|
3242
|
+
grpc_resource_user_finish_reclamation(
|
3243
|
+
grpc_endpoint_get_resource_user(t->ep));
|
3244
|
+
}
|
3245
|
+
GRPC_CHTTP2_UNREF_TRANSPORT(t, "destructive_reclaimer");
|
3246
|
+
}
|
3247
|
+
|
3248
|
+
/*******************************************************************************
|
3249
|
+
* MONITORING
|
3250
|
+
*/
|
3251
|
+
|
3252
|
+
const char* grpc_chttp2_initiate_write_reason_string(
|
3253
|
+
grpc_chttp2_initiate_write_reason reason) {
|
3254
|
+
switch (reason) {
|
3255
|
+
case GRPC_CHTTP2_INITIATE_WRITE_INITIAL_WRITE:
|
3256
|
+
return "INITIAL_WRITE";
|
3257
|
+
case GRPC_CHTTP2_INITIATE_WRITE_START_NEW_STREAM:
|
3258
|
+
return "START_NEW_STREAM";
|
3259
|
+
case GRPC_CHTTP2_INITIATE_WRITE_SEND_MESSAGE:
|
3260
|
+
return "SEND_MESSAGE";
|
3261
|
+
case GRPC_CHTTP2_INITIATE_WRITE_SEND_INITIAL_METADATA:
|
3262
|
+
return "SEND_INITIAL_METADATA";
|
3263
|
+
case GRPC_CHTTP2_INITIATE_WRITE_SEND_TRAILING_METADATA:
|
3264
|
+
return "SEND_TRAILING_METADATA";
|
3265
|
+
case GRPC_CHTTP2_INITIATE_WRITE_RETRY_SEND_PING:
|
3266
|
+
return "RETRY_SEND_PING";
|
3267
|
+
case GRPC_CHTTP2_INITIATE_WRITE_CONTINUE_PINGS:
|
3268
|
+
return "CONTINUE_PINGS";
|
3269
|
+
case GRPC_CHTTP2_INITIATE_WRITE_GOAWAY_SENT:
|
3270
|
+
return "GOAWAY_SENT";
|
3271
|
+
case GRPC_CHTTP2_INITIATE_WRITE_RST_STREAM:
|
3272
|
+
return "RST_STREAM";
|
3273
|
+
case GRPC_CHTTP2_INITIATE_WRITE_CLOSE_FROM_API:
|
3274
|
+
return "CLOSE_FROM_API";
|
3275
|
+
case GRPC_CHTTP2_INITIATE_WRITE_STREAM_FLOW_CONTROL:
|
3276
|
+
return "STREAM_FLOW_CONTROL";
|
3277
|
+
case GRPC_CHTTP2_INITIATE_WRITE_TRANSPORT_FLOW_CONTROL:
|
3278
|
+
return "TRANSPORT_FLOW_CONTROL";
|
3279
|
+
case GRPC_CHTTP2_INITIATE_WRITE_SEND_SETTINGS:
|
3280
|
+
return "SEND_SETTINGS";
|
3281
|
+
case GRPC_CHTTP2_INITIATE_WRITE_FLOW_CONTROL_UNSTALLED_BY_SETTING:
|
3282
|
+
return "FLOW_CONTROL_UNSTALLED_BY_SETTING";
|
3283
|
+
case GRPC_CHTTP2_INITIATE_WRITE_FLOW_CONTROL_UNSTALLED_BY_UPDATE:
|
3284
|
+
return "FLOW_CONTROL_UNSTALLED_BY_UPDATE";
|
3285
|
+
case GRPC_CHTTP2_INITIATE_WRITE_APPLICATION_PING:
|
3286
|
+
return "APPLICATION_PING";
|
3287
|
+
case GRPC_CHTTP2_INITIATE_WRITE_KEEPALIVE_PING:
|
3288
|
+
return "KEEPALIVE_PING";
|
3289
|
+
case GRPC_CHTTP2_INITIATE_WRITE_TRANSPORT_FLOW_CONTROL_UNSTALLED:
|
3290
|
+
return "TRANSPORT_FLOW_CONTROL_UNSTALLED";
|
3291
|
+
case GRPC_CHTTP2_INITIATE_WRITE_PING_RESPONSE:
|
3292
|
+
return "PING_RESPONSE";
|
3293
|
+
case GRPC_CHTTP2_INITIATE_WRITE_FORCE_RST_STREAM:
|
3294
|
+
return "FORCE_RST_STREAM";
|
3295
|
+
}
|
3296
|
+
GPR_UNREACHABLE_CODE(return "unknown");
|
3297
|
+
}
|
3298
|
+
|
3299
|
+
static grpc_endpoint* chttp2_get_endpoint(grpc_transport* t) {
|
3300
|
+
return (reinterpret_cast<grpc_chttp2_transport*>(t))->ep;
|
3301
|
+
}
|
3302
|
+
|
3303
|
+
static const grpc_transport_vtable vtable = {sizeof(grpc_chttp2_stream),
|
3304
|
+
"chttp2",
|
3305
|
+
init_stream,
|
3306
|
+
set_pollset,
|
3307
|
+
set_pollset_set,
|
3308
|
+
perform_stream_op,
|
3309
|
+
perform_transport_op,
|
3310
|
+
destroy_stream,
|
3311
|
+
destroy_transport,
|
3312
|
+
chttp2_get_endpoint};
|
3313
|
+
|
3314
|
+
static const grpc_transport_vtable* get_vtable(void) { return &vtable; }
|
3315
|
+
|
3316
|
+
grpc_core::RefCountedPtr<grpc_core::channelz::SocketNode>
|
3317
|
+
grpc_chttp2_transport_get_socket_node(grpc_transport* transport) {
|
3318
|
+
grpc_chttp2_transport* t =
|
3319
|
+
reinterpret_cast<grpc_chttp2_transport*>(transport);
|
3320
|
+
return t->channelz_socket;
|
3321
|
+
}
|
3322
|
+
|
3323
|
+
grpc_transport* grpc_create_chttp2_transport(
|
3324
|
+
const grpc_channel_args* channel_args, grpc_endpoint* ep, bool is_client,
|
3325
|
+
grpc_resource_user* resource_user) {
|
3326
|
+
auto t =
|
3327
|
+
new grpc_chttp2_transport(channel_args, ep, is_client, resource_user);
|
3328
|
+
return &t->base;
|
3329
|
+
}
|
3330
|
+
|
3331
|
+
void grpc_chttp2_transport_start_reading(
|
3332
|
+
grpc_transport* transport, grpc_slice_buffer* read_buffer,
|
3333
|
+
grpc_closure* notify_on_receive_settings) {
|
3334
|
+
grpc_chttp2_transport* t =
|
3335
|
+
reinterpret_cast<grpc_chttp2_transport*>(transport);
|
3336
|
+
GRPC_CHTTP2_REF_TRANSPORT(
|
3337
|
+
t, "reading_action"); /* matches unref inside reading_action */
|
3338
|
+
if (read_buffer != nullptr) {
|
3339
|
+
grpc_slice_buffer_move_into(read_buffer, &t->read_buffer);
|
3340
|
+
gpr_free(read_buffer);
|
3341
|
+
}
|
3342
|
+
t->notify_on_receive_settings = notify_on_receive_settings;
|
3343
|
+
t->combiner->Run(
|
3344
|
+
GRPC_CLOSURE_INIT(&t->read_action_locked, read_action_locked, t, nullptr),
|
3345
|
+
GRPC_ERROR_NONE);
|
3346
|
+
}
|