grpc 1.15.0 → 1.30.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of grpc might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/Makefile +8591 -13387
- data/etc/roots.pem +455 -130
- data/include/grpc/grpc.h +39 -9
- data/include/grpc/grpc_posix.h +0 -8
- data/include/grpc/grpc_security.h +409 -14
- data/include/grpc/grpc_security_constants.h +55 -22
- data/include/grpc/impl/codegen/atm_gcc_sync.h +2 -0
- data/include/grpc/impl/codegen/atm_windows.h +2 -0
- data/include/grpc/impl/codegen/byte_buffer.h +13 -0
- data/include/grpc/impl/codegen/compression_types.h +2 -1
- data/include/grpc/impl/codegen/gpr_types.h +1 -1
- data/include/grpc/impl/codegen/grpc_types.h +111 -16
- data/include/grpc/impl/codegen/port_platform.h +171 -9
- data/include/grpc/impl/codegen/slice.h +2 -22
- data/include/grpc/impl/codegen/status.h +2 -1
- data/include/grpc/impl/codegen/sync.h +5 -3
- data/include/grpc/impl/codegen/sync_abseil.h +36 -0
- data/include/grpc/impl/codegen/sync_generic.h +1 -1
- data/include/grpc/impl/codegen/sync_posix.h +18 -0
- data/include/grpc/module.modulemap +25 -37
- data/include/grpc/slice.h +3 -3
- data/include/grpc/support/alloc.h +0 -16
- data/include/grpc/support/sync_abseil.h +26 -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 +26 -19
- data/src/core/ext/filters/client_channel/backup_poller.h +8 -2
- data/src/core/ext/filters/client_channel/channel_connectivity.cc +21 -5
- data/src/core/ext/filters/client_channel/client_channel.cc +2888 -2206
- data/src/core/ext/filters/client_channel/client_channel.h +26 -6
- data/src/core/ext/filters/client_channel/client_channel_channelz.cc +54 -72
- data/src/core/ext/filters/client_channel/client_channel_channelz.h +33 -26
- data/src/core/ext/filters/client_channel/client_channel_factory.cc +22 -34
- data/src/core/ext/filters/client_channel/client_channel_factory.h +12 -39
- data/src/core/ext/filters/client_channel/client_channel_plugin.cc +13 -14
- data/src/core/ext/filters/client_channel/connector.h +43 -37
- 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 +177 -158
- data/src/core/ext/filters/client_channel/http_connect_handshaker.h +1 -1
- data/src/core/ext/filters/client_channel/http_proxy.cc +125 -121
- data/src/core/ext/filters/client_channel/http_proxy.h +5 -1
- data/src/core/ext/filters/client_channel/lb_policy.cc +105 -26
- data/src/core/ext/filters/client_channel/lb_policy.h +352 -152
- 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 +64 -47
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +1010 -1155
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.h +7 -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 +12 -3
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel_secure.cc +53 -40
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.cc +10 -5
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.h +19 -16
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc +157 -271
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h +43 -59
- data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +235 -384
- 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 +174 -409
- data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +157 -285
- 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 +7 -91
- data/src/core/ext/filters/client_channel/lb_policy_registry.cc +93 -8
- data/src/core/ext/filters/client_channel/lb_policy_registry.h +13 -2
- 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 +76 -30
- data/src/core/ext/filters/client_channel/parse_address.h +4 -1
- data/src/core/ext/filters/client_channel/proxy_mapper.h +14 -34
- data/src/core/ext/filters/client_channel/proxy_mapper_registry.cc +46 -79
- data/src/core/ext/filters/client_channel/proxy_mapper_registry.h +23 -17
- data/src/core/ext/filters/client_channel/resolver.cc +55 -5
- data/src/core/ext/filters/client_channel/resolver.h +61 -61
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +251 -226
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.cc +200 -36
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h +18 -20
- 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 +8 -7
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +491 -131
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +434 -233
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +20 -12
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_fallback.cc +15 -7
- 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_windows.cc +7 -2
- 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 +92 -131
- data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc +220 -134
- data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h +27 -17
- data/src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc +73 -99
- data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +184 -0
- data/src/core/ext/filters/client_channel/resolver_factory.h +13 -11
- data/src/core/ext/filters/client_channel/resolver_registry.cc +33 -14
- data/src/core/ext/filters/client_channel/resolver_registry.h +19 -13
- 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 +5 -5
- data/src/core/ext/filters/client_channel/retry_throttle.h +2 -6
- 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 +903 -634
- data/src/core/ext/filters/client_channel/subchannel.h +364 -131
- 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 +49 -52
- data/src/core/ext/filters/deadline/deadline_filter.h +11 -14
- data/src/core/ext/filters/http/client/http_client_filter.cc +122 -85
- data/src/core/ext/filters/http/client/http_client_filter.h +1 -1
- data/src/core/ext/filters/http/client_authority_filter.cc +26 -24
- data/src/core/ext/filters/http/http_filters_plugin.cc +27 -12
- data/src/core/ext/filters/http/message_compress/message_compress_filter.cc +342 -295
- 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 +156 -54
- data/src/core/ext/filters/max_age/max_age_filter.cc +76 -63
- data/src/core/ext/filters/message_size/message_size_filter.cc +218 -119
- data/src/core/ext/filters/message_size/message_size_filter.h +33 -0
- data/src/core/ext/filters/workarounds/workaround_cronet_compression_filter.cc +19 -17
- data/src/core/ext/transport/chttp2/alpn/alpn.h +1 -1
- data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +141 -164
- data/src/core/ext/transport/chttp2/client/chttp2_connector.h +31 -1
- data/src/core/ext/transport/chttp2/client/insecure/channel_create.cc +36 -34
- data/src/core/ext/transport/chttp2/client/insecure/channel_create_posix.cc +1 -1
- data/src/core/ext/transport/chttp2/client/secure/secure_channel_create.cc +133 -138
- data/src/core/ext/transport/chttp2/server/chttp2_server.cc +128 -30
- data/src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.cc +2 -2
- data/src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.cc +8 -11
- data/src/core/ext/transport/chttp2/transport/bin_decoder.cc +4 -4
- data/src/core/ext/transport/chttp2/transport/bin_decoder.h +4 -4
- data/src/core/ext/transport/chttp2/transport/bin_encoder.cc +11 -12
- data/src/core/ext/transport/chttp2/transport/bin_encoder.h +4 -3
- data/src/core/ext/transport/chttp2/transport/chttp2_plugin.cc +9 -7
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +911 -716
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +8 -1
- 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 +5 -5
- data/src/core/ext/transport/chttp2/transport/flow_control.h +22 -30
- data/src/core/ext/transport/chttp2/transport/frame_data.cc +47 -54
- data/src/core/ext/transport/chttp2/transport/frame_data.h +11 -13
- data/src/core/ext/transport/chttp2/transport/frame_goaway.cc +9 -8
- data/src/core/ext/transport/chttp2/transport/frame_goaway.h +5 -5
- data/src/core/ext/transport/chttp2/transport/frame_ping.cc +7 -5
- data/src/core/ext/transport/chttp2/transport/frame_ping.h +3 -4
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +17 -7
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.h +11 -4
- data/src/core/ext/transport/chttp2/transport/frame_settings.cc +11 -7
- data/src/core/ext/transport/chttp2/transport/frame_settings.h +4 -4
- data/src/core/ext/transport/chttp2/transport/frame_window_update.cc +7 -6
- data/src/core/ext/transport/chttp2/transport/frame_window_update.h +3 -4
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +548 -351
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +26 -15
- data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +201 -120
- data/src/core/ext/transport/chttp2/transport/hpack_parser.h +14 -6
- data/src/core/ext/transport/chttp2/transport/hpack_table.cc +47 -169
- data/src/core/ext/transport/chttp2/transport/hpack_table.h +70 -17
- data/src/core/ext/transport/chttp2/transport/http2_settings.h +4 -5
- data/src/core/ext/transport/chttp2/transport/huffsyms.h +2 -3
- data/src/core/ext/transport/chttp2/transport/incoming_metadata.cc +10 -17
- data/src/core/ext/transport/chttp2/transport/incoming_metadata.h +19 -10
- data/src/core/ext/transport/chttp2/transport/internal.h +226 -161
- data/src/core/ext/transport/chttp2/transport/parsing.cc +166 -110
- data/src/core/ext/transport/chttp2/transport/stream_lists.cc +3 -3
- data/src/core/ext/transport/chttp2/transport/stream_map.cc +28 -18
- data/src/core/ext/transport/chttp2/transport/stream_map.h +2 -3
- data/src/core/ext/transport/chttp2/transport/writing.cc +95 -35
- data/src/core/ext/transport/inproc/inproc_transport.cc +406 -388
- 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 +1 -1
- data/src/core/lib/channel/channel_args.cc +54 -115
- data/src/core/lib/channel/channel_args.h +44 -40
- data/src/core/lib/channel/channel_stack.cc +6 -5
- data/src/core/lib/channel/channel_stack.h +52 -28
- data/src/core/lib/channel/channel_stack_builder.cc +14 -2
- data/src/core/lib/channel/channel_stack_builder.h +8 -0
- data/src/core/lib/channel/channel_trace.cc +75 -85
- data/src/core/lib/channel/channel_trace.h +37 -32
- data/src/core/lib/channel/channelz.cc +496 -106
- data/src/core/lib/channel/channelz.h +262 -61
- data/src/core/lib/channel/channelz_registry.cc +191 -69
- data/src/core/lib/channel/channelz_registry.h +30 -53
- data/src/core/lib/channel/connected_channel.cc +30 -27
- data/src/core/lib/channel/context.h +6 -6
- data/src/core/lib/channel/handshaker.cc +150 -218
- data/src/core/lib/channel/handshaker.h +111 -102
- data/src/core/lib/channel/handshaker_factory.h +9 -17
- data/src/core/lib/channel/handshaker_registry.cc +57 -49
- data/src/core/lib/channel/handshaker_registry.h +21 -15
- data/src/core/lib/channel/status_util.cc +2 -3
- data/src/core/lib/compression/algorithm_metadata.h +3 -3
- data/src/core/lib/compression/compression.cc +17 -12
- 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 +17 -13
- data/src/core/lib/compression/compression_internal.h +9 -1
- data/src/core/lib/compression/message_compress.cc +8 -3
- data/src/core/lib/compression/stream_compression.cc +3 -2
- data/src/core/lib/compression/stream_compression.h +2 -2
- data/src/core/lib/compression/stream_compression_gzip.cc +9 -9
- data/src/core/lib/compression/stream_compression_identity.cc +5 -7
- data/src/core/lib/debug/stats.cc +21 -27
- data/src/core/lib/debug/stats.h +3 -1
- data/src/core/lib/debug/trace.cc +16 -7
- data/src/core/lib/debug/trace.h +20 -4
- data/src/core/lib/gpr/alloc.cc +4 -29
- data/src/core/lib/gpr/arena.h +13 -7
- data/src/core/lib/gpr/cpu_linux.cc +1 -1
- data/src/core/lib/gpr/cpu_posix.cc +5 -3
- data/src/core/lib/gpr/env.h +3 -6
- data/src/core/lib/gpr/env_linux.cc +15 -21
- data/src/core/lib/gpr/env_posix.cc +5 -5
- data/src/core/lib/gpr/env_windows.cc +7 -5
- data/src/core/lib/gpr/log.cc +9 -13
- data/src/core/lib/gpr/log_linux.cc +2 -2
- data/src/core/lib/gpr/log_posix.cc +4 -3
- data/src/core/lib/gpr/spinlock.h +2 -3
- data/src/core/lib/gpr/string.cc +29 -35
- data/src/core/lib/gpr/string.h +11 -19
- data/src/core/lib/gpr/sync_abseil.cc +116 -0
- data/src/core/lib/gpr/sync_posix.cc +78 -9
- data/src/core/lib/gpr/sync_windows.cc +4 -2
- data/src/core/lib/gpr/time.cc +12 -0
- data/src/core/lib/gpr/time_posix.cc +22 -3
- data/src/core/lib/gpr/time_precise.cc +123 -36
- data/src/core/lib/gpr/time_precise.h +37 -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 +79 -5
- data/src/core/lib/gprpp/debug_location.h +3 -2
- data/src/core/lib/gprpp/fork.cc +30 -56
- data/src/core/lib/gprpp/fork.h +18 -3
- 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/map.h +53 -0
- data/src/core/lib/gprpp/memory.h +11 -83
- 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 +27 -95
- data/src/core/lib/gprpp/ref_counted.h +228 -83
- data/src/core/lib/gprpp/ref_counted_ptr.h +39 -16
- data/src/core/lib/gprpp/sync.h +135 -0
- data/src/core/lib/gprpp/thd.h +54 -12
- data/src/core/lib/gprpp/thd_posix.cc +57 -13
- data/src/core/lib/gprpp/thd_windows.cc +54 -33
- data/src/core/lib/http/format_request.cc +46 -65
- data/src/core/lib/http/httpcli.cc +11 -11
- data/src/core/lib/http/httpcli.h +2 -3
- data/src/core/lib/http/httpcli_security_connector.cc +121 -107
- data/src/core/lib/http/parser.cc +4 -3
- data/src/core/lib/http/parser.h +9 -9
- 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 +113 -69
- data/src/core/lib/iomgr/call_combiner.h +96 -74
- 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 +44 -141
- data/src/core/lib/iomgr/combiner.cc +50 -86
- data/src/core/lib/iomgr/combiner.h +31 -9
- 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 +8 -4
- data/src/core/lib/iomgr/endpoint.h +12 -4
- 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 +2 -3
- data/src/core/lib/iomgr/endpoint_pair_posix.cc +1 -1
- data/src/core/lib/iomgr/endpoint_pair_windows.cc +2 -2
- data/src/core/lib/iomgr/error.cc +71 -64
- data/src/core/lib/iomgr/error.h +74 -10
- 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 +1 -3
- 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 +99 -69
- data/src/core/lib/iomgr/ev_epollex_linux.cc +238 -259
- data/src/core/lib/iomgr/ev_poll_posix.cc +52 -504
- data/src/core/lib/iomgr/ev_posix.cc +54 -31
- data/src/core/lib/iomgr/ev_posix.h +29 -3
- data/src/core/lib/iomgr/ev_windows.cc +2 -2
- data/src/core/lib/iomgr/exec_ctx.cc +79 -8
- data/src/core/lib/iomgr/exec_ctx.h +163 -21
- data/src/core/lib/iomgr/executor.cc +137 -101
- data/src/core/lib/iomgr/executor.h +54 -48
- 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 +15 -8
- 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 +2 -2
- data/src/core/lib/iomgr/iomgr.cc +27 -13
- data/src/core/lib/iomgr/iomgr.h +19 -0
- data/src/core/lib/iomgr/iomgr_custom.cc +18 -2
- data/src/core/lib/iomgr/iomgr_custom.h +2 -0
- data/src/core/lib/iomgr/iomgr_internal.cc +14 -0
- data/src/core/lib/iomgr/iomgr_internal.h +16 -0
- data/src/core/lib/iomgr/iomgr_posix.cc +23 -1
- data/src/core/lib/iomgr/iomgr_posix_cfstream.cc +171 -0
- data/src/core/lib/iomgr/iomgr_uv.cc +3 -0
- data/src/core/lib/iomgr/iomgr_windows.cc +20 -1
- data/src/core/lib/iomgr/load_file.cc +1 -0
- data/src/core/lib/iomgr/lockfree_event.cc +16 -15
- 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.h +4 -4
- data/src/core/lib/iomgr/pollset_custom.cc +5 -5
- data/src/core/lib/iomgr/pollset_set_custom.cc +10 -10
- data/src/core/lib/iomgr/pollset_uv.h +32 -0
- data/src/core/lib/iomgr/pollset_windows.cc +16 -2
- data/src/core/lib/iomgr/port.h +49 -2
- data/src/core/lib/iomgr/python_util.h +46 -0
- data/src/core/lib/iomgr/resolve_address.h +5 -7
- data/src/core/lib/iomgr/resolve_address_custom.cc +36 -50
- data/src/core/lib/iomgr/resolve_address_custom.h +4 -2
- data/src/core/lib/iomgr/resolve_address_posix.cc +22 -25
- data/src/core/lib/iomgr/resolve_address_windows.cc +14 -26
- data/src/core/lib/iomgr/resource_quota.cc +175 -110
- data/src/core/lib/iomgr/resource_quota.h +30 -11
- data/src/core/lib/iomgr/sockaddr_utils.cc +26 -31
- data/src/core/lib/iomgr/sockaddr_utils.h +9 -14
- data/src/core/lib/iomgr/socket_factory_posix.h +2 -3
- data/src/core/lib/iomgr/socket_mutator.h +2 -3
- data/src/core/lib/iomgr/socket_utils_common_posix.cc +145 -27
- data/src/core/lib/iomgr/socket_utils_posix.h +26 -0
- data/src/core/lib/iomgr/socket_windows.cc +21 -2
- data/src/core/lib/iomgr/socket_windows.h +9 -1
- data/src/core/lib/iomgr/tcp_client_cfstream.cc +215 -0
- data/src/core/lib/iomgr/tcp_client_custom.cc +19 -7
- data/src/core/lib/iomgr/tcp_client_posix.cc +40 -38
- data/src/core/lib/iomgr/tcp_client_posix.h +6 -6
- data/src/core/lib/iomgr/tcp_client_windows.cc +11 -10
- data/src/core/lib/iomgr/tcp_custom.cc +37 -32
- data/src/core/lib/iomgr/tcp_custom.h +3 -0
- data/src/core/lib/iomgr/tcp_posix.cc +1196 -168
- data/src/core/lib/iomgr/tcp_posix.h +3 -0
- data/src/core/lib/iomgr/tcp_server.cc +5 -0
- data/src/core/lib/iomgr/tcp_server.h +21 -0
- data/src/core/lib/iomgr/tcp_server_custom.cc +43 -30
- data/src/core/lib/iomgr/tcp_server_posix.cc +97 -21
- data/src/core/lib/iomgr/tcp_server_utils_posix.h +3 -0
- data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +19 -16
- data/src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc +8 -11
- data/src/core/lib/iomgr/tcp_server_windows.cc +19 -15
- data/src/core/lib/iomgr/tcp_uv.cc +8 -9
- data/src/core/lib/iomgr/tcp_windows.cc +110 -48
- data/src/core/lib/iomgr/time_averaged_stats.h +2 -3
- data/src/core/lib/iomgr/timer.h +2 -1
- data/src/core/lib/iomgr/timer_custom.cc +7 -5
- data/src/core/lib/iomgr/timer_generic.cc +42 -40
- data/src/core/lib/iomgr/timer_generic.h +39 -0
- data/src/core/lib/iomgr/timer_heap.cc +2 -2
- data/src/core/lib/iomgr/timer_heap.h +5 -6
- data/src/core/lib/iomgr/timer_manager.cc +34 -16
- data/src/core/lib/iomgr/timer_manager.h +4 -2
- data/src/core/lib/iomgr/udp_server.cc +31 -30
- data/src/core/lib/iomgr/udp_server.h +6 -12
- data/src/core/lib/iomgr/wakeup_fd_eventfd.cc +3 -4
- data/src/core/lib/iomgr/wakeup_fd_posix.cc +1 -19
- 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 +209 -68
- data/src/core/lib/json/json_reader.cc +511 -319
- data/src/core/lib/json/json_writer.cc +202 -110
- data/src/core/lib/profiling/basic_timers.cc +12 -6
- data/src/core/lib/security/context/security_context.cc +92 -119
- data/src/core/lib/security/context/security_context.h +79 -48
- data/src/core/lib/security/credentials/alts/alts_credentials.cc +39 -48
- data/src/core/lib/security/credentials/alts/alts_credentials.h +37 -10
- data/src/core/lib/security/credentials/alts/check_gcp_environment.cc +1 -1
- data/src/core/lib/security/credentials/alts/check_gcp_environment_no_op.cc +2 -2
- data/src/core/lib/security/credentials/alts/check_gcp_environment_windows.cc +45 -57
- data/src/core/lib/security/credentials/alts/grpc_alts_credentials_client_options.cc +2 -1
- data/src/core/lib/security/credentials/alts/grpc_alts_credentials_server_options.cc +3 -2
- data/src/core/lib/security/credentials/composite/composite_credentials.cc +119 -159
- data/src/core/lib/security/credentials/composite/composite_credentials.h +71 -24
- data/src/core/lib/security/credentials/credentials.cc +18 -142
- data/src/core/lib/security/credentials/credentials.h +141 -105
- data/src/core/lib/security/credentials/fake/fake_credentials.cc +48 -72
- data/src/core/lib/security/credentials/fake/fake_credentials.h +28 -5
- data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +186 -99
- data/src/core/lib/security/credentials/google_default/google_default_credentials.h +32 -6
- data/src/core/lib/security/credentials/iam/iam_credentials.cc +33 -39
- data/src/core/lib/security/credentials/iam/iam_credentials.h +22 -4
- data/src/core/lib/security/credentials/jwt/json_token.cc +32 -58
- data/src/core/lib/security/credentials/jwt/json_token.h +5 -7
- data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +70 -88
- data/src/core/lib/security/credentials/jwt/jwt_credentials.h +41 -10
- data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +159 -170
- data/src/core/lib/security/credentials/jwt/jwt_verifier.h +4 -5
- data/src/core/lib/security/credentials/local/local_credentials.cc +21 -34
- data/src/core/lib/security/credentials/local/local_credentials.h +32 -11
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +438 -203
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +98 -33
- data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +89 -91
- data/src/core/lib/security/credentials/plugin/plugin_credentials.h +43 -17
- data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +84 -83
- data/src/core/lib/security/credentials/ssl/ssl_credentials.h +60 -15
- 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_fallback.cc +2 -2
- data/src/core/lib/security/security_connector/load_system_roots_linux.cc +15 -9
- 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 +40 -1158
- data/src/core/lib/security/security_connector/security_connector.h +100 -209
- 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 +5 -2
- data/src/core/lib/security/transport/client_auth_filter.cc +164 -116
- data/src/core/lib/security/transport/secure_endpoint.cc +70 -53
- data/src/core/lib/security/transport/security_handshaker.cc +340 -297
- data/src/core/lib/security/transport/security_handshaker.h +14 -3
- data/src/core/lib/security/transport/server_auth_filter.cc +115 -55
- data/src/core/lib/security/transport/target_authority_table.h +1 -1
- data/src/core/lib/security/util/json_util.cc +34 -13
- data/src/core/lib/security/util/json_util.h +5 -3
- data/src/core/lib/slice/b64.cc +3 -4
- data/src/core/lib/slice/b64.h +3 -4
- data/src/core/lib/slice/percent_encoding.cc +3 -3
- data/src/core/lib/slice/percent_encoding.h +3 -3
- data/src/core/lib/slice/slice.cc +219 -153
- data/src/core/lib/slice/slice_buffer.cc +60 -26
- data/src/core/lib/slice/slice_hash_table.h +9 -15
- data/src/core/lib/slice/slice_intern.cc +186 -143
- data/src/core/lib/slice/slice_internal.h +318 -3
- data/src/core/lib/slice/slice_string_helpers.cc +10 -1
- data/src/core/lib/slice/slice_string_helpers.h +3 -1
- data/src/core/lib/slice/slice_utils.h +200 -0
- data/src/core/lib/slice/slice_weak_hash_table.h +10 -17
- data/src/core/lib/surface/api_trace.h +1 -1
- data/src/core/lib/surface/byte_buffer_reader.cc +15 -43
- data/src/core/lib/surface/call.cc +419 -438
- data/src/core/lib/surface/call.h +14 -5
- data/src/core/lib/surface/call_details.cc +0 -1
- data/src/core/lib/surface/call_log_batch.cc +51 -60
- data/src/core/lib/surface/channel.cc +205 -144
- data/src/core/lib/surface/channel.h +85 -14
- data/src/core/lib/surface/channel_init.h +5 -0
- data/src/core/lib/surface/channel_ping.cc +3 -4
- data/src/core/lib/surface/completion_queue.cc +322 -281
- data/src/core/lib/surface/completion_queue.h +7 -21
- data/src/core/lib/surface/completion_queue_factory.cc +4 -4
- data/src/core/lib/surface/event_string.cc +18 -25
- data/src/core/lib/surface/event_string.h +3 -1
- data/src/core/lib/surface/init.cc +86 -31
- data/src/core/lib/surface/init.h +1 -0
- data/src/core/lib/surface/init_secure.cc +4 -4
- data/src/core/lib/surface/lame_client.cc +46 -35
- data/src/core/lib/surface/server.cc +815 -476
- data/src/core/lib/surface/server.h +50 -9
- data/src/core/lib/surface/validate_metadata.cc +18 -8
- data/src/core/lib/surface/validate_metadata.h +13 -2
- data/src/core/lib/surface/version.cc +2 -2
- data/src/core/lib/transport/bdp_estimator.cc +3 -3
- data/src/core/lib/transport/bdp_estimator.h +2 -2
- data/src/core/lib/transport/byte_stream.cc +5 -7
- data/src/core/lib/transport/byte_stream.h +13 -12
- data/src/core/lib/transport/connectivity_state.cc +114 -129
- data/src/core/lib/transport/connectivity_state.h +102 -58
- data/src/core/lib/transport/error_utils.cc +25 -2
- data/src/core/lib/transport/metadata.cc +428 -288
- data/src/core/lib/transport/metadata.h +307 -26
- data/src/core/lib/transport/metadata_batch.cc +81 -18
- data/src/core/lib/transport/metadata_batch.h +47 -6
- data/src/core/lib/transport/static_metadata.cc +1150 -521
- data/src/core/lib/transport/static_metadata.h +311 -317
- data/src/core/lib/transport/status_conversion.cc +7 -15
- data/src/core/lib/transport/status_metadata.cc +11 -4
- data/src/core/lib/transport/status_metadata.h +18 -0
- data/src/core/lib/transport/timeout_encoding.cc +8 -1
- data/src/core/lib/transport/timeout_encoding.h +4 -3
- data/src/core/lib/transport/transport.cc +49 -80
- data/src/core/lib/transport/transport.h +132 -54
- data/src/core/lib/transport/transport_impl.h +1 -1
- data/src/core/lib/transport/transport_op_string.cc +67 -105
- 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 +32 -4
- data/src/core/tsi/alts/crypt/aes_gcm.cc +0 -2
- data/src/core/tsi/alts/frame_protector/alts_unseal_privacy_integrity_crypter.cc +1 -1
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +715 -144
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.h +49 -35
- 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 +373 -217
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.h +45 -24
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker_private.h +43 -10
- data/src/core/tsi/alts/handshaker/alts_tsi_utils.cc +13 -7
- data/src/core/tsi/alts/handshaker/alts_tsi_utils.h +4 -3
- data/src/core/tsi/alts/handshaker/transport_security_common_api.cc +75 -48
- data/src/core/tsi/alts/handshaker/transport_security_common_api.h +35 -27
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.cc +2 -2
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.h +2 -3
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc +13 -3
- data/src/core/tsi/fake_transport_security.cc +26 -25
- data/src/core/tsi/fake_transport_security.h +2 -0
- data/src/core/tsi/local_transport_security.cc +8 -6
- data/src/core/tsi/ssl/session_cache/ssl_session.h +2 -6
- data/src/core/tsi/ssl/session_cache/ssl_session_boringssl.cc +2 -3
- data/src/core/tsi/ssl/session_cache/ssl_session_cache.cc +14 -11
- data/src/core/tsi/ssl/session_cache/ssl_session_cache.h +4 -13
- data/src/core/tsi/ssl/session_cache/ssl_session_openssl.cc +2 -3
- data/src/core/tsi/ssl_transport_security.cc +289 -125
- data/src/core/tsi/ssl_transport_security.h +52 -13
- data/src/core/tsi/ssl_types.h +0 -2
- data/src/core/tsi/transport_security.cc +31 -1
- data/src/core/tsi/transport_security.h +8 -10
- data/src/core/tsi/transport_security_grpc.cc +7 -0
- data/src/core/tsi/transport_security_grpc.h +8 -3
- data/src/core/tsi/transport_security_interface.h +15 -3
- data/src/ruby/bin/math_pb.rb +23 -21
- 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 +18 -4
- data/src/ruby/ext/grpc/rb_call.c +11 -2
- data/src/ruby/ext/grpc/rb_call_credentials.c +12 -6
- data/src/ruby/ext/grpc/rb_channel.c +18 -11
- data/src/ruby/ext/grpc/rb_channel_credentials.c +8 -4
- data/src/ruby/ext/grpc/rb_compression_options.c +9 -7
- data/src/ruby/ext/grpc/rb_enable_cpp.cc +22 -0
- data/src/ruby/ext/grpc/rb_event_thread.c +2 -0
- data/src/ruby/ext/grpc/rb_grpc.c +48 -60
- data/src/ruby/ext/grpc/rb_grpc.h +5 -1
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +42 -6
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +67 -13
- data/src/ruby/ext/grpc/rb_server.c +10 -4
- data/src/ruby/lib/grpc.rb +2 -0
- data/src/ruby/lib/grpc/core/status_codes.rb +135 -0
- data/src/ruby/lib/grpc/errors.rb +122 -46
- data/src/ruby/lib/grpc/generic/active_call.rb +2 -3
- data/src/ruby/lib/grpc/generic/bidi_call.rb +2 -2
- data/src/ruby/lib/grpc/generic/interceptors.rb +4 -4
- data/src/ruby/lib/grpc/generic/rpc_desc.rb +3 -3
- data/src/ruby/lib/grpc/generic/rpc_server.rb +64 -4
- data/src/ruby/lib/grpc/generic/service.rb +6 -5
- data/src/ruby/lib/grpc/google_rpc_status_utils.rb +9 -4
- data/src/ruby/lib/grpc/grpc.rb +1 -1
- data/src/ruby/lib/grpc/structs.rb +15 -0
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/src/ruby/pb/README.md +1 -1
- data/src/ruby/pb/generate_proto_ruby.sh +5 -3
- data/src/ruby/pb/grpc/health/checker.rb +2 -3
- data/src/ruby/pb/grpc/health/v1/health_pb.rb +16 -13
- data/src/ruby/pb/grpc/health/v1/health_services_pb.rb +18 -0
- data/src/ruby/pb/src/proto/grpc/testing/empty_pb.rb +4 -2
- data/src/ruby/pb/src/proto/grpc/testing/messages_pb.rb +92 -69
- data/src/ruby/pb/src/proto/grpc/testing/test_pb.rb +2 -0
- data/src/ruby/pb/src/proto/grpc/testing/test_services_pb.rb +16 -0
- data/src/ruby/spec/channel_spec.rb +44 -0
- data/src/ruby/spec/client_auth_spec.rb +5 -5
- data/src/ruby/spec/debug_message_spec.rb +134 -0
- data/src/ruby/spec/errors_spec.rb +142 -0
- data/src/ruby/spec/generic/client_stub_spec.rb +13 -9
- data/src/ruby/spec/generic/rpc_server_spec.rb +25 -3
- data/src/ruby/spec/generic/service_spec.rb +2 -0
- data/src/ruby/spec/google_rpc_status_utils_spec.rb +2 -2
- 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_ruby_style.proto +39 -0
- data/src/ruby/spec/pb/codegen/package_option_spec.rb +78 -0
- data/src/ruby/spec/support/services.rb +29 -22
- data/src/ruby/spec/testdata/ca.pem +18 -13
- data/src/ruby/spec/testdata/client.key +26 -14
- data/src/ruby/spec/testdata/client.pem +18 -12
- data/src/ruby/spec/testdata/server1.key +26 -14
- data/src/ruby/spec/testdata/server1.pem +20 -14
- 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/boringssl-with-bazel/err_data.c +1439 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/a_bitstr.c +0 -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 → boringssl-with-bazel/src}/crypto/asn1/a_gentm.c +0 -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 → boringssl-with-bazel/src}/crypto/asn1/a_octet.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/a_print.c +0 -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 → boringssl-with-bazel/src}/crypto/asn1/a_type.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/a_utctm.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/a_utf8.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_lib.c +446 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/asn1_locl.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/asn1_par.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/asn_pack.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/f_enum.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/f_int.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/f_string.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/tasn_dec.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_enc.c +664 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/tasn_fre.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/tasn_new.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/tasn_typ.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/tasn_utl.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/asn1/time_support.c +0 -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 → boringssl-with-bazel/src}/crypto/bio/bio_mem.c +0 -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 → boringssl-with-bazel/src}/crypto/bio/hexdump.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/bio/internal.h +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/pair.c +488 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/bio/printf.c +0 -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 → boringssl-with-bazel/src}/crypto/bn_extra/bn_asn1.c +0 -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 → boringssl-with-bazel/src}/crypto/bytestring/asn1_compat.c +0 -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 → boringssl-with-bazel/src}/crypto/cipher_extra/e_null.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cipher_extra/e_rc2.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cipher_extra/e_rc4.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_tls.c +688 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cipher_extra/internal.h +0 -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 → boringssl-with-bazel/src}/crypto/conf/conf_def.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/conf/internal.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cpu-aarch64-fuchsia.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cpu-aarch64-linux.c +0 -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 → boringssl-with-bazel/src}/crypto/cpu-arm.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu-intel.c +291 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/cpu-ppc64le.c +0 -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 → boringssl-with-bazel/src}/crypto/dh/dh_asn1.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/dh/params.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/digest_extra/digest_extra.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa.c +980 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/dsa/dsa_asn1.c +0 -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 → boringssl-with-bazel/src}/crypto/evp/digestsign.c +0 -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 → boringssl-with-bazel/src}/crypto/evp/pbkdf.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/evp/print.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/scrypt.c +213 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/evp/sign.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/ex_data.c +0 -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 → boringssl-with-bazel/src}/crypto/fipsmodule/bn/add.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/asm/x86_64-gcc.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bn.c +445 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/bytes.c +0 -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 → boringssl-with-bazel/src}/crypto/fipsmodule/bn/generic.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/internal.h +694 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/bn/jacobi.c +0 -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 → boringssl-with-bazel/src}/crypto/fipsmodule/bn/sqrt.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/cipher/aead.c +0 -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 → boringssl-with-bazel/src}/crypto/fipsmodule/des/des.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/des/internal.h +0 -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 → boringssl-with-bazel/src}/crypto/fipsmodule/digest/internal.h +0 -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 → boringssl-with-bazel/src}/crypto/fipsmodule/hmac/hmac.c +0 -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 → boringssl-with-bazel/src}/crypto/fipsmodule/modes/polyval.c +0 -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 → boringssl-with-bazel/src}/crypto/fipsmodule/sha/sha1-altivec.c +0 -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 → boringssl-with-bazel/src}/crypto/fipsmodule/tls/internal.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/fipsmodule/tls/kdf.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/hkdf/hkdf.c +0 -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 → boringssl-with-bazel/src}/crypto/obj/obj_xref.c +0 -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 → boringssl-with-bazel/src}/crypto/pem/pem_x509.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/pem/pem_xaux.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/pkcs7/internal.h +0 -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 → boringssl-with-bazel/src}/crypto/poly1305/internal.h +0 -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 → boringssl-with-bazel/src}/crypto/rand_extra/forkunsafe.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/fuchsia.c +30 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/rand_extra/rand_extra.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/windows.c +69 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/rc4/rc4.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/refcount_c11.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/refcount_lock.c +53 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/rsa_extra/rsa_asn1.c +0 -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 → boringssl-with-bazel/src}/crypto/thread.c +0 -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 → boringssl-with-bazel/src}/crypto/x509/a_digest.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/a_sign.c +0 -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 → boringssl-with-bazel/src}/crypto/x509/algorithm.c +0 -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 → boringssl-with-bazel/src}/crypto/x509/charmap.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/i2d_pr.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/internal.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/rsa_pss.c +0 -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 → boringssl-with-bazel/src}/crypto/x509/t_x509a.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/vpm_int.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x509.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x509_att.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_cmp.c +476 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x509_d2.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_def.c +103 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x509_ext.c +0 -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 → boringssl-with-bazel/src}/crypto/x509/x509_v3.c +0 -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 → boringssl-with-bazel/src}/crypto/x509/x509rset.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x509spki.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x_algor.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_all.c +399 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x_attrib.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x_crl.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x_exten.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x_info.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x_name.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x_pkey.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x_pubkey.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x_req.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x_sig.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x_spki.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x_val.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509.c +334 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509/x_x509a.c +0 -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 → boringssl-with-bazel/src}/crypto/x509v3/pcy_data.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/pcy_int.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/pcy_lib.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/pcy_map.c +0 -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 → boringssl-with-bazel/src}/crypto/x509v3/v3_akeya.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_alt.c +629 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_bcons.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_bitst.c +0 -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 → boringssl-with-bazel/src}/crypto/x509v3/v3_crld.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_enum.c +100 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_extku.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_genn.c +246 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_ia5.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_info.c +218 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_int.c +0 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_lib.c +371 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_ncons.c +0 -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 → boringssl-with-bazel/src}/crypto/x509v3/v3_pcia.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_pcons.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_pku.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_pmaps.c +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/crypto/x509v3/v3_prn.c +0 -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 → boringssl-with-bazel/src}/crypto/x509v3/v3_sxnet.c +0 -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 → boringssl-with-bazel/src}/include/openssl/arm_arch.h +0 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +911 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/asn1_mac.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/asn1t.h +0 -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 → boringssl-with-bazel/src}/include/openssl/buffer.h +0 -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 → boringssl-with-bazel/src}/include/openssl/chacha.h +0 -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 → boringssl-with-bazel/src}/include/openssl/des.h +0 -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 → boringssl-with-bazel/src}/include/openssl/dtls1.h +0 -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 → boringssl-with-bazel/src}/include/openssl/ex_data.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/hkdf.h +0 -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 → boringssl-with-bazel/src}/include/openssl/is_boringssl.h +0 -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 → boringssl-with-bazel/src}/include/openssl/obj_mac.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/objects.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/opensslconf.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/opensslv.h +0 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/ossl_typ.h +0 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/pem.h +435 -0
- data/third_party/{boringssl → boringssl-with-bazel/src}/include/openssl/pkcs12.h +0 -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 → boringssl-with-bazel/src}/include/openssl/rc4.h +0 -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 → boringssl-with-bazel/src}/include/openssl/safestack.h +0 -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 → boringssl-with-bazel/src}/include/openssl/srtp.h +0 -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 → boringssl-with-bazel/src}/ssl/bio_ssl.cc +0 -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/cares/ares.h +12 -0
- data/third_party/cares/cares/ares_create_query.c +5 -1
- data/third_party/cares/cares/ares_data.c +74 -73
- data/third_party/cares/cares/ares_destroy.c +6 -1
- data/third_party/cares/cares/ares_gethostbyaddr.c +5 -5
- data/third_party/cares/cares/ares_gethostbyname.c +15 -4
- data/third_party/cares/cares/ares_getnameinfo.c +11 -0
- data/third_party/cares/cares/ares_init.c +274 -173
- data/third_party/cares/cares/ares_library_init.c +21 -3
- data/third_party/cares/cares/ares_options.c +6 -2
- data/third_party/cares/cares/ares_parse_naptr_reply.c +7 -6
- data/third_party/cares/cares/ares_parse_ptr_reply.c +4 -2
- data/third_party/cares/cares/ares_platform.c +7 -0
- data/third_party/cares/cares/ares_private.h +19 -11
- data/third_party/cares/cares/ares_process.c +27 -2
- data/third_party/cares/cares/ares_rules.h +1 -1
- data/third_party/cares/cares/ares_search.c +7 -0
- data/third_party/cares/cares/ares_send.c +6 -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_version.h +4 -4
- data/third_party/cares/cares/config-win32.h +1 -1
- data/third_party/cares/cares/inet_ntop.c +2 -3
- data/third_party/cares/config_darwin/ares_config.h +3 -0
- data/third_party/cares/config_freebsd/ares_config.h +3 -0
- data/third_party/cares/config_linux/ares_config.h +3 -0
- data/third_party/cares/config_openbsd/ares_config.h +3 -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
- metadata +968 -542
- data/src/boringssl/err_data.c +0 -1362
- data/src/core/ext/filters/client_channel/connector.cc +0 -41
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/google/protobuf/duration.pb.c +0 -19
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/google/protobuf/duration.pb.h +0 -54
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/google/protobuf/timestamp.pb.c +0 -19
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/google/protobuf/timestamp.pb.h +0 -54
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c +0 -89
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.h +0 -164
- data/src/core/ext/filters/client_channel/lb_policy_factory.cc +0 -163
- data/src/core/ext/filters/client_channel/method_params.cc +0 -178
- data/src/core/ext/filters/client_channel/method_params.h +0 -78
- data/src/core/ext/filters/client_channel/proxy_mapper.cc +0 -48
- data/src/core/ext/filters/client_channel/subchannel_index.cc +0 -254
- data/src/core/ext/filters/client_channel/subchannel_index.h +0 -79
- data/src/core/ext/filters/client_channel/uri_parser.cc +0 -314
- data/src/core/ext/filters/client_channel/uri_parser.h +0 -50
- data/src/core/lib/channel/handshaker_factory.cc +0 -41
- data/src/core/lib/gpr/arena.cc +0 -145
- data/src/core/lib/gpr/host_port.cc +0 -98
- data/src/core/lib/gpr/host_port.h +0 -43
- data/src/core/lib/gpr/mpscq.cc +0 -117
- data/src/core/lib/gpr/mpscq.h +0 -86
- data/src/core/lib/gprpp/abstract.h +0 -37
- data/src/core/lib/gprpp/atomic_with_atm.h +0 -57
- data/src/core/lib/gprpp/atomic_with_std.h +0 -35
- data/src/core/lib/gprpp/inlined_vector.h +0 -186
- data/src/core/lib/gprpp/mutex_lock.h +0 -42
- data/src/core/lib/iomgr/ev_epollsig_linux.cc +0 -1743
- data/src/core/lib/iomgr/ev_epollsig_linux.h +0 -35
- data/src/core/lib/iomgr/network_status_tracker.cc +0 -36
- data/src/core/lib/iomgr/network_status_tracker.h +0 -32
- data/src/core/lib/iomgr/wakeup_fd_cv.cc +0 -107
- data/src/core/lib/iomgr/wakeup_fd_cv.h +0 -69
- data/src/core/lib/json/json.cc +0 -97
- data/src/core/lib/json/json_common.h +0 -34
- data/src/core/lib/json/json_reader.h +0 -146
- data/src/core/lib/json/json_string.cc +0 -367
- data/src/core/lib/json/json_writer.h +0 -84
- data/src/core/lib/security/security_connector/alts_security_connector.cc +0 -288
- data/src/core/lib/security/security_connector/alts_security_connector.h +0 -69
- data/src/core/lib/security/security_connector/local_security_connector.cc +0 -245
- data/src/core/lib/security/security_connector/local_security_connector.h +0 -58
- data/src/core/lib/transport/service_config.cc +0 -106
- data/src/core/lib/transport/service_config.h +0 -249
- data/src/core/tsi/alts/handshaker/alts_handshaker_service_api.cc +0 -520
- data/src/core/tsi/alts/handshaker/alts_handshaker_service_api.h +0 -323
- data/src/core/tsi/alts/handshaker/alts_handshaker_service_api_util.cc +0 -143
- data/src/core/tsi/alts/handshaker/alts_handshaker_service_api_util.h +0 -149
- data/src/core/tsi/alts/handshaker/alts_tsi_event.cc +0 -73
- data/src/core/tsi/alts/handshaker/alts_tsi_event.h +0 -93
- data/src/core/tsi/alts/handshaker/altscontext.pb.c +0 -47
- data/src/core/tsi/alts/handshaker/altscontext.pb.h +0 -63
- data/src/core/tsi/alts/handshaker/handshaker.pb.c +0 -122
- data/src/core/tsi/alts/handshaker/handshaker.pb.h +0 -254
- data/src/core/tsi/alts/handshaker/transport_security_common.pb.c +0 -49
- data/src/core/tsi/alts/handshaker/transport_security_common.pb.h +0 -78
- data/src/core/tsi/alts_transport_security.cc +0 -63
- data/src/core/tsi/alts_transport_security.h +0 -47
- data/src/core/tsi/grpc_shadow_boringssl.h +0 -3006
- data/third_party/boringssl/crypto/asn1/a_bool.c +0 -110
- data/third_party/boringssl/crypto/asn1/a_d2i_fp.c +0 -297
- data/third_party/boringssl/crypto/asn1/a_dup.c +0 -111
- data/third_party/boringssl/crypto/asn1/a_enum.c +0 -195
- data/third_party/boringssl/crypto/asn1/a_i2d_fp.c +0 -150
- data/third_party/boringssl/crypto/asn1/a_int.c +0 -479
- data/third_party/boringssl/crypto/asn1/a_mbstr.c +0 -411
- data/third_party/boringssl/crypto/asn1/a_object.c +0 -275
- data/third_party/boringssl/crypto/asn1/a_strnid.c +0 -312
- data/third_party/boringssl/crypto/asn1/a_time.c +0 -213
- data/third_party/boringssl/crypto/asn1/asn1_lib.c +0 -442
- data/third_party/boringssl/crypto/asn1/tasn_enc.c +0 -662
- data/third_party/boringssl/crypto/base64/base64.c +0 -466
- data/third_party/boringssl/crypto/bio/bio.c +0 -636
- data/third_party/boringssl/crypto/bio/connect.c +0 -542
- data/third_party/boringssl/crypto/bio/fd.c +0 -276
- data/third_party/boringssl/crypto/bio/file.c +0 -315
- data/third_party/boringssl/crypto/bio/pair.c +0 -489
- data/third_party/boringssl/crypto/bio/socket.c +0 -202
- data/third_party/boringssl/crypto/bio/socket_helper.c +0 -114
- data/third_party/boringssl/crypto/bn_extra/convert.c +0 -466
- data/third_party/boringssl/crypto/buf/buf.c +0 -231
- data/third_party/boringssl/crypto/bytestring/ber.c +0 -261
- data/third_party/boringssl/crypto/bytestring/cbb.c +0 -668
- data/third_party/boringssl/crypto/bytestring/cbs.c +0 -618
- data/third_party/boringssl/crypto/bytestring/internal.h +0 -75
- data/third_party/boringssl/crypto/chacha/chacha.c +0 -167
- data/third_party/boringssl/crypto/cipher_extra/cipher_extra.c +0 -114
- data/third_party/boringssl/crypto/cipher_extra/derive_key.c +0 -152
- data/third_party/boringssl/crypto/cipher_extra/e_aesccm.c +0 -203
- data/third_party/boringssl/crypto/cipher_extra/e_aesctrhmac.c +0 -281
- data/third_party/boringssl/crypto/cipher_extra/e_aesgcmsiv.c +0 -867
- data/third_party/boringssl/crypto/cipher_extra/e_chacha20poly1305.c +0 -326
- data/third_party/boringssl/crypto/cipher_extra/e_ssl3.c +0 -460
- data/third_party/boringssl/crypto/cipher_extra/e_tls.c +0 -680
- data/third_party/boringssl/crypto/cipher_extra/tls_cbc.c +0 -482
- data/third_party/boringssl/crypto/cmac/cmac.c +0 -241
- data/third_party/boringssl/crypto/conf/conf.c +0 -803
- data/third_party/boringssl/crypto/cpu-arm-linux.c +0 -363
- data/third_party/boringssl/crypto/cpu-intel.c +0 -288
- data/third_party/boringssl/crypto/crypto.c +0 -198
- data/third_party/boringssl/crypto/curve25519/spake25519.c +0 -539
- data/third_party/boringssl/crypto/dh/check.c +0 -217
- data/third_party/boringssl/crypto/dh/dh.c +0 -519
- data/third_party/boringssl/crypto/dsa/dsa.c +0 -946
- data/third_party/boringssl/crypto/ec_extra/ec_asn1.c +0 -562
- data/third_party/boringssl/crypto/ecdh/ecdh.c +0 -162
- data/third_party/boringssl/crypto/ecdsa_extra/ecdsa_asn1.c +0 -275
- data/third_party/boringssl/crypto/engine/engine.c +0 -98
- data/third_party/boringssl/crypto/err/err.c +0 -847
- data/third_party/boringssl/crypto/err/internal.h +0 -58
- data/third_party/boringssl/crypto/evp/evp.c +0 -362
- data/third_party/boringssl/crypto/evp/evp_asn1.c +0 -337
- data/third_party/boringssl/crypto/evp/evp_ctx.c +0 -446
- data/third_party/boringssl/crypto/evp/internal.h +0 -252
- data/third_party/boringssl/crypto/evp/p_dsa_asn1.c +0 -268
- data/third_party/boringssl/crypto/evp/p_ec.c +0 -239
- data/third_party/boringssl/crypto/evp/p_ec_asn1.c +0 -256
- data/third_party/boringssl/crypto/evp/p_ed25519.c +0 -71
- data/third_party/boringssl/crypto/evp/p_ed25519_asn1.c +0 -190
- data/third_party/boringssl/crypto/evp/p_rsa.c +0 -634
- data/third_party/boringssl/crypto/evp/p_rsa_asn1.c +0 -189
- data/third_party/boringssl/crypto/evp/scrypt.c +0 -209
- data/third_party/boringssl/crypto/fipsmodule/aes/aes.c +0 -1100
- data/third_party/boringssl/crypto/fipsmodule/aes/internal.h +0 -100
- data/third_party/boringssl/crypto/fipsmodule/aes/key_wrap.c +0 -138
- data/third_party/boringssl/crypto/fipsmodule/aes/mode_wrappers.c +0 -112
- data/third_party/boringssl/crypto/fipsmodule/bcm.c +0 -148
- data/third_party/boringssl/crypto/fipsmodule/bn/bn.c +0 -428
- data/third_party/boringssl/crypto/fipsmodule/bn/cmp.c +0 -200
- data/third_party/boringssl/crypto/fipsmodule/bn/ctx.c +0 -303
- data/third_party/boringssl/crypto/fipsmodule/bn/div.c +0 -895
- data/third_party/boringssl/crypto/fipsmodule/bn/exponentiation.c +0 -1356
- data/third_party/boringssl/crypto/fipsmodule/bn/gcd.c +0 -683
- data/third_party/boringssl/crypto/fipsmodule/bn/internal.h +0 -573
- data/third_party/boringssl/crypto/fipsmodule/bn/montgomery.c +0 -526
- data/third_party/boringssl/crypto/fipsmodule/bn/montgomery_inv.c +0 -185
- data/third_party/boringssl/crypto/fipsmodule/bn/mul.c +0 -876
- data/third_party/boringssl/crypto/fipsmodule/bn/prime.c +0 -1154
- data/third_party/boringssl/crypto/fipsmodule/bn/random.c +0 -351
- data/third_party/boringssl/crypto/fipsmodule/bn/rsaz_exp.c +0 -231
- data/third_party/boringssl/crypto/fipsmodule/bn/rsaz_exp.h +0 -33
- data/third_party/boringssl/crypto/fipsmodule/bn/shift.c +0 -364
- data/third_party/boringssl/crypto/fipsmodule/cipher/cipher.c +0 -615
- data/third_party/boringssl/crypto/fipsmodule/cipher/e_aes.c +0 -1437
- data/third_party/boringssl/crypto/fipsmodule/cipher/e_des.c +0 -233
- data/third_party/boringssl/crypto/fipsmodule/cipher/internal.h +0 -129
- data/third_party/boringssl/crypto/fipsmodule/delocate.h +0 -88
- data/third_party/boringssl/crypto/fipsmodule/digest/digest.c +0 -256
- data/third_party/boringssl/crypto/fipsmodule/digest/digests.c +0 -280
- data/third_party/boringssl/crypto/fipsmodule/digest/md32_common.h +0 -268
- data/third_party/boringssl/crypto/fipsmodule/ec/ec.c +0 -974
- data/third_party/boringssl/crypto/fipsmodule/ec/ec_key.c +0 -453
- data/third_party/boringssl/crypto/fipsmodule/ec/ec_montgomery.c +0 -270
- data/third_party/boringssl/crypto/fipsmodule/ec/internal.h +0 -337
- data/third_party/boringssl/crypto/fipsmodule/ec/oct.c +0 -373
- data/third_party/boringssl/crypto/fipsmodule/ec/p224-64.c +0 -1104
- data/third_party/boringssl/crypto/fipsmodule/ec/p256-x86_64-table.h +0 -9503
- data/third_party/boringssl/crypto/fipsmodule/ec/p256-x86_64.c +0 -447
- data/third_party/boringssl/crypto/fipsmodule/ec/p256-x86_64.h +0 -117
- data/third_party/boringssl/crypto/fipsmodule/ec/simple.c +0 -1046
- data/third_party/boringssl/crypto/fipsmodule/ec/util.c +0 -104
- data/third_party/boringssl/crypto/fipsmodule/ec/wnaf.c +0 -354
- data/third_party/boringssl/crypto/fipsmodule/ecdsa/ecdsa.c +0 -458
- data/third_party/boringssl/crypto/fipsmodule/is_fips.c +0 -27
- data/third_party/boringssl/crypto/fipsmodule/md4/md4.c +0 -254
- data/third_party/boringssl/crypto/fipsmodule/md5/md5.c +0 -298
- data/third_party/boringssl/crypto/fipsmodule/modes/cbc.c +0 -211
- data/third_party/boringssl/crypto/fipsmodule/modes/ccm.c +0 -256
- data/third_party/boringssl/crypto/fipsmodule/modes/cfb.c +0 -234
- data/third_party/boringssl/crypto/fipsmodule/modes/ctr.c +0 -220
- data/third_party/boringssl/crypto/fipsmodule/modes/gcm.c +0 -1063
- data/third_party/boringssl/crypto/fipsmodule/modes/internal.h +0 -388
- data/third_party/boringssl/crypto/fipsmodule/modes/ofb.c +0 -95
- data/third_party/boringssl/crypto/fipsmodule/rand/ctrdrbg.c +0 -202
- data/third_party/boringssl/crypto/fipsmodule/rand/internal.h +0 -92
- data/third_party/boringssl/crypto/fipsmodule/rand/rand.c +0 -358
- data/third_party/boringssl/crypto/fipsmodule/rand/urandom.c +0 -302
- data/third_party/boringssl/crypto/fipsmodule/rsa/blinding.c +0 -239
- data/third_party/boringssl/crypto/fipsmodule/rsa/internal.h +0 -126
- data/third_party/boringssl/crypto/fipsmodule/rsa/padding.c +0 -692
- data/third_party/boringssl/crypto/fipsmodule/rsa/rsa.c +0 -875
- data/third_party/boringssl/crypto/fipsmodule/rsa/rsa_impl.c +0 -1218
- data/third_party/boringssl/crypto/fipsmodule/self_check/self_check.c +0 -581
- data/third_party/boringssl/crypto/fipsmodule/sha/sha1.c +0 -375
- data/third_party/boringssl/crypto/fipsmodule/sha/sha256.c +0 -337
- data/third_party/boringssl/crypto/fipsmodule/sha/sha512.c +0 -608
- data/third_party/boringssl/crypto/internal.h +0 -739
- data/third_party/boringssl/crypto/lhash/lhash.c +0 -336
- data/third_party/boringssl/crypto/mem.c +0 -235
- data/third_party/boringssl/crypto/obj/obj.c +0 -554
- data/third_party/boringssl/crypto/obj/obj_dat.h +0 -6244
- data/third_party/boringssl/crypto/pem/pem_all.c +0 -262
- data/third_party/boringssl/crypto/pem/pem_info.c +0 -379
- data/third_party/boringssl/crypto/pem/pem_lib.c +0 -776
- data/third_party/boringssl/crypto/pem/pem_oth.c +0 -88
- data/third_party/boringssl/crypto/pem/pem_pk8.c +0 -258
- data/third_party/boringssl/crypto/pem/pem_pkey.c +0 -227
- data/third_party/boringssl/crypto/pkcs7/pkcs7.c +0 -166
- data/third_party/boringssl/crypto/pkcs7/pkcs7_x509.c +0 -233
- data/third_party/boringssl/crypto/pkcs8/internal.h +0 -120
- data/third_party/boringssl/crypto/pkcs8/p5_pbev2.c +0 -307
- data/third_party/boringssl/crypto/pkcs8/pkcs8.c +0 -513
- data/third_party/boringssl/crypto/pkcs8/pkcs8_x509.c +0 -789
- data/third_party/boringssl/crypto/poly1305/poly1305.c +0 -318
- data/third_party/boringssl/crypto/poly1305/poly1305_arm.c +0 -304
- data/third_party/boringssl/crypto/poly1305/poly1305_vec.c +0 -839
- data/third_party/boringssl/crypto/pool/internal.h +0 -45
- data/third_party/boringssl/crypto/pool/pool.c +0 -200
- data/third_party/boringssl/crypto/rand_extra/deterministic.c +0 -48
- data/third_party/boringssl/crypto/rand_extra/fuchsia.c +0 -43
- data/third_party/boringssl/crypto/rand_extra/windows.c +0 -53
- data/third_party/boringssl/crypto/refcount_lock.c +0 -53
- data/third_party/boringssl/crypto/stack/stack.c +0 -380
- data/third_party/boringssl/crypto/thread_none.c +0 -59
- data/third_party/boringssl/crypto/thread_pthread.c +0 -206
- data/third_party/boringssl/crypto/thread_win.c +0 -237
- data/third_party/boringssl/crypto/x509/a_strex.c +0 -633
- data/third_party/boringssl/crypto/x509/a_verify.c +0 -115
- data/third_party/boringssl/crypto/x509/asn1_gen.c +0 -841
- data/third_party/boringssl/crypto/x509/by_dir.c +0 -451
- data/third_party/boringssl/crypto/x509/by_file.c +0 -274
- data/third_party/boringssl/crypto/x509/t_crl.c +0 -128
- data/third_party/boringssl/crypto/x509/t_req.c +0 -246
- data/third_party/boringssl/crypto/x509/t_x509.c +0 -547
- data/third_party/boringssl/crypto/x509/x509_cmp.c +0 -477
- data/third_party/boringssl/crypto/x509/x509_def.c +0 -103
- data/third_party/boringssl/crypto/x509/x509_lu.c +0 -725
- data/third_party/boringssl/crypto/x509/x509_obj.c +0 -198
- data/third_party/boringssl/crypto/x509/x509_r2x.c +0 -117
- data/third_party/boringssl/crypto/x509/x509_req.c +0 -322
- data/third_party/boringssl/crypto/x509/x509_set.c +0 -164
- data/third_party/boringssl/crypto/x509/x509_trs.c +0 -326
- data/third_party/boringssl/crypto/x509/x509_txt.c +0 -205
- data/third_party/boringssl/crypto/x509/x509_vfy.c +0 -2476
- data/third_party/boringssl/crypto/x509/x509_vpm.c +0 -670
- data/third_party/boringssl/crypto/x509/x509cset.c +0 -170
- data/third_party/boringssl/crypto/x509/x509name.c +0 -389
- data/third_party/boringssl/crypto/x509/x_all.c +0 -501
- data/third_party/boringssl/crypto/x509/x_x509.c +0 -328
- data/third_party/boringssl/crypto/x509v3/ext_dat.h +0 -143
- data/third_party/boringssl/crypto/x509v3/pcy_cache.c +0 -284
- data/third_party/boringssl/crypto/x509v3/pcy_node.c +0 -188
- data/third_party/boringssl/crypto/x509v3/pcy_tree.c +0 -840
- data/third_party/boringssl/crypto/x509v3/v3_akey.c +0 -204
- data/third_party/boringssl/crypto/x509v3/v3_alt.c +0 -623
- data/third_party/boringssl/crypto/x509v3/v3_conf.c +0 -462
- data/third_party/boringssl/crypto/x509v3/v3_cpols.c +0 -502
- data/third_party/boringssl/crypto/x509v3/v3_enum.c +0 -100
- data/third_party/boringssl/crypto/x509v3/v3_genn.c +0 -251
- data/third_party/boringssl/crypto/x509v3/v3_info.c +0 -219
- data/third_party/boringssl/crypto/x509v3/v3_lib.c +0 -370
- data/third_party/boringssl/crypto/x509v3/v3_pci.c +0 -287
- data/third_party/boringssl/crypto/x509v3/v3_purp.c +0 -866
- data/third_party/boringssl/crypto/x509v3/v3_skey.c +0 -152
- data/third_party/boringssl/crypto/x509v3/v3_utl.c +0 -1352
- data/third_party/boringssl/include/openssl/aead.h +0 -433
- data/third_party/boringssl/include/openssl/aes.h +0 -170
- data/third_party/boringssl/include/openssl/asn1.h +0 -981
- data/third_party/boringssl/include/openssl/base.h +0 -457
- data/third_party/boringssl/include/openssl/base64.h +0 -187
- data/third_party/boringssl/include/openssl/bio.h +0 -902
- data/third_party/boringssl/include/openssl/blowfish.h +0 -93
- data/third_party/boringssl/include/openssl/bn.h +0 -1019
- data/third_party/boringssl/include/openssl/buf.h +0 -137
- data/third_party/boringssl/include/openssl/bytestring.h +0 -505
- data/third_party/boringssl/include/openssl/cast.h +0 -96
- data/third_party/boringssl/include/openssl/cipher.h +0 -608
- data/third_party/boringssl/include/openssl/cmac.h +0 -87
- data/third_party/boringssl/include/openssl/conf.h +0 -183
- data/third_party/boringssl/include/openssl/cpu.h +0 -196
- data/third_party/boringssl/include/openssl/crypto.h +0 -122
- data/third_party/boringssl/include/openssl/curve25519.h +0 -201
- data/third_party/boringssl/include/openssl/dh.h +0 -298
- data/third_party/boringssl/include/openssl/digest.h +0 -316
- data/third_party/boringssl/include/openssl/dsa.h +0 -435
- data/third_party/boringssl/include/openssl/ec.h +0 -413
- data/third_party/boringssl/include/openssl/ec_key.h +0 -342
- data/third_party/boringssl/include/openssl/ecdh.h +0 -101
- data/third_party/boringssl/include/openssl/ecdsa.h +0 -199
- data/third_party/boringssl/include/openssl/engine.h +0 -109
- data/third_party/boringssl/include/openssl/err.h +0 -458
- data/third_party/boringssl/include/openssl/evp.h +0 -873
- data/third_party/boringssl/include/openssl/hmac.h +0 -186
- data/third_party/boringssl/include/openssl/lhash.h +0 -174
- data/third_party/boringssl/include/openssl/lhash_macros.h +0 -174
- data/third_party/boringssl/include/openssl/md4.h +0 -106
- data/third_party/boringssl/include/openssl/md5.h +0 -107
- data/third_party/boringssl/include/openssl/mem.h +0 -156
- data/third_party/boringssl/include/openssl/nid.h +0 -4242
- data/third_party/boringssl/include/openssl/obj.h +0 -233
- data/third_party/boringssl/include/openssl/pem.h +0 -397
- data/third_party/boringssl/include/openssl/pkcs7.h +0 -82
- data/third_party/boringssl/include/openssl/pkcs8.h +0 -230
- data/third_party/boringssl/include/openssl/poly1305.h +0 -51
- data/third_party/boringssl/include/openssl/pool.h +0 -91
- data/third_party/boringssl/include/openssl/rand.h +0 -125
- data/third_party/boringssl/include/openssl/ripemd.h +0 -107
- data/third_party/boringssl/include/openssl/rsa.h +0 -756
- data/third_party/boringssl/include/openssl/sha.h +0 -256
- data/third_party/boringssl/include/openssl/span.h +0 -191
- data/third_party/boringssl/include/openssl/ssl.h +0 -4740
- data/third_party/boringssl/include/openssl/ssl3.h +0 -332
- data/third_party/boringssl/include/openssl/stack.h +0 -485
- data/third_party/boringssl/include/openssl/thread.h +0 -191
- data/third_party/boringssl/include/openssl/tls1.h +0 -618
- data/third_party/boringssl/include/openssl/type_check.h +0 -91
- data/third_party/boringssl/include/openssl/x509.h +0 -1180
- data/third_party/boringssl/include/openssl/x509_vfy.h +0 -614
- data/third_party/boringssl/include/openssl/x509v3.h +0 -827
- data/third_party/boringssl/ssl/custom_extensions.cc +0 -265
- data/third_party/boringssl/ssl/d1_both.cc +0 -851
- data/third_party/boringssl/ssl/d1_lib.cc +0 -267
- data/third_party/boringssl/ssl/d1_pkt.cc +0 -274
- data/third_party/boringssl/ssl/d1_srtp.cc +0 -232
- data/third_party/boringssl/ssl/dtls_method.cc +0 -193
- data/third_party/boringssl/ssl/dtls_record.cc +0 -353
- data/third_party/boringssl/ssl/handoff.cc +0 -285
- data/third_party/boringssl/ssl/handshake.cc +0 -630
- data/third_party/boringssl/ssl/handshake_client.cc +0 -1842
- data/third_party/boringssl/ssl/handshake_server.cc +0 -1674
- data/third_party/boringssl/ssl/internal.h +0 -3064
- data/third_party/boringssl/ssl/s3_both.cc +0 -585
- data/third_party/boringssl/ssl/s3_lib.cc +0 -226
- data/third_party/boringssl/ssl/s3_pkt.cc +0 -425
- data/third_party/boringssl/ssl/ssl_aead_ctx.cc +0 -412
- data/third_party/boringssl/ssl/ssl_asn1.cc +0 -844
- data/third_party/boringssl/ssl/ssl_buffer.cc +0 -286
- data/third_party/boringssl/ssl/ssl_cert.cc +0 -913
- data/third_party/boringssl/ssl/ssl_cipher.cc +0 -1781
- data/third_party/boringssl/ssl/ssl_file.cc +0 -583
- data/third_party/boringssl/ssl/ssl_key_share.cc +0 -252
- data/third_party/boringssl/ssl/ssl_lib.cc +0 -2719
- data/third_party/boringssl/ssl/ssl_privkey.cc +0 -494
- data/third_party/boringssl/ssl/ssl_session.cc +0 -1221
- data/third_party/boringssl/ssl/ssl_stat.cc +0 -224
- data/third_party/boringssl/ssl/ssl_transcript.cc +0 -398
- data/third_party/boringssl/ssl/ssl_versions.cc +0 -399
- data/third_party/boringssl/ssl/ssl_x509.cc +0 -1297
- data/third_party/boringssl/ssl/t1_enc.cc +0 -452
- data/third_party/boringssl/ssl/t1_lib.cc +0 -3783
- data/third_party/boringssl/ssl/tls13_both.cc +0 -559
- data/third_party/boringssl/ssl/tls13_client.cc +0 -891
- data/third_party/boringssl/ssl/tls13_enc.cc +0 -493
- data/third_party/boringssl/ssl/tls13_server.cc +0 -1022
- data/third_party/boringssl/ssl/tls_method.cc +0 -274
- data/third_party/boringssl/ssl/tls_record.cc +0 -703
- data/third_party/boringssl/third_party/fiat/curve25519.c +0 -3230
- data/third_party/boringssl/third_party/fiat/curve25519_tables.h +0 -7880
- data/third_party/boringssl/third_party/fiat/internal.h +0 -154
- data/third_party/boringssl/third_party/fiat/p256.c +0 -1824
- data/third_party/nanopb/pb.h +0 -579
- data/third_party/nanopb/pb_common.c +0 -97
- data/third_party/nanopb/pb_common.h +0 -42
- data/third_party/nanopb/pb_decode.c +0 -1347
- data/third_party/nanopb/pb_decode.h +0 -149
- data/third_party/nanopb/pb_encode.c +0 -696
- data/third_party/nanopb/pb_encode.h +0 -154
@@ -67,7 +67,7 @@ static bool stream_list_pop(grpc_chttp2_transport* t,
|
|
67
67
|
s->included[id] = 0;
|
68
68
|
}
|
69
69
|
*stream = s;
|
70
|
-
if (s && grpc_trace_http2_stream_state
|
70
|
+
if (s && GRPC_TRACE_FLAG_ENABLED(grpc_trace_http2_stream_state)) {
|
71
71
|
gpr_log(GPR_INFO, "%p[%d][%s]: pop from %s", t, s->id,
|
72
72
|
t->is_client ? "cli" : "svr", stream_list_id_string(id));
|
73
73
|
}
|
@@ -89,7 +89,7 @@ static void stream_list_remove(grpc_chttp2_transport* t, grpc_chttp2_stream* s,
|
|
89
89
|
} else {
|
90
90
|
t->lists[id].tail = s->links[id].prev;
|
91
91
|
}
|
92
|
-
if (grpc_trace_http2_stream_state
|
92
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_trace_http2_stream_state)) {
|
93
93
|
gpr_log(GPR_INFO, "%p[%d][%s]: remove from %s", t, s->id,
|
94
94
|
t->is_client ? "cli" : "svr", stream_list_id_string(id));
|
95
95
|
}
|
@@ -121,7 +121,7 @@ static void stream_list_add_tail(grpc_chttp2_transport* t,
|
|
121
121
|
}
|
122
122
|
t->lists[id].tail = s;
|
123
123
|
s->included[id] = 1;
|
124
|
-
if (grpc_trace_http2_stream_state
|
124
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_trace_http2_stream_state)) {
|
125
125
|
gpr_log(GPR_INFO, "%p[%d][%s]: add to %s", t, s->id,
|
126
126
|
t->is_client ? "cli" : "svr", stream_list_id_string(id));
|
127
127
|
}
|
@@ -27,7 +27,7 @@
|
|
27
27
|
|
28
28
|
void grpc_chttp2_stream_map_init(grpc_chttp2_stream_map* map,
|
29
29
|
size_t initial_capacity) {
|
30
|
-
|
30
|
+
GPR_DEBUG_ASSERT(initial_capacity > 1);
|
31
31
|
map->keys =
|
32
32
|
static_cast<uint32_t*>(gpr_malloc(sizeof(uint32_t) * initial_capacity));
|
33
33
|
map->values =
|
@@ -63,9 +63,17 @@ void grpc_chttp2_stream_map_add(grpc_chttp2_stream_map* map, uint32_t key,
|
|
63
63
|
uint32_t* keys = map->keys;
|
64
64
|
void** values = map->values;
|
65
65
|
|
66
|
+
// The first assertion ensures that the table is monotonically increasing.
|
66
67
|
GPR_ASSERT(count == 0 || keys[count - 1] < key);
|
67
|
-
|
68
|
-
|
68
|
+
GPR_DEBUG_ASSERT(value);
|
69
|
+
// Asserting that the key is not already in the map can be a debug assertion.
|
70
|
+
// Why: we're already checking that the map elements are monotonically
|
71
|
+
// increasing. If we re-add a key, i.e. if the key is already present, then
|
72
|
+
// either it is the most recently added key in the map (in which case the
|
73
|
+
// first assertion fails due to key == last_key) or there is a more recently
|
74
|
+
// added (larger) key at the end of the map: in which case the first assertion
|
75
|
+
// still fails due to key < last_key.
|
76
|
+
GPR_DEBUG_ASSERT(grpc_chttp2_stream_map_find(map, key) == nullptr);
|
69
77
|
|
70
78
|
if (count == capacity) {
|
71
79
|
if (map->free > capacity / 4) {
|
@@ -74,7 +82,7 @@ void grpc_chttp2_stream_map_add(grpc_chttp2_stream_map* map, uint32_t key,
|
|
74
82
|
} else {
|
75
83
|
/* resize when less than 25% of the table is free, because compaction
|
76
84
|
won't help much */
|
77
|
-
map->capacity = capacity =
|
85
|
+
map->capacity = capacity = 2 * capacity;
|
78
86
|
map->keys = keys = static_cast<uint32_t*>(
|
79
87
|
gpr_realloc(keys, capacity * sizeof(uint32_t)));
|
80
88
|
map->values = values =
|
@@ -87,6 +95,7 @@ void grpc_chttp2_stream_map_add(grpc_chttp2_stream_map* map, uint32_t key,
|
|
87
95
|
map->count = count + 1;
|
88
96
|
}
|
89
97
|
|
98
|
+
template <bool strict_find>
|
90
99
|
static void** find(grpc_chttp2_stream_map* map, uint32_t key) {
|
91
100
|
size_t min_idx = 0;
|
92
101
|
size_t max_idx = map->count;
|
@@ -95,7 +104,8 @@ static void** find(grpc_chttp2_stream_map* map, uint32_t key) {
|
|
95
104
|
void** values = map->values;
|
96
105
|
uint32_t mid_key;
|
97
106
|
|
98
|
-
|
107
|
+
GPR_DEBUG_ASSERT(!strict_find || max_idx > 0);
|
108
|
+
if (!strict_find && max_idx == 0) return nullptr;
|
99
109
|
|
100
110
|
while (min_idx < max_idx) {
|
101
111
|
/* find the midpoint, avoiding overflow */
|
@@ -112,28 +122,28 @@ static void** find(grpc_chttp2_stream_map* map, uint32_t key) {
|
|
112
122
|
}
|
113
123
|
}
|
114
124
|
|
125
|
+
GPR_DEBUG_ASSERT(!strict_find);
|
115
126
|
return nullptr;
|
116
127
|
}
|
117
128
|
|
118
129
|
void* grpc_chttp2_stream_map_delete(grpc_chttp2_stream_map* map, uint32_t key) {
|
119
|
-
void** pvalue = find(map, key);
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
}
|
130
|
-
GPR_ASSERT(grpc_chttp2_stream_map_find(map, key) == nullptr);
|
130
|
+
void** pvalue = find<true>(map, key);
|
131
|
+
GPR_DEBUG_ASSERT(pvalue != nullptr);
|
132
|
+
void* out = *pvalue;
|
133
|
+
GPR_DEBUG_ASSERT(out != nullptr);
|
134
|
+
*pvalue = nullptr;
|
135
|
+
map->free++;
|
136
|
+
/* recognize complete emptyness and ensure we can skip
|
137
|
+
defragmentation later */
|
138
|
+
if (map->free == map->count) {
|
139
|
+
map->free = map->count = 0;
|
131
140
|
}
|
141
|
+
GPR_DEBUG_ASSERT(grpc_chttp2_stream_map_find(map, key) == nullptr);
|
132
142
|
return out;
|
133
143
|
}
|
134
144
|
|
135
145
|
void* grpc_chttp2_stream_map_find(grpc_chttp2_stream_map* map, uint32_t key) {
|
136
|
-
void** pvalue = find(map, key);
|
146
|
+
void** pvalue = find<false>(map, key);
|
137
147
|
return pvalue != nullptr ? *pvalue : nullptr;
|
138
148
|
}
|
139
149
|
|
@@ -29,14 +29,13 @@
|
|
29
29
|
Lookups are performed with binary search.
|
30
30
|
Adds are restricted to strictly higher keys than previously seen (this is
|
31
31
|
guaranteed by http2). */
|
32
|
-
|
32
|
+
struct grpc_chttp2_stream_map {
|
33
33
|
uint32_t* keys;
|
34
34
|
void** values;
|
35
35
|
size_t count;
|
36
36
|
size_t free;
|
37
37
|
size_t capacity;
|
38
|
-
}
|
39
|
-
|
38
|
+
};
|
40
39
|
void grpc_chttp2_stream_map_init(grpc_chttp2_stream_map* map,
|
41
40
|
size_t initial_capacity);
|
42
41
|
void grpc_chttp2_stream_map_destroy(grpc_chttp2_stream_map* map);
|
@@ -18,12 +18,15 @@
|
|
18
18
|
|
19
19
|
#include <grpc/support/port_platform.h>
|
20
20
|
|
21
|
+
#include "src/core/ext/transport/chttp2/transport/chttp2_transport.h"
|
22
|
+
#include "src/core/ext/transport/chttp2/transport/context_list.h"
|
21
23
|
#include "src/core/ext/transport/chttp2/transport/internal.h"
|
22
24
|
|
23
25
|
#include <limits.h>
|
24
26
|
|
25
27
|
#include <grpc/support/log.h>
|
26
28
|
|
29
|
+
#include "src/core/lib/compression/stream_compression.h"
|
27
30
|
#include "src/core/lib/debug/stats.h"
|
28
31
|
#include "src/core/lib/profiling/timers.h"
|
29
32
|
#include "src/core/lib/slice/slice_internal.h"
|
@@ -51,8 +54,10 @@ static void maybe_initiate_ping(grpc_chttp2_transport* t) {
|
|
51
54
|
}
|
52
55
|
if (!grpc_closure_list_empty(pq->lists[GRPC_CHTTP2_PCL_INFLIGHT])) {
|
53
56
|
/* ping already in-flight: wait */
|
54
|
-
if (grpc_http_trace
|
55
|
-
|
57
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_http_trace) ||
|
58
|
+
GRPC_TRACE_FLAG_ENABLED(grpc_bdp_estimator_trace) ||
|
59
|
+
GRPC_TRACE_FLAG_ENABLED(grpc_keepalive_trace)) {
|
60
|
+
gpr_log(GPR_INFO, "%s: Ping delayed [%s]: already pinging",
|
56
61
|
t->is_client ? "CLIENT" : "SERVER", t->peer_string);
|
57
62
|
}
|
58
63
|
return;
|
@@ -60,8 +65,10 @@ static void maybe_initiate_ping(grpc_chttp2_transport* t) {
|
|
60
65
|
if (t->ping_state.pings_before_data_required == 0 &&
|
61
66
|
t->ping_policy.max_pings_without_data != 0) {
|
62
67
|
/* need to receive something of substance before sending a ping again */
|
63
|
-
if (grpc_http_trace
|
64
|
-
|
68
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_http_trace) ||
|
69
|
+
GRPC_TRACE_FLAG_ENABLED(grpc_bdp_estimator_trace) ||
|
70
|
+
GRPC_TRACE_FLAG_ENABLED(grpc_keepalive_trace)) {
|
71
|
+
gpr_log(GPR_INFO, "%s: Ping delayed [%s]: too many recent pings: %d/%d",
|
65
72
|
t->is_client ? "CLIENT" : "SERVER", t->peer_string,
|
66
73
|
t->ping_state.pings_before_data_required,
|
67
74
|
t->ping_policy.max_pings_without_data);
|
@@ -74,15 +81,19 @@ static void maybe_initiate_ping(grpc_chttp2_transport* t) {
|
|
74
81
|
(t->keepalive_permit_without_calls == 0 &&
|
75
82
|
grpc_chttp2_stream_map_size(&t->stream_map) == 0)
|
76
83
|
? 7200 * GPR_MS_PER_SEC
|
77
|
-
: t->ping_policy.min_sent_ping_interval_without_data
|
84
|
+
: (t->ping_policy.min_sent_ping_interval_without_data +
|
85
|
+
GPR_MS_PER_SEC); /* A second is added to deal with network delays
|
86
|
+
and timing imprecision */
|
78
87
|
grpc_millis next_allowed_ping =
|
79
88
|
t->ping_state.last_ping_sent_time + next_allowed_ping_interval;
|
80
89
|
|
81
90
|
if (next_allowed_ping > now) {
|
82
91
|
/* not enough elapsed time between successive pings */
|
83
|
-
if (grpc_http_trace
|
92
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_http_trace) ||
|
93
|
+
GRPC_TRACE_FLAG_ENABLED(grpc_bdp_estimator_trace) ||
|
94
|
+
GRPC_TRACE_FLAG_ENABLED(grpc_keepalive_trace)) {
|
84
95
|
gpr_log(GPR_INFO,
|
85
|
-
"%s: Ping delayed [%
|
96
|
+
"%s: Ping delayed [%s]: not enough time elapsed since last ping. "
|
86
97
|
" Last ping %f: Next ping %f: Now %f",
|
87
98
|
t->is_client ? "CLIENT" : "SERVER", t->peer_string,
|
88
99
|
static_cast<double>(t->ping_state.last_ping_sent_time),
|
@@ -91,6 +102,9 @@ static void maybe_initiate_ping(grpc_chttp2_transport* t) {
|
|
91
102
|
if (!t->ping_state.is_delayed_ping_timer_set) {
|
92
103
|
t->ping_state.is_delayed_ping_timer_set = true;
|
93
104
|
GRPC_CHTTP2_REF_TRANSPORT(t, "retry_initiate_ping_locked");
|
105
|
+
GRPC_CLOSURE_INIT(&t->retry_initiate_ping_locked,
|
106
|
+
grpc_chttp2_retry_initiate_ping, t,
|
107
|
+
grpc_schedule_on_exec_ctx);
|
94
108
|
grpc_timer_init(&t->ping_state.delayed_ping_timer, next_allowed_ping,
|
95
109
|
&t->retry_initiate_ping_locked);
|
96
110
|
}
|
@@ -99,15 +113,18 @@ static void maybe_initiate_ping(grpc_chttp2_transport* t) {
|
|
99
113
|
|
100
114
|
pq->inflight_id = t->ping_ctr;
|
101
115
|
t->ping_ctr++;
|
102
|
-
|
116
|
+
grpc_core::ExecCtx::RunList(DEBUG_LOCATION,
|
117
|
+
&pq->lists[GRPC_CHTTP2_PCL_INITIATE]);
|
103
118
|
grpc_closure_list_move(&pq->lists[GRPC_CHTTP2_PCL_NEXT],
|
104
119
|
&pq->lists[GRPC_CHTTP2_PCL_INFLIGHT]);
|
105
120
|
grpc_slice_buffer_add(&t->outbuf,
|
106
121
|
grpc_chttp2_ping_create(false, pq->inflight_id));
|
107
122
|
GRPC_STATS_INC_HTTP2_PINGS_SENT();
|
108
123
|
t->ping_state.last_ping_sent_time = now;
|
109
|
-
if (grpc_http_trace
|
110
|
-
|
124
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_http_trace) ||
|
125
|
+
GRPC_TRACE_FLAG_ENABLED(grpc_bdp_estimator_trace) ||
|
126
|
+
GRPC_TRACE_FLAG_ENABLED(grpc_keepalive_trace)) {
|
127
|
+
gpr_log(GPR_INFO, "%s: Ping sent [%s]: %d/%d",
|
111
128
|
t->is_client ? "CLIENT" : "SERVER", t->peer_string,
|
112
129
|
t->ping_state.pings_before_data_required,
|
113
130
|
t->ping_policy.max_pings_without_data);
|
@@ -139,7 +156,7 @@ static bool update_list(grpc_chttp2_transport* t, grpc_chttp2_stream* s,
|
|
139
156
|
|
140
157
|
static void report_stall(grpc_chttp2_transport* t, grpc_chttp2_stream* s,
|
141
158
|
const char* staller) {
|
142
|
-
if (grpc_flowctl_trace
|
159
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_flowctl_trace)) {
|
143
160
|
gpr_log(
|
144
161
|
GPR_DEBUG,
|
145
162
|
"%s:%p stream %d moved to stalled list by %s. This is FULLY expected "
|
@@ -149,7 +166,11 @@ static void report_stall(grpc_chttp2_transport* t, grpc_chttp2_stream* s,
|
|
149
166
|
":flowed=%" PRId64 ":peer_initwin=%d:t_win=%" PRId64
|
150
167
|
":s_win=%d:s_delta=%" PRId64 "]",
|
151
168
|
t->peer_string, t, s->id, staller, s->flow_controlled_buffer.length,
|
152
|
-
s->
|
169
|
+
s->stream_compression_method ==
|
170
|
+
GRPC_STREAM_COMPRESSION_IDENTITY_COMPRESS
|
171
|
+
? 0
|
172
|
+
: s->compressed_data_buffer.length,
|
173
|
+
s->flow_controlled_bytes_flowed,
|
153
174
|
t->settings[GRPC_ACKED_SETTINGS]
|
154
175
|
[GRPC_CHTTP2_SETTINGS_INITIAL_WINDOW_SIZE],
|
155
176
|
t->flow_control->remote_window(),
|
@@ -162,17 +183,8 @@ static void report_stall(grpc_chttp2_transport* t, grpc_chttp2_stream* s,
|
|
162
183
|
}
|
163
184
|
}
|
164
185
|
|
165
|
-
static bool stream_ref_if_not_destroyed(gpr_refcount* r) {
|
166
|
-
gpr_atm count;
|
167
|
-
do {
|
168
|
-
count = gpr_atm_acq_load(&r->count);
|
169
|
-
if (count == 0) return false;
|
170
|
-
} while (!gpr_atm_rel_cas(&r->count, count, count + 1));
|
171
|
-
return true;
|
172
|
-
}
|
173
|
-
|
174
186
|
/* How many bytes would we like to put on the wire during a single syscall */
|
175
|
-
static uint32_t target_write_size(grpc_chttp2_transport* t) {
|
187
|
+
static uint32_t target_write_size(grpc_chttp2_transport* /*t*/) {
|
176
188
|
return 1024 * 1024;
|
177
189
|
}
|
178
190
|
|
@@ -218,6 +230,7 @@ class WriteContext {
|
|
218
230
|
void FlushQueuedBuffers() {
|
219
231
|
/* simple writes are queued to qbuf, and flushed here */
|
220
232
|
grpc_slice_buffer_move_into(&t_->qbuf, &t_->outbuf);
|
233
|
+
t_->num_pending_induced_frames = 0;
|
221
234
|
GPR_ASSERT(t_->qbuf.count == 0);
|
222
235
|
}
|
223
236
|
|
@@ -253,7 +266,7 @@ class WriteContext {
|
|
253
266
|
while (grpc_chttp2_list_pop_stalled_by_transport(t_, &s)) {
|
254
267
|
if (t_->closed_with_error == GRPC_ERROR_NONE &&
|
255
268
|
grpc_chttp2_list_add_writable_stream(t_, s)) {
|
256
|
-
if (!
|
269
|
+
if (!s->refcount->refs.RefIfNonZero()) {
|
257
270
|
grpc_chttp2_list_remove_writable_stream(t_, s);
|
258
271
|
}
|
259
272
|
}
|
@@ -333,7 +346,23 @@ class DataSendContext {
|
|
333
346
|
|
334
347
|
bool AnyOutgoing() const { return max_outgoing() > 0; }
|
335
348
|
|
349
|
+
void FlushUncompressedBytes() {
|
350
|
+
uint32_t send_bytes = static_cast<uint32_t> GPR_MIN(
|
351
|
+
max_outgoing(), s_->flow_controlled_buffer.length);
|
352
|
+
is_last_frame_ = send_bytes == s_->flow_controlled_buffer.length &&
|
353
|
+
s_->fetching_send_message == nullptr &&
|
354
|
+
s_->send_trailing_metadata != nullptr &&
|
355
|
+
grpc_metadata_batch_is_empty(s_->send_trailing_metadata);
|
356
|
+
grpc_chttp2_encode_data(s_->id, &s_->flow_controlled_buffer, send_bytes,
|
357
|
+
is_last_frame_, &s_->stats.outgoing, &t_->outbuf);
|
358
|
+
s_->flow_control->SentData(send_bytes);
|
359
|
+
s_->sending_bytes += send_bytes;
|
360
|
+
}
|
361
|
+
|
336
362
|
void FlushCompressedBytes() {
|
363
|
+
GPR_DEBUG_ASSERT(s_->stream_compression_method !=
|
364
|
+
GRPC_STREAM_COMPRESSION_IDENTITY_COMPRESS);
|
365
|
+
|
337
366
|
uint32_t send_bytes = static_cast<uint32_t> GPR_MIN(
|
338
367
|
max_outgoing(), s_->compressed_data_buffer.length);
|
339
368
|
bool is_last_data_frame =
|
@@ -368,6 +397,9 @@ class DataSendContext {
|
|
368
397
|
}
|
369
398
|
|
370
399
|
void CompressMoreBytes() {
|
400
|
+
GPR_DEBUG_ASSERT(s_->stream_compression_method !=
|
401
|
+
GRPC_STREAM_COMPRESSION_IDENTITY_COMPRESS);
|
402
|
+
|
371
403
|
if (s_->stream_compression_ctx == nullptr) {
|
372
404
|
s_->stream_compression_ctx =
|
373
405
|
grpc_stream_compression_context_create(s_->stream_compression_method);
|
@@ -425,7 +457,7 @@ class StreamWriteContext {
|
|
425
457
|
// https://github.com/grpc/proposal/blob/master/A6-client-retries.md#when-retries-are-valid
|
426
458
|
if (!t_->is_client && s_->fetching_send_message == nullptr &&
|
427
459
|
s_->flow_controlled_buffer.length == 0 &&
|
428
|
-
|
460
|
+
compressed_data_buffer_len() == 0 &&
|
429
461
|
s_->send_trailing_metadata != nullptr &&
|
430
462
|
is_default_initial_metadata(s_->send_initial_metadata)) {
|
431
463
|
ConvertInitialMetadataToTrailingMetadata();
|
@@ -454,6 +486,13 @@ class StreamWriteContext {
|
|
454
486
|
"send_initial_metadata_finished");
|
455
487
|
}
|
456
488
|
|
489
|
+
size_t compressed_data_buffer_len() {
|
490
|
+
return s_->stream_compression_method ==
|
491
|
+
GRPC_STREAM_COMPRESSION_IDENTITY_COMPRESS
|
492
|
+
? 0
|
493
|
+
: s_->compressed_data_buffer.length;
|
494
|
+
}
|
495
|
+
|
457
496
|
void FlushWindowUpdates() {
|
458
497
|
/* send any window updates */
|
459
498
|
const uint32_t stream_announce = s_->flow_control->MaybeSendUpdate();
|
@@ -470,7 +509,7 @@ class StreamWriteContext {
|
|
470
509
|
if (!s_->sent_initial_metadata) return;
|
471
510
|
|
472
511
|
if (s_->flow_controlled_buffer.length == 0 &&
|
473
|
-
|
512
|
+
compressed_data_buffer_len() == 0) {
|
474
513
|
return; // early out: nothing to do
|
475
514
|
}
|
476
515
|
|
@@ -487,13 +526,21 @@ class StreamWriteContext {
|
|
487
526
|
return; // early out: nothing to do
|
488
527
|
}
|
489
528
|
|
490
|
-
|
491
|
-
|
492
|
-
|
493
|
-
|
494
|
-
data_send_context.
|
495
|
-
}
|
496
|
-
|
529
|
+
if (s_->stream_compression_method ==
|
530
|
+
GRPC_STREAM_COMPRESSION_IDENTITY_COMPRESS) {
|
531
|
+
while (s_->flow_controlled_buffer.length > 0 &&
|
532
|
+
data_send_context.max_outgoing() > 0) {
|
533
|
+
data_send_context.FlushUncompressedBytes();
|
534
|
+
}
|
535
|
+
} else {
|
536
|
+
while ((s_->flow_controlled_buffer.length > 0 ||
|
537
|
+
s_->compressed_data_buffer.length > 0) &&
|
538
|
+
data_send_context.max_outgoing() > 0) {
|
539
|
+
if (s_->compressed_data_buffer.length > 0) {
|
540
|
+
data_send_context.FlushCompressedBytes();
|
541
|
+
} else {
|
542
|
+
data_send_context.CompressMoreBytes();
|
543
|
+
}
|
497
544
|
}
|
498
545
|
}
|
499
546
|
write_context_->ResetPingClock();
|
@@ -503,7 +550,7 @@ class StreamWriteContext {
|
|
503
550
|
data_send_context.CallCallbacks();
|
504
551
|
stream_became_writable_ = true;
|
505
552
|
if (s_->flow_controlled_buffer.length > 0 ||
|
506
|
-
|
553
|
+
compressed_data_buffer_len() > 0) {
|
507
554
|
GRPC_CHTTP2_STREAM_REF(s_, "chttp2_writing:fork");
|
508
555
|
grpc_chttp2_list_add_writable_stream(t_, s_);
|
509
556
|
}
|
@@ -516,7 +563,7 @@ class StreamWriteContext {
|
|
516
563
|
if (s_->send_trailing_metadata == nullptr) return;
|
517
564
|
if (s_->fetching_send_message != nullptr) return;
|
518
565
|
if (s_->flow_controlled_buffer.length != 0) return;
|
519
|
-
if (
|
566
|
+
if (compressed_data_buffer_len() != 0) return;
|
520
567
|
|
521
568
|
GRPC_CHTTP2_IF_TRACING(gpr_log(GPR_INFO, "sending trailing_metadata"));
|
522
569
|
if (grpc_metadata_batch_is_empty(s_->send_trailing_metadata)) {
|
@@ -569,6 +616,7 @@ class StreamWriteContext {
|
|
569
616
|
void SentLastFrame() {
|
570
617
|
s_->send_trailing_metadata = nullptr;
|
571
618
|
s_->sent_trailing_metadata = true;
|
619
|
+
s_->eos_sent = true;
|
572
620
|
|
573
621
|
if (!t_->is_client && !s_->read_closed) {
|
574
622
|
grpc_slice_buffer_add(
|
@@ -604,11 +652,18 @@ grpc_chttp2_begin_write_result grpc_chttp2_begin_write(
|
|
604
652
|
(according to available window sizes) and add to the output buffer */
|
605
653
|
while (grpc_chttp2_stream* s = ctx.NextStream()) {
|
606
654
|
StreamWriteContext stream_ctx(&ctx, s);
|
655
|
+
size_t orig_len = t->outbuf.length;
|
607
656
|
stream_ctx.FlushInitialMetadata();
|
608
657
|
stream_ctx.FlushWindowUpdates();
|
609
658
|
stream_ctx.FlushData();
|
610
659
|
stream_ctx.FlushTrailingMetadata();
|
611
|
-
|
660
|
+
if (t->outbuf.length > orig_len) {
|
661
|
+
/* Add this stream to the list of the contexts to be traced at TCP */
|
662
|
+
s->byte_counter += t->outbuf.length - orig_len;
|
663
|
+
if (s->traced && grpc_endpoint_can_track_err(t->ep)) {
|
664
|
+
grpc_core::ContextList::Append(&t->cl, s);
|
665
|
+
}
|
666
|
+
}
|
612
667
|
if (stream_ctx.stream_became_writable()) {
|
613
668
|
if (!grpc_chttp2_list_add_writing_stream(t, s)) {
|
614
669
|
/* already in writing list: drop ref */
|
@@ -632,6 +687,11 @@ void grpc_chttp2_end_write(grpc_chttp2_transport* t, grpc_error* error) {
|
|
632
687
|
GPR_TIMER_SCOPE("grpc_chttp2_end_write", 0);
|
633
688
|
grpc_chttp2_stream* s;
|
634
689
|
|
690
|
+
if (t->channelz_socket != nullptr) {
|
691
|
+
t->channelz_socket->RecordMessagesSent(t->num_messages_in_next_write);
|
692
|
+
}
|
693
|
+
t->num_messages_in_next_write = 0;
|
694
|
+
|
635
695
|
while (grpc_chttp2_list_pop_writing_stream(t, &s)) {
|
636
696
|
if (s->sending_bytes != 0) {
|
637
697
|
update_list(t, s, static_cast<int64_t>(s->sending_bytes),
|
@@ -35,153 +35,253 @@
|
|
35
35
|
#include "src/core/lib/transport/error_utils.h"
|
36
36
|
#include "src/core/lib/transport/transport_impl.h"
|
37
37
|
|
38
|
-
#define INPROC_LOG(...)
|
39
|
-
do {
|
40
|
-
if (grpc_inproc_trace
|
38
|
+
#define INPROC_LOG(...) \
|
39
|
+
do { \
|
40
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_inproc_trace)) { \
|
41
|
+
gpr_log(__VA_ARGS__); \
|
42
|
+
} \
|
41
43
|
} while (0)
|
42
44
|
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
45
|
+
namespace {
|
46
|
+
grpc_slice g_empty_slice;
|
47
|
+
grpc_slice g_fake_path_key;
|
48
|
+
grpc_slice g_fake_path_value;
|
49
|
+
grpc_slice g_fake_auth_key;
|
50
|
+
grpc_slice g_fake_auth_value;
|
51
|
+
|
52
|
+
struct inproc_stream;
|
53
|
+
bool cancel_stream_locked(inproc_stream* s, grpc_error* error);
|
54
|
+
void maybe_process_ops_locked(inproc_stream* s, grpc_error* error);
|
55
|
+
void op_state_machine_locked(inproc_stream* s, grpc_error* error);
|
56
|
+
void log_metadata(const grpc_metadata_batch* md_batch, bool is_client,
|
57
|
+
bool is_initial);
|
58
|
+
grpc_error* fill_in_metadata(inproc_stream* s,
|
59
|
+
const grpc_metadata_batch* metadata,
|
60
|
+
uint32_t flags, grpc_metadata_batch* out_md,
|
61
|
+
uint32_t* outflags, bool* markfilled);
|
62
|
+
|
63
|
+
struct shared_mu {
|
64
|
+
shared_mu() {
|
65
|
+
// Share one lock between both sides since both sides get affected
|
66
|
+
gpr_mu_init(&mu);
|
67
|
+
gpr_ref_init(&refs, 2);
|
68
|
+
}
|
69
|
+
|
70
|
+
~shared_mu() { gpr_mu_destroy(&mu); }
|
48
71
|
|
49
|
-
typedef struct {
|
50
72
|
gpr_mu mu;
|
51
73
|
gpr_refcount refs;
|
52
|
-
}
|
74
|
+
};
|
75
|
+
|
76
|
+
struct inproc_transport {
|
77
|
+
inproc_transport(const grpc_transport_vtable* vtable, shared_mu* mu,
|
78
|
+
bool is_client)
|
79
|
+
: mu(mu),
|
80
|
+
is_client(is_client),
|
81
|
+
state_tracker(is_client ? "inproc_client" : "inproc_server",
|
82
|
+
GRPC_CHANNEL_READY) {
|
83
|
+
base.vtable = vtable;
|
84
|
+
// Start each side of transport with 2 refs since they each have a ref
|
85
|
+
// to the other
|
86
|
+
gpr_ref_init(&refs, 2);
|
87
|
+
}
|
88
|
+
|
89
|
+
~inproc_transport() {
|
90
|
+
if (gpr_unref(&mu->refs)) {
|
91
|
+
mu->~shared_mu();
|
92
|
+
gpr_free(mu);
|
93
|
+
}
|
94
|
+
}
|
95
|
+
|
96
|
+
void ref() {
|
97
|
+
INPROC_LOG(GPR_INFO, "ref_transport %p", this);
|
98
|
+
gpr_ref(&refs);
|
99
|
+
}
|
100
|
+
|
101
|
+
void unref() {
|
102
|
+
INPROC_LOG(GPR_INFO, "unref_transport %p", this);
|
103
|
+
if (!gpr_unref(&refs)) {
|
104
|
+
return;
|
105
|
+
}
|
106
|
+
INPROC_LOG(GPR_INFO, "really_destroy_transport %p", this);
|
107
|
+
this->~inproc_transport();
|
108
|
+
gpr_free(this);
|
109
|
+
}
|
53
110
|
|
54
|
-
typedef struct inproc_transport {
|
55
111
|
grpc_transport base;
|
56
112
|
shared_mu* mu;
|
57
113
|
gpr_refcount refs;
|
58
114
|
bool is_client;
|
59
|
-
|
115
|
+
grpc_core::ConnectivityStateTracker state_tracker;
|
60
116
|
void (*accept_stream_cb)(void* user_data, grpc_transport* transport,
|
61
117
|
const void* server_data);
|
62
118
|
void* accept_stream_data;
|
63
|
-
bool is_closed;
|
119
|
+
bool is_closed = false;
|
64
120
|
struct inproc_transport* other_side;
|
65
|
-
struct inproc_stream* stream_list;
|
66
|
-
}
|
121
|
+
struct inproc_stream* stream_list = nullptr;
|
122
|
+
};
|
123
|
+
|
124
|
+
struct inproc_stream {
|
125
|
+
inproc_stream(inproc_transport* t, grpc_stream_refcount* refcount,
|
126
|
+
const void* server_data, grpc_core::Arena* arena)
|
127
|
+
: t(t), refs(refcount), arena(arena) {
|
128
|
+
// Ref this stream right now for ctor and list.
|
129
|
+
ref("inproc_init_stream:init");
|
130
|
+
ref("inproc_init_stream:list");
|
131
|
+
|
132
|
+
grpc_metadata_batch_init(&to_read_initial_md);
|
133
|
+
grpc_metadata_batch_init(&to_read_trailing_md);
|
134
|
+
grpc_metadata_batch_init(&write_buffer_initial_md);
|
135
|
+
grpc_metadata_batch_init(&write_buffer_trailing_md);
|
136
|
+
|
137
|
+
stream_list_prev = nullptr;
|
138
|
+
gpr_mu_lock(&t->mu->mu);
|
139
|
+
stream_list_next = t->stream_list;
|
140
|
+
if (t->stream_list) {
|
141
|
+
t->stream_list->stream_list_prev = this;
|
142
|
+
}
|
143
|
+
t->stream_list = this;
|
144
|
+
gpr_mu_unlock(&t->mu->mu);
|
145
|
+
|
146
|
+
if (!server_data) {
|
147
|
+
t->ref();
|
148
|
+
inproc_transport* st = t->other_side;
|
149
|
+
st->ref();
|
150
|
+
other_side = nullptr; // will get filled in soon
|
151
|
+
// Pass the client-side stream address to the server-side for a ref
|
152
|
+
ref("inproc_init_stream:clt"); // ref it now on behalf of server
|
153
|
+
// side to avoid destruction
|
154
|
+
INPROC_LOG(GPR_INFO, "calling accept stream cb %p %p",
|
155
|
+
st->accept_stream_cb, st->accept_stream_data);
|
156
|
+
(*st->accept_stream_cb)(st->accept_stream_data, &st->base, (void*)this);
|
157
|
+
} else {
|
158
|
+
// This is the server-side and is being called through accept_stream_cb
|
159
|
+
inproc_stream* cs = (inproc_stream*)server_data;
|
160
|
+
other_side = cs;
|
161
|
+
// Ref the server-side stream on behalf of the client now
|
162
|
+
ref("inproc_init_stream:srv");
|
163
|
+
|
164
|
+
// Now we are about to affect the other side, so lock the transport
|
165
|
+
// to make sure that it doesn't get destroyed
|
166
|
+
gpr_mu_lock(&t->mu->mu);
|
167
|
+
cs->other_side = this;
|
168
|
+
// Now transfer from the other side's write_buffer if any to the to_read
|
169
|
+
// buffer
|
170
|
+
if (cs->write_buffer_initial_md_filled) {
|
171
|
+
fill_in_metadata(this, &cs->write_buffer_initial_md,
|
172
|
+
cs->write_buffer_initial_md_flags, &to_read_initial_md,
|
173
|
+
&to_read_initial_md_flags, &to_read_initial_md_filled);
|
174
|
+
deadline = GPR_MIN(deadline, cs->write_buffer_deadline);
|
175
|
+
grpc_metadata_batch_clear(&cs->write_buffer_initial_md);
|
176
|
+
cs->write_buffer_initial_md_filled = false;
|
177
|
+
}
|
178
|
+
if (cs->write_buffer_trailing_md_filled) {
|
179
|
+
fill_in_metadata(this, &cs->write_buffer_trailing_md, 0,
|
180
|
+
&to_read_trailing_md, nullptr,
|
181
|
+
&to_read_trailing_md_filled);
|
182
|
+
grpc_metadata_batch_clear(&cs->write_buffer_trailing_md);
|
183
|
+
cs->write_buffer_trailing_md_filled = false;
|
184
|
+
}
|
185
|
+
if (cs->write_buffer_cancel_error != GRPC_ERROR_NONE) {
|
186
|
+
cancel_other_error = cs->write_buffer_cancel_error;
|
187
|
+
cs->write_buffer_cancel_error = GRPC_ERROR_NONE;
|
188
|
+
maybe_process_ops_locked(this, cancel_other_error);
|
189
|
+
}
|
190
|
+
|
191
|
+
gpr_mu_unlock(&t->mu->mu);
|
192
|
+
}
|
193
|
+
}
|
194
|
+
|
195
|
+
~inproc_stream() {
|
196
|
+
GRPC_ERROR_UNREF(write_buffer_cancel_error);
|
197
|
+
GRPC_ERROR_UNREF(cancel_self_error);
|
198
|
+
GRPC_ERROR_UNREF(cancel_other_error);
|
199
|
+
|
200
|
+
if (recv_inited) {
|
201
|
+
grpc_slice_buffer_destroy_internal(&recv_message);
|
202
|
+
}
|
203
|
+
|
204
|
+
t->unref();
|
205
|
+
|
206
|
+
if (closure_at_destroy) {
|
207
|
+
grpc_core::ExecCtx::Run(DEBUG_LOCATION, closure_at_destroy,
|
208
|
+
GRPC_ERROR_NONE);
|
209
|
+
}
|
210
|
+
}
|
211
|
+
|
212
|
+
#ifndef NDEBUG
|
213
|
+
#define STREAM_REF(refs, reason) grpc_stream_ref(refs, reason)
|
214
|
+
#define STREAM_UNREF(refs, reason) grpc_stream_unref(refs, reason)
|
215
|
+
#else
|
216
|
+
#define STREAM_REF(refs, reason) grpc_stream_ref(refs)
|
217
|
+
#define STREAM_UNREF(refs, reason) grpc_stream_unref(refs)
|
218
|
+
#endif
|
219
|
+
void ref(const char* reason) {
|
220
|
+
INPROC_LOG(GPR_INFO, "ref_stream %p %s", this, reason);
|
221
|
+
STREAM_REF(refs, reason);
|
222
|
+
}
|
223
|
+
|
224
|
+
void unref(const char* reason) {
|
225
|
+
INPROC_LOG(GPR_INFO, "unref_stream %p %s", this, reason);
|
226
|
+
STREAM_UNREF(refs, reason);
|
227
|
+
}
|
228
|
+
#undef STREAM_REF
|
229
|
+
#undef STREAM_UNREF
|
67
230
|
|
68
|
-
typedef struct inproc_stream {
|
69
231
|
inproc_transport* t;
|
70
232
|
grpc_metadata_batch to_read_initial_md;
|
71
|
-
uint32_t to_read_initial_md_flags;
|
72
|
-
bool to_read_initial_md_filled;
|
233
|
+
uint32_t to_read_initial_md_flags = 0;
|
234
|
+
bool to_read_initial_md_filled = false;
|
73
235
|
grpc_metadata_batch to_read_trailing_md;
|
74
|
-
bool to_read_trailing_md_filled;
|
75
|
-
bool ops_needed;
|
76
|
-
bool op_closure_scheduled;
|
77
|
-
grpc_closure op_closure;
|
236
|
+
bool to_read_trailing_md_filled = false;
|
237
|
+
bool ops_needed = false;
|
78
238
|
// Write buffer used only during gap at init time when client-side
|
79
239
|
// stream is set up but server side stream is not yet set up
|
80
240
|
grpc_metadata_batch write_buffer_initial_md;
|
81
|
-
bool write_buffer_initial_md_filled;
|
82
|
-
uint32_t write_buffer_initial_md_flags;
|
83
|
-
grpc_millis write_buffer_deadline;
|
241
|
+
bool write_buffer_initial_md_filled = false;
|
242
|
+
uint32_t write_buffer_initial_md_flags = 0;
|
243
|
+
grpc_millis write_buffer_deadline = GRPC_MILLIS_INF_FUTURE;
|
84
244
|
grpc_metadata_batch write_buffer_trailing_md;
|
85
|
-
bool write_buffer_trailing_md_filled;
|
86
|
-
grpc_error* write_buffer_cancel_error;
|
245
|
+
bool write_buffer_trailing_md_filled = false;
|
246
|
+
grpc_error* write_buffer_cancel_error = GRPC_ERROR_NONE;
|
87
247
|
|
88
248
|
struct inproc_stream* other_side;
|
89
|
-
bool other_side_closed; // won't talk anymore
|
90
|
-
bool write_buffer_other_side_closed; // on hold
|
249
|
+
bool other_side_closed = false; // won't talk anymore
|
250
|
+
bool write_buffer_other_side_closed = false; // on hold
|
91
251
|
grpc_stream_refcount* refs;
|
92
|
-
grpc_closure* closure_at_destroy;
|
252
|
+
grpc_closure* closure_at_destroy = nullptr;
|
93
253
|
|
94
|
-
|
254
|
+
grpc_core::Arena* arena;
|
95
255
|
|
96
|
-
grpc_transport_stream_op_batch* send_message_op;
|
97
|
-
grpc_transport_stream_op_batch* send_trailing_md_op;
|
98
|
-
grpc_transport_stream_op_batch* recv_initial_md_op;
|
99
|
-
grpc_transport_stream_op_batch* recv_message_op;
|
100
|
-
grpc_transport_stream_op_batch* recv_trailing_md_op;
|
256
|
+
grpc_transport_stream_op_batch* send_message_op = nullptr;
|
257
|
+
grpc_transport_stream_op_batch* send_trailing_md_op = nullptr;
|
258
|
+
grpc_transport_stream_op_batch* recv_initial_md_op = nullptr;
|
259
|
+
grpc_transport_stream_op_batch* recv_message_op = nullptr;
|
260
|
+
grpc_transport_stream_op_batch* recv_trailing_md_op = nullptr;
|
101
261
|
|
102
262
|
grpc_slice_buffer recv_message;
|
103
263
|
grpc_core::ManualConstructor<grpc_core::SliceBufferByteStream> recv_stream;
|
104
|
-
bool recv_inited;
|
264
|
+
bool recv_inited = false;
|
105
265
|
|
106
|
-
bool initial_md_sent;
|
107
|
-
bool trailing_md_sent;
|
108
|
-
bool initial_md_recvd;
|
109
|
-
bool trailing_md_recvd;
|
266
|
+
bool initial_md_sent = false;
|
267
|
+
bool trailing_md_sent = false;
|
268
|
+
bool initial_md_recvd = false;
|
269
|
+
bool trailing_md_recvd = false;
|
110
270
|
|
111
|
-
bool closed;
|
271
|
+
bool closed = false;
|
112
272
|
|
113
|
-
grpc_error* cancel_self_error;
|
114
|
-
grpc_error* cancel_other_error;
|
273
|
+
grpc_error* cancel_self_error = GRPC_ERROR_NONE;
|
274
|
+
grpc_error* cancel_other_error = GRPC_ERROR_NONE;
|
115
275
|
|
116
|
-
grpc_millis deadline;
|
276
|
+
grpc_millis deadline = GRPC_MILLIS_INF_FUTURE;
|
117
277
|
|
118
|
-
bool listed;
|
278
|
+
bool listed = true;
|
119
279
|
struct inproc_stream* stream_list_prev;
|
120
280
|
struct inproc_stream* stream_list_next;
|
121
|
-
}
|
122
|
-
|
123
|
-
static bool cancel_stream_locked(inproc_stream* s, grpc_error* error);
|
124
|
-
static void op_state_machine(void* arg, grpc_error* error);
|
125
|
-
|
126
|
-
static void ref_transport(inproc_transport* t) {
|
127
|
-
INPROC_LOG(GPR_INFO, "ref_transport %p", t);
|
128
|
-
gpr_ref(&t->refs);
|
129
|
-
}
|
130
|
-
|
131
|
-
static void really_destroy_transport(inproc_transport* t) {
|
132
|
-
INPROC_LOG(GPR_INFO, "really_destroy_transport %p", t);
|
133
|
-
grpc_connectivity_state_destroy(&t->connectivity);
|
134
|
-
if (gpr_unref(&t->mu->refs)) {
|
135
|
-
gpr_free(t->mu);
|
136
|
-
}
|
137
|
-
gpr_free(t);
|
138
|
-
}
|
139
|
-
|
140
|
-
static void unref_transport(inproc_transport* t) {
|
141
|
-
INPROC_LOG(GPR_INFO, "unref_transport %p", t);
|
142
|
-
if (gpr_unref(&t->refs)) {
|
143
|
-
really_destroy_transport(t);
|
144
|
-
}
|
145
|
-
}
|
146
|
-
|
147
|
-
#ifndef NDEBUG
|
148
|
-
#define STREAM_REF(refs, reason) grpc_stream_ref(refs, reason)
|
149
|
-
#define STREAM_UNREF(refs, reason) grpc_stream_unref(refs, reason)
|
150
|
-
#else
|
151
|
-
#define STREAM_REF(refs, reason) grpc_stream_ref(refs)
|
152
|
-
#define STREAM_UNREF(refs, reason) grpc_stream_unref(refs)
|
153
|
-
#endif
|
154
|
-
|
155
|
-
static void ref_stream(inproc_stream* s, const char* reason) {
|
156
|
-
INPROC_LOG(GPR_INFO, "ref_stream %p %s", s, reason);
|
157
|
-
STREAM_REF(s->refs, reason);
|
158
|
-
}
|
159
|
-
|
160
|
-
static void unref_stream(inproc_stream* s, const char* reason) {
|
161
|
-
INPROC_LOG(GPR_INFO, "unref_stream %p %s", s, reason);
|
162
|
-
STREAM_UNREF(s->refs, reason);
|
163
|
-
}
|
164
|
-
|
165
|
-
static void really_destroy_stream(inproc_stream* s) {
|
166
|
-
INPROC_LOG(GPR_INFO, "really_destroy_stream %p", s);
|
167
|
-
|
168
|
-
GRPC_ERROR_UNREF(s->write_buffer_cancel_error);
|
169
|
-
GRPC_ERROR_UNREF(s->cancel_self_error);
|
170
|
-
GRPC_ERROR_UNREF(s->cancel_other_error);
|
171
|
-
|
172
|
-
if (s->recv_inited) {
|
173
|
-
grpc_slice_buffer_destroy_internal(&s->recv_message);
|
174
|
-
}
|
175
|
-
|
176
|
-
unref_transport(s->t);
|
177
|
-
|
178
|
-
if (s->closure_at_destroy) {
|
179
|
-
GRPC_CLOSURE_SCHED(s->closure_at_destroy, GRPC_ERROR_NONE);
|
180
|
-
}
|
181
|
-
}
|
281
|
+
};
|
182
282
|
|
183
|
-
|
184
|
-
|
283
|
+
void log_metadata(const grpc_metadata_batch* md_batch, bool is_client,
|
284
|
+
bool is_initial) {
|
185
285
|
for (grpc_linked_mdelem* md = md_batch->list.head; md != nullptr;
|
186
286
|
md = md->next) {
|
187
287
|
char* key = grpc_slice_to_c_string(GRPC_MDKEY(md->md));
|
@@ -193,11 +293,11 @@ static void log_metadata(const grpc_metadata_batch* md_batch, bool is_client,
|
|
193
293
|
}
|
194
294
|
}
|
195
295
|
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
if (grpc_inproc_trace
|
296
|
+
grpc_error* fill_in_metadata(inproc_stream* s,
|
297
|
+
const grpc_metadata_batch* metadata,
|
298
|
+
uint32_t flags, grpc_metadata_batch* out_md,
|
299
|
+
uint32_t* outflags, bool* markfilled) {
|
300
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_inproc_trace)) {
|
201
301
|
log_metadata(metadata, s->t->is_client, outflags != nullptr);
|
202
302
|
}
|
203
303
|
|
@@ -210,8 +310,8 @@ static grpc_error* fill_in_metadata(inproc_stream* s,
|
|
210
310
|
grpc_error* error = GRPC_ERROR_NONE;
|
211
311
|
for (grpc_linked_mdelem* elem = metadata->list.head;
|
212
312
|
(elem != nullptr) && (error == GRPC_ERROR_NONE); elem = elem->next) {
|
213
|
-
grpc_linked_mdelem* nelem =
|
214
|
-
|
313
|
+
grpc_linked_mdelem* nelem =
|
314
|
+
static_cast<grpc_linked_mdelem*>(s->arena->Alloc(sizeof(*nelem)));
|
215
315
|
nelem->md =
|
216
316
|
grpc_mdelem_from_slices(grpc_slice_intern(GRPC_MDKEY(elem->md)),
|
217
317
|
grpc_slice_intern(GRPC_MDVALUE(elem->md)));
|
@@ -221,109 +321,16 @@ static grpc_error* fill_in_metadata(inproc_stream* s,
|
|
221
321
|
return error;
|
222
322
|
}
|
223
323
|
|
224
|
-
|
225
|
-
|
226
|
-
|
324
|
+
int init_stream(grpc_transport* gt, grpc_stream* gs,
|
325
|
+
grpc_stream_refcount* refcount, const void* server_data,
|
326
|
+
grpc_core::Arena* arena) {
|
227
327
|
INPROC_LOG(GPR_INFO, "init_stream %p %p %p", gt, gs, server_data);
|
228
328
|
inproc_transport* t = reinterpret_cast<inproc_transport*>(gt);
|
229
|
-
inproc_stream
|
230
|
-
s->arena = arena;
|
231
|
-
|
232
|
-
s->refs = refcount;
|
233
|
-
// Ref this stream right now
|
234
|
-
ref_stream(s, "inproc_init_stream:init");
|
235
|
-
|
236
|
-
grpc_metadata_batch_init(&s->to_read_initial_md);
|
237
|
-
s->to_read_initial_md_flags = 0;
|
238
|
-
s->to_read_initial_md_filled = false;
|
239
|
-
grpc_metadata_batch_init(&s->to_read_trailing_md);
|
240
|
-
s->to_read_trailing_md_filled = false;
|
241
|
-
grpc_metadata_batch_init(&s->write_buffer_initial_md);
|
242
|
-
s->write_buffer_initial_md_flags = 0;
|
243
|
-
s->write_buffer_initial_md_filled = false;
|
244
|
-
grpc_metadata_batch_init(&s->write_buffer_trailing_md);
|
245
|
-
s->write_buffer_trailing_md_filled = false;
|
246
|
-
s->ops_needed = false;
|
247
|
-
s->op_closure_scheduled = false;
|
248
|
-
GRPC_CLOSURE_INIT(&s->op_closure, op_state_machine, s,
|
249
|
-
grpc_schedule_on_exec_ctx);
|
250
|
-
s->t = t;
|
251
|
-
s->closure_at_destroy = nullptr;
|
252
|
-
s->other_side_closed = false;
|
253
|
-
|
254
|
-
s->initial_md_sent = s->trailing_md_sent = s->initial_md_recvd =
|
255
|
-
s->trailing_md_recvd = false;
|
256
|
-
|
257
|
-
s->closed = false;
|
258
|
-
|
259
|
-
s->cancel_self_error = GRPC_ERROR_NONE;
|
260
|
-
s->cancel_other_error = GRPC_ERROR_NONE;
|
261
|
-
s->write_buffer_cancel_error = GRPC_ERROR_NONE;
|
262
|
-
s->deadline = GRPC_MILLIS_INF_FUTURE;
|
263
|
-
s->write_buffer_deadline = GRPC_MILLIS_INF_FUTURE;
|
264
|
-
|
265
|
-
s->stream_list_prev = nullptr;
|
266
|
-
gpr_mu_lock(&t->mu->mu);
|
267
|
-
s->listed = true;
|
268
|
-
ref_stream(s, "inproc_init_stream:list");
|
269
|
-
s->stream_list_next = t->stream_list;
|
270
|
-
if (t->stream_list) {
|
271
|
-
t->stream_list->stream_list_prev = s;
|
272
|
-
}
|
273
|
-
t->stream_list = s;
|
274
|
-
gpr_mu_unlock(&t->mu->mu);
|
275
|
-
|
276
|
-
if (!server_data) {
|
277
|
-
ref_transport(t);
|
278
|
-
inproc_transport* st = t->other_side;
|
279
|
-
ref_transport(st);
|
280
|
-
s->other_side = nullptr; // will get filled in soon
|
281
|
-
// Pass the client-side stream address to the server-side for a ref
|
282
|
-
ref_stream(s, "inproc_init_stream:clt"); // ref it now on behalf of server
|
283
|
-
// side to avoid destruction
|
284
|
-
INPROC_LOG(GPR_INFO, "calling accept stream cb %p %p", st->accept_stream_cb,
|
285
|
-
st->accept_stream_data);
|
286
|
-
(*st->accept_stream_cb)(st->accept_stream_data, &st->base, (void*)s);
|
287
|
-
} else {
|
288
|
-
// This is the server-side and is being called through accept_stream_cb
|
289
|
-
inproc_stream* cs = (inproc_stream*)server_data;
|
290
|
-
s->other_side = cs;
|
291
|
-
// Ref the server-side stream on behalf of the client now
|
292
|
-
ref_stream(s, "inproc_init_stream:srv");
|
293
|
-
|
294
|
-
// Now we are about to affect the other side, so lock the transport
|
295
|
-
// to make sure that it doesn't get destroyed
|
296
|
-
gpr_mu_lock(&s->t->mu->mu);
|
297
|
-
cs->other_side = s;
|
298
|
-
// Now transfer from the other side's write_buffer if any to the to_read
|
299
|
-
// buffer
|
300
|
-
if (cs->write_buffer_initial_md_filled) {
|
301
|
-
fill_in_metadata(s, &cs->write_buffer_initial_md,
|
302
|
-
cs->write_buffer_initial_md_flags,
|
303
|
-
&s->to_read_initial_md, &s->to_read_initial_md_flags,
|
304
|
-
&s->to_read_initial_md_filled);
|
305
|
-
s->deadline = GPR_MIN(s->deadline, cs->write_buffer_deadline);
|
306
|
-
grpc_metadata_batch_clear(&cs->write_buffer_initial_md);
|
307
|
-
cs->write_buffer_initial_md_filled = false;
|
308
|
-
}
|
309
|
-
if (cs->write_buffer_trailing_md_filled) {
|
310
|
-
fill_in_metadata(s, &cs->write_buffer_trailing_md, 0,
|
311
|
-
&s->to_read_trailing_md, nullptr,
|
312
|
-
&s->to_read_trailing_md_filled);
|
313
|
-
grpc_metadata_batch_clear(&cs->write_buffer_trailing_md);
|
314
|
-
cs->write_buffer_trailing_md_filled = false;
|
315
|
-
}
|
316
|
-
if (cs->write_buffer_cancel_error != GRPC_ERROR_NONE) {
|
317
|
-
s->cancel_other_error = cs->write_buffer_cancel_error;
|
318
|
-
cs->write_buffer_cancel_error = GRPC_ERROR_NONE;
|
319
|
-
}
|
320
|
-
|
321
|
-
gpr_mu_unlock(&s->t->mu->mu);
|
322
|
-
}
|
329
|
+
new (gs) inproc_stream(t, refcount, server_data, arena);
|
323
330
|
return 0; // return value is not important
|
324
331
|
}
|
325
332
|
|
326
|
-
|
333
|
+
void close_stream_locked(inproc_stream* s) {
|
327
334
|
if (!s->closed) {
|
328
335
|
// Release the metadata that we would have written out
|
329
336
|
grpc_metadata_batch_destroy(&s->write_buffer_initial_md);
|
@@ -341,21 +348,21 @@ static void close_stream_locked(inproc_stream* s) {
|
|
341
348
|
n->stream_list_prev = p;
|
342
349
|
}
|
343
350
|
s->listed = false;
|
344
|
-
|
351
|
+
s->unref("close_stream:list");
|
345
352
|
}
|
346
353
|
s->closed = true;
|
347
|
-
|
354
|
+
s->unref("close_stream:closing");
|
348
355
|
}
|
349
356
|
}
|
350
357
|
|
351
358
|
// This function means that we are done talking/listening to the other side
|
352
|
-
|
359
|
+
void close_other_side_locked(inproc_stream* s, const char* reason) {
|
353
360
|
if (s->other_side != nullptr) {
|
354
361
|
// First release the metadata that came from the other side's arena
|
355
362
|
grpc_metadata_batch_destroy(&s->to_read_initial_md);
|
356
363
|
grpc_metadata_batch_destroy(&s->to_read_trailing_md);
|
357
364
|
|
358
|
-
|
365
|
+
s->other_side->unref(reason);
|
359
366
|
s->other_side_closed = true;
|
360
367
|
s->other_side = nullptr;
|
361
368
|
} else if (!s->other_side_closed) {
|
@@ -367,9 +374,9 @@ static void close_other_side_locked(inproc_stream* s, const char* reason) {
|
|
367
374
|
// this stream_op_batch is only one of the pending operations for this
|
368
375
|
// stream. This is called when one of the pending operations for the stream
|
369
376
|
// is done and about to be NULLed out
|
370
|
-
|
371
|
-
|
372
|
-
|
377
|
+
void complete_if_batch_end_locked(inproc_stream* s, grpc_error* error,
|
378
|
+
grpc_transport_stream_op_batch* op,
|
379
|
+
const char* msg) {
|
373
380
|
int is_sm = static_cast<int>(op == s->send_message_op);
|
374
381
|
int is_stm = static_cast<int>(op == s->send_trailing_md_op);
|
375
382
|
// TODO(vjpai): We should not consider the recv ops here, since they
|
@@ -382,20 +389,19 @@ static void complete_if_batch_end_locked(inproc_stream* s, grpc_error* error,
|
|
382
389
|
|
383
390
|
if ((is_sm + is_stm + is_rim + is_rm + is_rtm) == 1) {
|
384
391
|
INPROC_LOG(GPR_INFO, "%s %p %p %p", msg, s, op, error);
|
385
|
-
|
392
|
+
grpc_core::ExecCtx::Run(DEBUG_LOCATION, op->on_complete,
|
393
|
+
GRPC_ERROR_REF(error));
|
386
394
|
}
|
387
395
|
}
|
388
396
|
|
389
|
-
|
390
|
-
|
391
|
-
if (s && s->ops_needed && !s->op_closure_scheduled) {
|
392
|
-
GRPC_CLOSURE_SCHED(&s->op_closure, GRPC_ERROR_REF(error));
|
393
|
-
s->op_closure_scheduled = true;
|
397
|
+
void maybe_process_ops_locked(inproc_stream* s, grpc_error* error) {
|
398
|
+
if (s && (error != GRPC_ERROR_NONE || s->ops_needed)) {
|
394
399
|
s->ops_needed = false;
|
400
|
+
op_state_machine_locked(s, error);
|
395
401
|
}
|
396
402
|
}
|
397
403
|
|
398
|
-
|
404
|
+
void fail_helper_locked(inproc_stream* s, grpc_error* error) {
|
399
405
|
INPROC_LOG(GPR_INFO, "op_state_machine %p fail_helper", s);
|
400
406
|
// If we're failing this side, we need to make sure that
|
401
407
|
// we also send or have already sent trailing metadata
|
@@ -419,7 +425,7 @@ static void fail_helper_locked(inproc_stream* s, grpc_error* error) {
|
|
419
425
|
if (other->cancel_other_error == GRPC_ERROR_NONE) {
|
420
426
|
other->cancel_other_error = GRPC_ERROR_REF(error);
|
421
427
|
}
|
422
|
-
|
428
|
+
maybe_process_ops_locked(other, error);
|
423
429
|
} else if (s->write_buffer_cancel_error == GRPC_ERROR_NONE) {
|
424
430
|
s->write_buffer_cancel_error = GRPC_ERROR_REF(error);
|
425
431
|
}
|
@@ -431,13 +437,13 @@ static void fail_helper_locked(inproc_stream* s, grpc_error* error) {
|
|
431
437
|
// since it expects that as well as no error yet
|
432
438
|
grpc_metadata_batch fake_md;
|
433
439
|
grpc_metadata_batch_init(&fake_md);
|
434
|
-
grpc_linked_mdelem* path_md =
|
435
|
-
|
440
|
+
grpc_linked_mdelem* path_md =
|
441
|
+
static_cast<grpc_linked_mdelem*>(s->arena->Alloc(sizeof(*path_md)));
|
436
442
|
path_md->md = grpc_mdelem_from_slices(g_fake_path_key, g_fake_path_value);
|
437
443
|
GPR_ASSERT(grpc_metadata_batch_link_tail(&fake_md, path_md) ==
|
438
444
|
GRPC_ERROR_NONE);
|
439
|
-
grpc_linked_mdelem* auth_md =
|
440
|
-
|
445
|
+
grpc_linked_mdelem* auth_md =
|
446
|
+
static_cast<grpc_linked_mdelem*>(s->arena->Alloc(sizeof(*auth_md)));
|
441
447
|
auth_md->md = grpc_mdelem_from_slices(g_fake_auth_key, g_fake_auth_value);
|
442
448
|
GPR_ASSERT(grpc_metadata_batch_link_tail(&fake_md, auth_md) ==
|
443
449
|
GRPC_ERROR_NONE);
|
@@ -464,9 +470,11 @@ static void fail_helper_locked(inproc_stream* s, grpc_error* error) {
|
|
464
470
|
INPROC_LOG(GPR_INFO,
|
465
471
|
"fail_helper %p scheduling initial-metadata-ready %p %p", s,
|
466
472
|
error, err);
|
467
|
-
|
468
|
-
|
469
|
-
|
473
|
+
grpc_core::ExecCtx::Run(
|
474
|
+
DEBUG_LOCATION,
|
475
|
+
s->recv_initial_md_op->payload->recv_initial_metadata
|
476
|
+
.recv_initial_metadata_ready,
|
477
|
+
err);
|
470
478
|
// Last use of err so no need to REF and then UNREF it
|
471
479
|
|
472
480
|
complete_if_batch_end_locked(
|
@@ -477,7 +485,8 @@ static void fail_helper_locked(inproc_stream* s, grpc_error* error) {
|
|
477
485
|
if (s->recv_message_op) {
|
478
486
|
INPROC_LOG(GPR_INFO, "fail_helper %p scheduling message-ready %p", s,
|
479
487
|
error);
|
480
|
-
|
488
|
+
grpc_core::ExecCtx::Run(
|
489
|
+
DEBUG_LOCATION,
|
481
490
|
s->recv_message_op->payload->recv_message.recv_message_ready,
|
482
491
|
GRPC_ERROR_REF(error));
|
483
492
|
complete_if_batch_end_locked(
|
@@ -501,9 +510,11 @@ static void fail_helper_locked(inproc_stream* s, grpc_error* error) {
|
|
501
510
|
if (s->recv_trailing_md_op) {
|
502
511
|
INPROC_LOG(GPR_INFO, "fail_helper %p scheduling trailing-metadata-ready %p",
|
503
512
|
s, error);
|
504
|
-
|
505
|
-
|
506
|
-
|
513
|
+
grpc_core::ExecCtx::Run(
|
514
|
+
DEBUG_LOCATION,
|
515
|
+
s->recv_trailing_md_op->payload->recv_trailing_metadata
|
516
|
+
.recv_trailing_metadata_ready,
|
517
|
+
GRPC_ERROR_REF(error));
|
507
518
|
INPROC_LOG(GPR_INFO, "fail_helper %p scheduling trailing-md-on-complete %p",
|
508
519
|
s, error);
|
509
520
|
complete_if_batch_end_locked(
|
@@ -525,8 +536,7 @@ static void fail_helper_locked(inproc_stream* s, grpc_error* error) {
|
|
525
536
|
// that the incoming byte stream's next() call will always return
|
526
537
|
// synchronously. That assumption is true today but may not always be
|
527
538
|
// true in the future.
|
528
|
-
|
529
|
-
inproc_stream* receiver) {
|
539
|
+
void message_transfer_locked(inproc_stream* sender, inproc_stream* receiver) {
|
530
540
|
size_t remaining =
|
531
541
|
sender->send_message_op->payload->send_message.send_message->length();
|
532
542
|
if (receiver->recv_inited) {
|
@@ -558,7 +568,8 @@ static void message_transfer_locked(inproc_stream* sender,
|
|
558
568
|
receiver->recv_stream.get());
|
559
569
|
INPROC_LOG(GPR_INFO, "message_transfer_locked %p scheduling message-ready",
|
560
570
|
receiver);
|
561
|
-
|
571
|
+
grpc_core::ExecCtx::Run(
|
572
|
+
DEBUG_LOCATION,
|
562
573
|
receiver->recv_message_op->payload->recv_message.recv_message_ready,
|
563
574
|
GRPC_ERROR_NONE);
|
564
575
|
complete_if_batch_end_locked(
|
@@ -572,23 +583,17 @@ static void message_transfer_locked(inproc_stream* sender,
|
|
572
583
|
sender->send_message_op = nullptr;
|
573
584
|
}
|
574
585
|
|
575
|
-
|
586
|
+
void op_state_machine_locked(inproc_stream* s, grpc_error* error) {
|
576
587
|
// This function gets called when we have contents in the unprocessed reads
|
577
588
|
// Get what we want based on our ops wanted
|
578
589
|
// Schedule our appropriate closures
|
579
590
|
// and then return to ops_needed state if still needed
|
580
591
|
|
581
|
-
// Since this is a closure directly invoked by the combiner, it should not
|
582
|
-
// unref the error parameter explicitly; the combiner will do that implicitly
|
583
592
|
grpc_error* new_err = GRPC_ERROR_NONE;
|
584
593
|
|
585
594
|
bool needs_close = false;
|
586
595
|
|
587
|
-
INPROC_LOG(GPR_INFO, "op_state_machine %p",
|
588
|
-
inproc_stream* s = static_cast<inproc_stream*>(arg);
|
589
|
-
gpr_mu* mu = &s->t->mu->mu; // keep aside in case s gets closed
|
590
|
-
gpr_mu_lock(mu);
|
591
|
-
s->op_closure_scheduled = false;
|
596
|
+
INPROC_LOG(GPR_INFO, "op_state_machine %p", s);
|
592
597
|
// cancellation takes precedence
|
593
598
|
inproc_stream* other = s->other_side;
|
594
599
|
|
@@ -606,11 +611,9 @@ static void op_state_machine(void* arg, grpc_error* error) {
|
|
606
611
|
if (s->send_message_op && other) {
|
607
612
|
if (other->recv_message_op) {
|
608
613
|
message_transfer_locked(s, other);
|
609
|
-
|
610
|
-
} else if (!s->t->is_client &&
|
611
|
-
|
612
|
-
// A server send will never be matched if the client is waiting
|
613
|
-
// for trailing metadata already
|
614
|
+
maybe_process_ops_locked(other, GRPC_ERROR_NONE);
|
615
|
+
} else if (!s->t->is_client && s->trailing_md_sent) {
|
616
|
+
// A server send will never be matched if the server already sent status
|
614
617
|
s->send_message_op->payload->send_message.send_message.reset();
|
615
618
|
complete_if_batch_end_locked(
|
616
619
|
s, GRPC_ERROR_NONE, s->send_message_op,
|
@@ -621,11 +624,15 @@ static void op_state_machine(void* arg, grpc_error* error) {
|
|
621
624
|
// Pause a send trailing metadata if there is still an outstanding
|
622
625
|
// send message unless we know that the send message will never get
|
623
626
|
// matched to a receive. This happens on the client if the server has
|
624
|
-
// already sent status
|
627
|
+
// already sent status or on the server if the client has requested
|
628
|
+
// status
|
625
629
|
if (s->send_trailing_md_op &&
|
626
630
|
(!s->send_message_op ||
|
627
631
|
(s->t->is_client &&
|
628
|
-
(s->trailing_md_recvd || s->to_read_trailing_md_filled))
|
632
|
+
(s->trailing_md_recvd || s->to_read_trailing_md_filled)) ||
|
633
|
+
(!s->t->is_client && other &&
|
634
|
+
(other->trailing_md_recvd || other->to_read_trailing_md_filled ||
|
635
|
+
other->recv_trailing_md_op)))) {
|
629
636
|
grpc_metadata_batch* dest = (other == nullptr)
|
630
637
|
? &s->write_buffer_trailing_md
|
631
638
|
: &other->to_read_trailing_md;
|
@@ -648,19 +655,21 @@ static void op_state_machine(void* arg, grpc_error* error) {
|
|
648
655
|
if (!s->t->is_client && s->trailing_md_recvd && s->recv_trailing_md_op) {
|
649
656
|
INPROC_LOG(GPR_INFO,
|
650
657
|
"op_state_machine %p scheduling trailing-metadata-ready", s);
|
651
|
-
|
658
|
+
grpc_core::ExecCtx::Run(
|
659
|
+
DEBUG_LOCATION,
|
652
660
|
s->recv_trailing_md_op->payload->recv_trailing_metadata
|
653
661
|
.recv_trailing_metadata_ready,
|
654
662
|
GRPC_ERROR_NONE);
|
655
663
|
INPROC_LOG(GPR_INFO,
|
656
664
|
"op_state_machine %p scheduling trailing-md-on-complete", s);
|
657
|
-
|
658
|
-
|
665
|
+
grpc_core::ExecCtx::Run(DEBUG_LOCATION,
|
666
|
+
s->recv_trailing_md_op->on_complete,
|
667
|
+
GRPC_ERROR_NONE);
|
659
668
|
s->recv_trailing_md_op = nullptr;
|
660
669
|
needs_close = true;
|
661
670
|
}
|
662
671
|
}
|
663
|
-
|
672
|
+
maybe_process_ops_locked(other, GRPC_ERROR_NONE);
|
664
673
|
complete_if_batch_end_locked(
|
665
674
|
s, GRPC_ERROR_NONE, s->send_trailing_md_op,
|
666
675
|
"op_state_machine scheduling send-trailing-metadata-on-complete");
|
@@ -700,9 +709,11 @@ static void op_state_machine(void* arg, grpc_error* error) {
|
|
700
709
|
INPROC_LOG(GPR_INFO,
|
701
710
|
"op_state_machine %p scheduling initial-metadata-ready %p", s,
|
702
711
|
new_err);
|
703
|
-
|
704
|
-
|
705
|
-
|
712
|
+
grpc_core::ExecCtx::Run(
|
713
|
+
DEBUG_LOCATION,
|
714
|
+
s->recv_initial_md_op->payload->recv_initial_metadata
|
715
|
+
.recv_initial_metadata_ready,
|
716
|
+
GRPC_ERROR_REF(new_err));
|
706
717
|
complete_if_batch_end_locked(
|
707
718
|
s, new_err, s->recv_initial_md_op,
|
708
719
|
"op_state_machine scheduling recv-initial-metadata-on-complete");
|
@@ -720,19 +731,9 @@ static void op_state_machine(void* arg, grpc_error* error) {
|
|
720
731
|
if (s->recv_message_op) {
|
721
732
|
if (other && other->send_message_op) {
|
722
733
|
message_transfer_locked(other, s);
|
723
|
-
|
734
|
+
maybe_process_ops_locked(other, GRPC_ERROR_NONE);
|
724
735
|
}
|
725
736
|
}
|
726
|
-
if (s->recv_trailing_md_op && s->t->is_client && other &&
|
727
|
-
other->send_message_op) {
|
728
|
-
INPROC_LOG(GPR_INFO,
|
729
|
-
"op_state_machine %p scheduling trailing-metadata-ready %p", s,
|
730
|
-
GRPC_ERROR_NONE);
|
731
|
-
GRPC_CLOSURE_SCHED(s->recv_trailing_md_op->payload->recv_trailing_metadata
|
732
|
-
.recv_trailing_metadata_ready,
|
733
|
-
GRPC_ERROR_NONE);
|
734
|
-
maybe_schedule_op_closure_locked(other, GRPC_ERROR_NONE);
|
735
|
-
}
|
736
737
|
if (s->to_read_trailing_md_filled) {
|
737
738
|
if (s->trailing_md_recvd) {
|
738
739
|
new_err =
|
@@ -748,8 +749,10 @@ static void op_state_machine(void* arg, grpc_error* error) {
|
|
748
749
|
if (s->recv_message_op != nullptr) {
|
749
750
|
// This message needs to be wrapped up because it will never be
|
750
751
|
// satisfied
|
752
|
+
*s->recv_message_op->payload->recv_message.recv_message = nullptr;
|
751
753
|
INPROC_LOG(GPR_INFO, "op_state_machine %p scheduling message-ready", s);
|
752
|
-
|
754
|
+
grpc_core::ExecCtx::Run(
|
755
|
+
DEBUG_LOCATION,
|
753
756
|
s->recv_message_op->payload->recv_message.recv_message_ready,
|
754
757
|
GRPC_ERROR_NONE);
|
755
758
|
complete_if_batch_end_locked(
|
@@ -761,6 +764,7 @@ static void op_state_machine(void* arg, grpc_error* error) {
|
|
761
764
|
// Nothing further will try to receive from this stream, so finish off
|
762
765
|
// any outstanding send_message op
|
763
766
|
s->send_message_op->payload->send_message.send_message.reset();
|
767
|
+
s->send_message_op->payload->send_message.stream_write_closed = true;
|
764
768
|
complete_if_batch_end_locked(
|
765
769
|
s, new_err, s->send_message_op,
|
766
770
|
"op_state_machine scheduling send-message-on-complete");
|
@@ -786,14 +790,16 @@ static void op_state_machine(void* arg, grpc_error* error) {
|
|
786
790
|
INPROC_LOG(GPR_INFO,
|
787
791
|
"op_state_machine %p scheduling trailing-md-on-complete %p",
|
788
792
|
s, new_err);
|
789
|
-
|
793
|
+
grpc_core::ExecCtx::Run(
|
794
|
+
DEBUG_LOCATION,
|
790
795
|
s->recv_trailing_md_op->payload->recv_trailing_metadata
|
791
796
|
.recv_trailing_metadata_ready,
|
792
797
|
GRPC_ERROR_REF(new_err));
|
793
|
-
|
794
|
-
|
798
|
+
grpc_core::ExecCtx::Run(DEBUG_LOCATION,
|
799
|
+
s->recv_trailing_md_op->on_complete,
|
800
|
+
GRPC_ERROR_REF(new_err));
|
795
801
|
s->recv_trailing_md_op = nullptr;
|
796
|
-
needs_close =
|
802
|
+
needs_close = s->trailing_md_sent;
|
797
803
|
} else {
|
798
804
|
INPROC_LOG(GPR_INFO,
|
799
805
|
"op_state_machine %p server needs to delay handling "
|
@@ -806,11 +812,31 @@ static void op_state_machine(void* arg, grpc_error* error) {
|
|
806
812
|
"op_state_machine %p has trailing md but not yet waiting for it", s);
|
807
813
|
}
|
808
814
|
}
|
815
|
+
if (!s->t->is_client && s->trailing_md_sent &&
|
816
|
+
(s->recv_trailing_md_op != nullptr)) {
|
817
|
+
// In this case, we don't care to receive the write-close from the client
|
818
|
+
// because we have already sent status and the RPC is over as far as we
|
819
|
+
// are concerned.
|
820
|
+
INPROC_LOG(GPR_INFO, "op_state_machine %p scheduling trailing-md-ready %p",
|
821
|
+
s, new_err);
|
822
|
+
grpc_core::ExecCtx::Run(
|
823
|
+
DEBUG_LOCATION,
|
824
|
+
s->recv_trailing_md_op->payload->recv_trailing_metadata
|
825
|
+
.recv_trailing_metadata_ready,
|
826
|
+
GRPC_ERROR_REF(new_err));
|
827
|
+
complete_if_batch_end_locked(
|
828
|
+
s, new_err, s->recv_trailing_md_op,
|
829
|
+
"op_state_machine scheduling recv-trailing-md-on-complete");
|
830
|
+
s->trailing_md_recvd = true;
|
831
|
+
s->recv_trailing_md_op = nullptr;
|
832
|
+
}
|
809
833
|
if (s->trailing_md_recvd && s->recv_message_op) {
|
810
834
|
// No further message will come on this stream, so finish off the
|
811
835
|
// recv_message_op
|
812
836
|
INPROC_LOG(GPR_INFO, "op_state_machine %p scheduling message-ready", s);
|
813
|
-
|
837
|
+
*s->recv_message_op->payload->recv_message.recv_message = nullptr;
|
838
|
+
grpc_core::ExecCtx::Run(
|
839
|
+
DEBUG_LOCATION,
|
814
840
|
s->recv_message_op->payload->recv_message.recv_message_ready,
|
815
841
|
GRPC_ERROR_NONE);
|
816
842
|
complete_if_batch_end_locked(
|
@@ -843,17 +869,18 @@ done:
|
|
843
869
|
close_other_side_locked(s, "op_state_machine");
|
844
870
|
close_stream_locked(s);
|
845
871
|
}
|
846
|
-
gpr_mu_unlock(mu);
|
847
872
|
GRPC_ERROR_UNREF(new_err);
|
848
873
|
}
|
849
874
|
|
850
|
-
|
875
|
+
bool cancel_stream_locked(inproc_stream* s, grpc_error* error) {
|
851
876
|
bool ret = false; // was the cancel accepted
|
852
877
|
INPROC_LOG(GPR_INFO, "cancel_stream %p with %s", s, grpc_error_string(error));
|
853
878
|
if (s->cancel_self_error == GRPC_ERROR_NONE) {
|
854
879
|
ret = true;
|
855
880
|
s->cancel_self_error = GRPC_ERROR_REF(error);
|
856
|
-
|
881
|
+
// Catch current value of other before it gets closed off
|
882
|
+
inproc_stream* other = s->other_side;
|
883
|
+
maybe_process_ops_locked(s, s->cancel_self_error);
|
857
884
|
// Send trailing md to the other side indicating cancellation, even if we
|
858
885
|
// already have
|
859
886
|
s->trailing_md_sent = true;
|
@@ -861,7 +888,6 @@ static bool cancel_stream_locked(inproc_stream* s, grpc_error* error) {
|
|
861
888
|
grpc_metadata_batch cancel_md;
|
862
889
|
grpc_metadata_batch_init(&cancel_md);
|
863
890
|
|
864
|
-
inproc_stream* other = s->other_side;
|
865
891
|
grpc_metadata_batch* dest = (other == nullptr)
|
866
892
|
? &s->write_buffer_trailing_md
|
867
893
|
: &other->to_read_trailing_md;
|
@@ -874,7 +900,7 @@ static bool cancel_stream_locked(inproc_stream* s, grpc_error* error) {
|
|
874
900
|
if (other->cancel_other_error == GRPC_ERROR_NONE) {
|
875
901
|
other->cancel_other_error = GRPC_ERROR_REF(s->cancel_self_error);
|
876
902
|
}
|
877
|
-
|
903
|
+
maybe_process_ops_locked(other, other->cancel_other_error);
|
878
904
|
} else if (s->write_buffer_cancel_error == GRPC_ERROR_NONE) {
|
879
905
|
s->write_buffer_cancel_error = GRPC_ERROR_REF(s->cancel_self_error);
|
880
906
|
}
|
@@ -883,9 +909,11 @@ static bool cancel_stream_locked(inproc_stream* s, grpc_error* error) {
|
|
883
909
|
// couldn't complete that because we hadn't yet sent out trailing
|
884
910
|
// md, now's the chance
|
885
911
|
if (!s->t->is_client && s->trailing_md_recvd && s->recv_trailing_md_op) {
|
886
|
-
|
887
|
-
|
888
|
-
|
912
|
+
grpc_core::ExecCtx::Run(
|
913
|
+
DEBUG_LOCATION,
|
914
|
+
s->recv_trailing_md_op->payload->recv_trailing_metadata
|
915
|
+
.recv_trailing_metadata_ready,
|
916
|
+
GRPC_ERROR_REF(s->cancel_self_error));
|
889
917
|
complete_if_batch_end_locked(
|
890
918
|
s, s->cancel_self_error, s->recv_trailing_md_op,
|
891
919
|
"cancel_stream scheduling trailing-md-on-complete");
|
@@ -900,16 +928,16 @@ static bool cancel_stream_locked(inproc_stream* s, grpc_error* error) {
|
|
900
928
|
return ret;
|
901
929
|
}
|
902
930
|
|
903
|
-
|
931
|
+
void do_nothing(void* /*arg*/, grpc_error* /*error*/) {}
|
904
932
|
|
905
|
-
|
906
|
-
|
933
|
+
void perform_stream_op(grpc_transport* gt, grpc_stream* gs,
|
934
|
+
grpc_transport_stream_op_batch* op) {
|
907
935
|
INPROC_LOG(GPR_INFO, "perform_stream_op %p %p %p", gt, gs, op);
|
908
936
|
inproc_stream* s = reinterpret_cast<inproc_stream*>(gs);
|
909
937
|
gpr_mu* mu = &s->t->mu->mu; // save aside in case s gets closed
|
910
938
|
gpr_mu_lock(mu);
|
911
939
|
|
912
|
-
if (grpc_inproc_trace
|
940
|
+
if (GRPC_TRACE_FLAG_ENABLED(grpc_inproc_trace)) {
|
913
941
|
if (op->send_initial_metadata) {
|
914
942
|
log_metadata(op->payload->send_initial_metadata.send_initial_metadata,
|
915
943
|
s->t->is_client, true);
|
@@ -950,8 +978,6 @@ static void perform_stream_op(grpc_transport* gt, grpc_stream* gs,
|
|
950
978
|
op->recv_trailing_metadata ? " recv_trailing_metadata" : "");
|
951
979
|
}
|
952
980
|
|
953
|
-
bool needs_close = false;
|
954
|
-
|
955
981
|
inproc_stream* other = s->other_side;
|
956
982
|
if (error == GRPC_ERROR_NONE &&
|
957
983
|
(op->send_initial_metadata || op->send_trailing_metadata)) {
|
@@ -972,7 +998,7 @@ static void perform_stream_op(grpc_transport* gt, grpc_stream* gs,
|
|
972
998
|
INPROC_LOG(GPR_INFO, "Extra initial metadata %p", s);
|
973
999
|
error = GRPC_ERROR_CREATE_FROM_STATIC_STRING("Extra initial metadata");
|
974
1000
|
} else {
|
975
|
-
if (!
|
1001
|
+
if (!s->other_side_closed) {
|
976
1002
|
fill_in_metadata(
|
977
1003
|
s, op->payload->send_initial_metadata.send_initial_metadata,
|
978
1004
|
op->payload->send_initial_metadata.send_initial_metadata_flags,
|
@@ -986,7 +1012,7 @@ static void perform_stream_op(grpc_transport* gt, grpc_stream* gs,
|
|
986
1012
|
s->initial_md_sent = true;
|
987
1013
|
}
|
988
1014
|
}
|
989
|
-
|
1015
|
+
maybe_process_ops_locked(other, error);
|
990
1016
|
}
|
991
1017
|
}
|
992
1018
|
|
@@ -994,7 +1020,7 @@ static void perform_stream_op(grpc_transport* gt, grpc_stream* gs,
|
|
994
1020
|
(op->send_message || op->send_trailing_metadata ||
|
995
1021
|
op->recv_initial_metadata || op->recv_message ||
|
996
1022
|
op->recv_trailing_metadata)) {
|
997
|
-
// Mark ops that need to be processed by the
|
1023
|
+
// Mark ops that need to be processed by the state machine
|
998
1024
|
if (op->send_message) {
|
999
1025
|
s->send_message_op = op;
|
1000
1026
|
}
|
@@ -1011,29 +1037,31 @@ static void perform_stream_op(grpc_transport* gt, grpc_stream* gs,
|
|
1011
1037
|
s->recv_trailing_md_op = op;
|
1012
1038
|
}
|
1013
1039
|
|
1014
|
-
// We want to initiate the
|
1015
|
-
// 1. We want to send a message and the other side wants to receive
|
1040
|
+
// We want to initiate the state machine if:
|
1041
|
+
// 1. We want to send a message and the other side wants to receive
|
1016
1042
|
// 2. We want to send trailing metadata and there isn't an unmatched send
|
1043
|
+
// or the other side wants trailing metadata
|
1017
1044
|
// 3. We want initial metadata and the other side has sent it
|
1018
1045
|
// 4. We want to receive a message and there is a message ready
|
1019
1046
|
// 5. There is trailing metadata, even if nothing specifically wants
|
1020
1047
|
// that because that can shut down the receive message as well
|
1021
|
-
if ((op->send_message && other &&
|
1022
|
-
|
1023
|
-
|
1024
|
-
(op->send_trailing_metadata && !op->send_message) ||
|
1048
|
+
if ((op->send_message && other && other->recv_message_op != nullptr) ||
|
1049
|
+
(op->send_trailing_metadata &&
|
1050
|
+
(!s->send_message_op || (other && other->recv_trailing_md_op))) ||
|
1025
1051
|
(op->recv_initial_metadata && s->to_read_initial_md_filled) ||
|
1026
|
-
(op->recv_message && other &&
|
1052
|
+
(op->recv_message && other && other->send_message_op != nullptr) ||
|
1027
1053
|
(s->to_read_trailing_md_filled || s->trailing_md_recvd)) {
|
1028
|
-
|
1029
|
-
GRPC_CLOSURE_SCHED(&s->op_closure, GRPC_ERROR_NONE);
|
1030
|
-
s->op_closure_scheduled = true;
|
1031
|
-
}
|
1054
|
+
op_state_machine_locked(s, error);
|
1032
1055
|
} else {
|
1033
1056
|
s->ops_needed = true;
|
1034
1057
|
}
|
1035
1058
|
} else {
|
1036
1059
|
if (error != GRPC_ERROR_NONE) {
|
1060
|
+
// Consume any send message that was sent here but that we are not pushing
|
1061
|
+
// to the other side
|
1062
|
+
if (op->send_message) {
|
1063
|
+
op->payload->send_message.send_message.reset();
|
1064
|
+
}
|
1037
1065
|
// Schedule op's closures that we didn't push to op state machine
|
1038
1066
|
if (op->recv_initial_metadata) {
|
1039
1067
|
if (op->payload->recv_initial_metadata.trailing_metadata_available !=
|
@@ -1049,7 +1077,8 @@ static void perform_stream_op(grpc_transport* gt, grpc_stream* gs,
|
|
1049
1077
|
GPR_INFO,
|
1050
1078
|
"perform_stream_op error %p scheduling initial-metadata-ready %p",
|
1051
1079
|
s, error);
|
1052
|
-
|
1080
|
+
grpc_core::ExecCtx::Run(
|
1081
|
+
DEBUG_LOCATION,
|
1053
1082
|
op->payload->recv_initial_metadata.recv_initial_metadata_ready,
|
1054
1083
|
GRPC_ERROR_REF(error));
|
1055
1084
|
}
|
@@ -1058,37 +1087,32 @@ static void perform_stream_op(grpc_transport* gt, grpc_stream* gs,
|
|
1058
1087
|
GPR_INFO,
|
1059
1088
|
"perform_stream_op error %p scheduling recv message-ready %p", s,
|
1060
1089
|
error);
|
1061
|
-
|
1062
|
-
|
1090
|
+
grpc_core::ExecCtx::Run(DEBUG_LOCATION,
|
1091
|
+
op->payload->recv_message.recv_message_ready,
|
1092
|
+
GRPC_ERROR_REF(error));
|
1063
1093
|
}
|
1064
1094
|
if (op->recv_trailing_metadata) {
|
1065
1095
|
INPROC_LOG(
|
1066
1096
|
GPR_INFO,
|
1067
1097
|
"perform_stream_op error %p scheduling trailing-metadata-ready %p",
|
1068
1098
|
s, error);
|
1069
|
-
|
1099
|
+
grpc_core::ExecCtx::Run(
|
1100
|
+
DEBUG_LOCATION,
|
1070
1101
|
op->payload->recv_trailing_metadata.recv_trailing_metadata_ready,
|
1071
1102
|
GRPC_ERROR_REF(error));
|
1072
1103
|
}
|
1073
1104
|
}
|
1074
1105
|
INPROC_LOG(GPR_INFO, "perform_stream_op %p scheduling on_complete %p", s,
|
1075
1106
|
error);
|
1076
|
-
|
1077
|
-
}
|
1078
|
-
if (needs_close) {
|
1079
|
-
close_other_side_locked(s, "perform_stream_op:other_side");
|
1080
|
-
close_stream_locked(s);
|
1107
|
+
grpc_core::ExecCtx::Run(DEBUG_LOCATION, on_complete, GRPC_ERROR_REF(error));
|
1081
1108
|
}
|
1082
1109
|
gpr_mu_unlock(mu);
|
1083
1110
|
GRPC_ERROR_UNREF(error);
|
1084
1111
|
}
|
1085
1112
|
|
1086
|
-
|
1113
|
+
void close_transport_locked(inproc_transport* t) {
|
1087
1114
|
INPROC_LOG(GPR_INFO, "close_transport %p %d", t, t->is_closed);
|
1088
|
-
|
1089
|
-
&t->connectivity, GRPC_CHANNEL_SHUTDOWN,
|
1090
|
-
GRPC_ERROR_CREATE_FROM_STATIC_STRING("Closing transport."),
|
1091
|
-
"close transport");
|
1115
|
+
t->state_tracker.SetState(GRPC_CHANNEL_SHUTDOWN, "close transport");
|
1092
1116
|
if (!t->is_closed) {
|
1093
1117
|
t->is_closed = true;
|
1094
1118
|
/* Also end all streams on this transport */
|
@@ -1103,21 +1127,23 @@ static void close_transport_locked(inproc_transport* t) {
|
|
1103
1127
|
}
|
1104
1128
|
}
|
1105
1129
|
|
1106
|
-
|
1130
|
+
void perform_transport_op(grpc_transport* gt, grpc_transport_op* op) {
|
1107
1131
|
inproc_transport* t = reinterpret_cast<inproc_transport*>(gt);
|
1108
1132
|
INPROC_LOG(GPR_INFO, "perform_transport_op %p %p", t, op);
|
1109
1133
|
gpr_mu_lock(&t->mu->mu);
|
1110
|
-
if (op->
|
1111
|
-
|
1112
|
-
|
1113
|
-
|
1134
|
+
if (op->start_connectivity_watch != nullptr) {
|
1135
|
+
t->state_tracker.AddWatcher(op->start_connectivity_watch_state,
|
1136
|
+
std::move(op->start_connectivity_watch));
|
1137
|
+
}
|
1138
|
+
if (op->stop_connectivity_watch != nullptr) {
|
1139
|
+
t->state_tracker.RemoveWatcher(op->stop_connectivity_watch);
|
1114
1140
|
}
|
1115
1141
|
if (op->set_accept_stream) {
|
1116
1142
|
t->accept_stream_cb = op->set_accept_stream_fn;
|
1117
1143
|
t->accept_stream_data = op->set_accept_stream_user_data;
|
1118
1144
|
}
|
1119
1145
|
if (op->on_consumed) {
|
1120
|
-
|
1146
|
+
grpc_core::ExecCtx::Run(DEBUG_LOCATION, op->on_consumed, GRPC_ERROR_NONE);
|
1121
1147
|
}
|
1122
1148
|
|
1123
1149
|
bool do_close = false;
|
@@ -1136,46 +1162,72 @@ static void perform_transport_op(grpc_transport* gt, grpc_transport_op* op) {
|
|
1136
1162
|
gpr_mu_unlock(&t->mu->mu);
|
1137
1163
|
}
|
1138
1164
|
|
1139
|
-
|
1140
|
-
|
1165
|
+
void destroy_stream(grpc_transport* /*gt*/, grpc_stream* gs,
|
1166
|
+
grpc_closure* then_schedule_closure) {
|
1141
1167
|
INPROC_LOG(GPR_INFO, "destroy_stream %p %p", gs, then_schedule_closure);
|
1142
1168
|
inproc_stream* s = reinterpret_cast<inproc_stream*>(gs);
|
1143
1169
|
s->closure_at_destroy = then_schedule_closure;
|
1144
|
-
|
1170
|
+
s->~inproc_stream();
|
1145
1171
|
}
|
1146
1172
|
|
1147
|
-
|
1173
|
+
void destroy_transport(grpc_transport* gt) {
|
1148
1174
|
inproc_transport* t = reinterpret_cast<inproc_transport*>(gt);
|
1149
1175
|
INPROC_LOG(GPR_INFO, "destroy_transport %p", t);
|
1150
1176
|
gpr_mu_lock(&t->mu->mu);
|
1151
1177
|
close_transport_locked(t);
|
1152
1178
|
gpr_mu_unlock(&t->mu->mu);
|
1153
|
-
|
1154
|
-
|
1179
|
+
t->other_side->unref();
|
1180
|
+
t->unref();
|
1155
1181
|
}
|
1156
1182
|
|
1157
1183
|
/*******************************************************************************
|
1158
1184
|
* INTEGRATION GLUE
|
1159
1185
|
*/
|
1160
1186
|
|
1161
|
-
|
1162
|
-
|
1187
|
+
void set_pollset(grpc_transport* /*gt*/, grpc_stream* /*gs*/,
|
1188
|
+
grpc_pollset* /*pollset*/) {
|
1163
1189
|
// Nothing to do here
|
1164
1190
|
}
|
1165
1191
|
|
1166
|
-
|
1167
|
-
|
1192
|
+
void set_pollset_set(grpc_transport* /*gt*/, grpc_stream* /*gs*/,
|
1193
|
+
grpc_pollset_set* /*pollset_set*/) {
|
1168
1194
|
// Nothing to do here
|
1169
1195
|
}
|
1170
1196
|
|
1171
|
-
|
1197
|
+
grpc_endpoint* get_endpoint(grpc_transport* /*t*/) { return nullptr; }
|
1198
|
+
|
1199
|
+
const grpc_transport_vtable inproc_vtable = {
|
1200
|
+
sizeof(inproc_stream), "inproc", init_stream,
|
1201
|
+
set_pollset, set_pollset_set, perform_stream_op,
|
1202
|
+
perform_transport_op, destroy_stream, destroy_transport,
|
1203
|
+
get_endpoint};
|
1204
|
+
|
1205
|
+
/*******************************************************************************
|
1206
|
+
* Main inproc transport functions
|
1207
|
+
*/
|
1208
|
+
void inproc_transports_create(grpc_transport** server_transport,
|
1209
|
+
const grpc_channel_args* /*server_args*/,
|
1210
|
+
grpc_transport** client_transport,
|
1211
|
+
const grpc_channel_args* /*client_args*/) {
|
1212
|
+
INPROC_LOG(GPR_INFO, "inproc_transports_create");
|
1213
|
+
shared_mu* mu = new (gpr_malloc(sizeof(*mu))) shared_mu();
|
1214
|
+
inproc_transport* st = new (gpr_malloc(sizeof(*st)))
|
1215
|
+
inproc_transport(&inproc_vtable, mu, /*is_client=*/false);
|
1216
|
+
inproc_transport* ct = new (gpr_malloc(sizeof(*ct)))
|
1217
|
+
inproc_transport(&inproc_vtable, mu, /*is_client=*/true);
|
1218
|
+
st->other_side = ct;
|
1219
|
+
ct->other_side = st;
|
1220
|
+
*server_transport = reinterpret_cast<grpc_transport*>(st);
|
1221
|
+
*client_transport = reinterpret_cast<grpc_transport*>(ct);
|
1222
|
+
}
|
1223
|
+
} // namespace
|
1172
1224
|
|
1173
1225
|
/*******************************************************************************
|
1174
1226
|
* GLOBAL INIT AND DESTROY
|
1175
1227
|
*/
|
1176
1228
|
void grpc_inproc_transport_init(void) {
|
1177
1229
|
grpc_core::ExecCtx exec_ctx;
|
1178
|
-
g_empty_slice =
|
1230
|
+
g_empty_slice = grpc_core::ExternallyManagedSlice();
|
1179
1231
|
|
1180
1232
|
grpc_slice key_tmp = grpc_slice_from_static_string(":path");
|
1181
1233
|
g_fake_path_key = grpc_slice_intern(key_tmp);
|
@@ -1190,60 +1242,23 @@ void grpc_inproc_transport_init(void) {
|
|
1190
1242
|
g_fake_auth_value = grpc_slice_from_static_string("inproc-fail");
|
1191
1243
|
}
|
1192
1244
|
|
1193
|
-
static const grpc_transport_vtable inproc_vtable = {
|
1194
|
-
sizeof(inproc_stream), "inproc", init_stream,
|
1195
|
-
set_pollset, set_pollset_set, perform_stream_op,
|
1196
|
-
perform_transport_op, destroy_stream, destroy_transport,
|
1197
|
-
get_endpoint};
|
1198
|
-
|
1199
|
-
/*******************************************************************************
|
1200
|
-
* Main inproc transport functions
|
1201
|
-
*/
|
1202
|
-
static void inproc_transports_create(grpc_transport** server_transport,
|
1203
|
-
const grpc_channel_args* server_args,
|
1204
|
-
grpc_transport** client_transport,
|
1205
|
-
const grpc_channel_args* client_args) {
|
1206
|
-
INPROC_LOG(GPR_INFO, "inproc_transports_create");
|
1207
|
-
inproc_transport* st =
|
1208
|
-
static_cast<inproc_transport*>(gpr_zalloc(sizeof(*st)));
|
1209
|
-
inproc_transport* ct =
|
1210
|
-
static_cast<inproc_transport*>(gpr_zalloc(sizeof(*ct)));
|
1211
|
-
// Share one lock between both sides since both sides get affected
|
1212
|
-
st->mu = ct->mu = static_cast<shared_mu*>(gpr_malloc(sizeof(*st->mu)));
|
1213
|
-
gpr_mu_init(&st->mu->mu);
|
1214
|
-
gpr_ref_init(&st->mu->refs, 2);
|
1215
|
-
st->base.vtable = &inproc_vtable;
|
1216
|
-
ct->base.vtable = &inproc_vtable;
|
1217
|
-
// Start each side of transport with 2 refs since they each have a ref
|
1218
|
-
// to the other
|
1219
|
-
gpr_ref_init(&st->refs, 2);
|
1220
|
-
gpr_ref_init(&ct->refs, 2);
|
1221
|
-
st->is_client = false;
|
1222
|
-
ct->is_client = true;
|
1223
|
-
grpc_connectivity_state_init(&st->connectivity, GRPC_CHANNEL_READY,
|
1224
|
-
"inproc_server");
|
1225
|
-
grpc_connectivity_state_init(&ct->connectivity, GRPC_CHANNEL_READY,
|
1226
|
-
"inproc_client");
|
1227
|
-
st->other_side = ct;
|
1228
|
-
ct->other_side = st;
|
1229
|
-
st->stream_list = nullptr;
|
1230
|
-
ct->stream_list = nullptr;
|
1231
|
-
*server_transport = reinterpret_cast<grpc_transport*>(st);
|
1232
|
-
*client_transport = reinterpret_cast<grpc_transport*>(ct);
|
1233
|
-
}
|
1234
|
-
|
1235
1245
|
grpc_channel* grpc_inproc_channel_create(grpc_server* server,
|
1236
1246
|
grpc_channel_args* args,
|
1237
|
-
void* reserved) {
|
1247
|
+
void* /*reserved*/) {
|
1238
1248
|
GRPC_API_TRACE("grpc_inproc_channel_create(server=%p, args=%p)", 2,
|
1239
1249
|
(server, args));
|
1240
1250
|
|
1241
1251
|
grpc_core::ExecCtx exec_ctx;
|
1242
1252
|
|
1243
|
-
|
1253
|
+
// Remove max_connection_idle and max_connection_age channel arguments since
|
1254
|
+
// those do not apply to inproc transports.
|
1255
|
+
const char* args_to_remove[] = {GRPC_ARG_MAX_CONNECTION_IDLE_MS,
|
1256
|
+
GRPC_ARG_MAX_CONNECTION_AGE_MS};
|
1257
|
+
const grpc_channel_args* server_args = grpc_channel_args_copy_and_remove(
|
1258
|
+
grpc_server_get_channel_args(server), args_to_remove,
|
1259
|
+
GPR_ARRAY_SIZE(args_to_remove));
|
1244
1260
|
|
1245
1261
|
// Add a default authority channel argument for the client
|
1246
|
-
|
1247
1262
|
grpc_arg default_authority_arg;
|
1248
1263
|
default_authority_arg.type = GRPC_ARG_STRING;
|
1249
1264
|
default_authority_arg.key = (char*)GRPC_ARG_DEFAULT_AUTHORITY;
|
@@ -1256,11 +1271,14 @@ grpc_channel* grpc_inproc_channel_create(grpc_server* server,
|
|
1256
1271
|
inproc_transports_create(&server_transport, server_args, &client_transport,
|
1257
1272
|
client_args);
|
1258
1273
|
|
1259
|
-
|
1274
|
+
// TODO(ncteisen): design and support channelz GetSocket for inproc.
|
1275
|
+
grpc_server_setup_transport(server, server_transport, nullptr, server_args,
|
1276
|
+
nullptr);
|
1260
1277
|
grpc_channel* channel = grpc_channel_create(
|
1261
1278
|
"inproc", client_args, GRPC_CLIENT_DIRECT_CHANNEL, client_transport);
|
1262
1279
|
|
1263
1280
|
// Free up created channel args
|
1281
|
+
grpc_channel_args_destroy(server_args);
|
1264
1282
|
grpc_channel_args_destroy(client_args);
|
1265
1283
|
|
1266
1284
|
// Now finish scheduled operations
|