grpc 1.28.0 → 1.31.0.pre2
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 +8314 -11869
- data/include/grpc/grpc.h +2 -2
- data/include/grpc/grpc_security.h +30 -9
- data/include/grpc/grpc_security_constants.h +4 -0
- data/include/grpc/impl/codegen/grpc_types.h +23 -23
- data/include/grpc/impl/codegen/port_platform.h +6 -34
- data/include/grpc/module.modulemap +24 -39
- data/src/core/ext/filters/client_channel/backend_metric.cc +18 -12
- data/src/core/ext/filters/client_channel/client_channel.cc +591 -479
- data/src/core/ext/filters/client_channel/client_channel_plugin.cc +3 -2
- data/src/core/ext/filters/client_channel/config_selector.cc +62 -0
- data/src/core/ext/filters/client_channel/config_selector.h +93 -0
- data/src/core/ext/filters/client_channel/global_subchannel_pool.cc +24 -2
- data/src/core/ext/filters/client_channel/health/health_check_client.cc +9 -22
- data/src/core/ext/filters/client_channel/health/health_check_client.h +3 -3
- data/src/core/ext/filters/client_channel/http_connect_handshaker.cc +6 -5
- data/src/core/ext/filters/client_channel/http_proxy.cc +23 -14
- data/src/core/ext/filters/client_channel/lb_policy.cc +19 -18
- data/src/core/ext/filters/client_channel/lb_policy.h +44 -33
- 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 +10 -4
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +279 -324
- 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_secure.cc +11 -9
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.h +3 -2
- 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 +1 -1
- data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +9 -17
- data/src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc +733 -0
- data/src/core/ext/filters/client_channel/lb_policy/xds/cds.cc +84 -37
- 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 +1 -2
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_routing.cc +1143 -0
- data/src/core/ext/filters/client_channel/lb_policy_registry.cc +10 -7
- data/src/core/ext/filters/client_channel/local_subchannel_pool.h +2 -1
- data/src/core/ext/filters/client_channel/parse_address.cc +22 -21
- data/src/core/ext/filters/client_channel/resolver.cc +5 -8
- data/src/core/ext/filters/client_channel/resolver.h +12 -14
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +78 -61
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.cc +41 -40
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h +8 -7
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_libuv.cc +22 -24
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +12 -10
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +79 -122
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +199 -163
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +5 -3
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_fallback.cc +7 -4
- data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +46 -45
- data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc +93 -102
- data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h +0 -4
- data/src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc +2 -2
- data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +38 -8
- data/src/core/ext/filters/client_channel/resolver_factory.h +2 -2
- data/src/core/ext/filters/client_channel/resolver_registry.cc +19 -17
- data/src/core/ext/filters/client_channel/resolver_registry.h +8 -8
- data/src/core/ext/filters/client_channel/resolver_result_parsing.cc +21 -22
- data/src/core/ext/filters/client_channel/resolver_result_parsing.h +19 -16
- data/src/core/ext/filters/client_channel/resolving_lb_policy.cc +49 -55
- data/src/core/ext/filters/client_channel/resolving_lb_policy.h +43 -23
- data/src/core/ext/filters/client_channel/server_address.cc +6 -9
- data/src/core/ext/filters/client_channel/server_address.h +6 -12
- data/src/core/ext/filters/client_channel/service_config.cc +104 -144
- data/src/core/ext/filters/client_channel/service_config.h +28 -98
- data/src/core/ext/filters/client_channel/service_config_call_data.h +68 -0
- data/src/core/ext/filters/client_channel/service_config_channel_arg_filter.cc +142 -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 +55 -25
- data/src/core/ext/filters/client_channel/subchannel.h +35 -11
- data/src/core/ext/filters/client_channel/xds/xds_api.cc +565 -234
- data/src/core/ext/filters/client_channel/xds/xds_api.h +102 -37
- data/src/core/ext/filters/client_channel/xds/xds_bootstrap.cc +55 -71
- data/src/core/ext/filters/client_channel/xds/xds_bootstrap.h +4 -3
- data/src/core/ext/filters/client_channel/xds/xds_channel_secure.cc +4 -2
- data/src/core/ext/filters/client_channel/xds/xds_client.cc +619 -347
- data/src/core/ext/filters/client_channel/xds/xds_client.h +57 -22
- data/src/core/ext/filters/client_channel/xds/xds_client_stats.cc +11 -12
- data/src/core/ext/filters/client_channel/xds/xds_client_stats.h +40 -28
- data/src/core/ext/filters/http/client/http_client_filter.cc +28 -33
- data/src/core/ext/filters/http/client_authority_filter.cc +4 -4
- data/src/core/ext/filters/http/http_filters_plugin.cc +28 -12
- data/src/core/ext/filters/http/message_compress/message_compress_filter.cc +258 -221
- data/src/core/ext/filters/http/message_compress/message_decompress_filter.cc +399 -0
- data/src/core/ext/filters/http/message_compress/message_decompress_filter.h +31 -0
- data/src/core/ext/filters/message_size/message_size_filter.cc +61 -88
- data/src/core/ext/filters/message_size/message_size_filter.h +10 -4
- data/src/core/ext/transport/chttp2/server/chttp2_server.cc +386 -350
- data/src/core/ext/transport/chttp2/server/chttp2_server.h +6 -2
- data/src/core/ext/transport/chttp2/server/insecure/server_chttp2.cc +1 -1
- data/src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.cc +7 -13
- data/src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.cc +7 -8
- data/src/core/ext/transport/chttp2/transport/bin_encoder.cc +4 -6
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +42 -26
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +1 -0
- data/src/core/ext/transport/chttp2/transport/flow_control.cc +25 -30
- data/src/core/ext/transport/chttp2/transport/flow_control.h +14 -16
- data/src/core/ext/transport/chttp2/transport/frame_data.cc +9 -12
- data/src/core/ext/transport/chttp2/transport/frame_goaway.cc +4 -6
- data/src/core/ext/transport/chttp2/transport/frame_goaway.h +2 -3
- data/src/core/ext/transport/chttp2/transport/frame_ping.cc +5 -6
- data/src/core/ext/transport/chttp2/transport/frame_ping.h +2 -3
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +12 -13
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.h +2 -3
- data/src/core/ext/transport/chttp2/transport/frame_settings.cc +6 -7
- data/src/core/ext/transport/chttp2/transport/frame_settings.h +2 -3
- data/src/core/ext/transport/chttp2/transport/frame_window_update.cc +9 -12
- data/src/core/ext/transport/chttp2/transport/frame_window_update.h +2 -3
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +29 -16
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +2 -3
- data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +25 -29
- data/src/core/ext/transport/chttp2/transport/hpack_parser.h +2 -3
- data/src/core/ext/transport/chttp2/transport/hpack_table.cc +13 -17
- data/src/core/ext/transport/chttp2/transport/hpack_table.h +2 -2
- 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/internal.h +27 -21
- data/src/core/ext/transport/chttp2/transport/parsing.cc +33 -43
- data/src/core/ext/transport/chttp2/transport/stream_map.h +2 -3
- data/src/core/ext/transport/chttp2/transport/writing.cc +24 -22
- data/src/core/ext/transport/inproc/inproc_transport.cc +54 -15
- data/src/core/ext/upb-generated/envoy/annotations/deprecation.upb.h +0 -1
- data/src/core/ext/upb-generated/envoy/annotations/resource.upb.h +3 -4
- data/src/core/ext/upb-generated/envoy/api/v2/auth/cert.upb.c +4 -229
- data/src/core/ext/upb-generated/envoy/api/v2/auth/cert.upb.h +5 -876
- 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 +429 -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 +198 -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 +388 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cds.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cds.upb.h +1 -2
- data/src/core/ext/upb-generated/envoy/api/v2/cluster.upb.c +23 -10
- data/src/core/ext/upb-generated/envoy/api/v2/cluster.upb.h +352 -310
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/circuit_breaker.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/circuit_breaker.upb.h +42 -34
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/filter.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/filter.upb.h +7 -7
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/outlier_detection.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/api/v2/cluster/outlier_detection.upb.h +79 -61
- data/src/core/ext/upb-generated/envoy/api/v2/core/address.upb.c +2 -1
- data/src/core/ext/upb-generated/envoy/api/v2/core/address.upb.h +55 -49
- 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 +79 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/base.upb.c +48 -27
- data/src/core/ext/upb-generated/envoy/api/v2/core/base.upb.h +258 -214
- data/src/core/ext/upb-generated/envoy/api/v2/core/config_source.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/config_source.upb.h +51 -45
- 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 +71 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/grpc_service.upb.c +2 -1
- data/src/core/ext/upb-generated/envoy/api/v2/core/grpc_service.upb.h +107 -100
- data/src/core/ext/upb-generated/envoy/api/v2/core/health_check.upb.c +24 -20
- data/src/core/ext/upb-generated/envoy/api/v2/core/health_check.upb.h +157 -122
- data/src/core/ext/upb-generated/envoy/api/v2/core/http_uri.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/api/v2/core/http_uri.upb.h +9 -9
- data/src/core/ext/upb-generated/envoy/api/v2/core/protocol.upb.c +38 -18
- data/src/core/ext/upb-generated/envoy/api/v2/core/protocol.upb.h +173 -73
- 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 +88 -0
- data/src/core/ext/upb-generated/envoy/api/v2/discovery.upb.c +2 -1
- data/src/core/ext/upb-generated/envoy/api/v2/discovery.upb.h +95 -101
- data/src/core/ext/upb-generated/envoy/api/v2/eds.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/api/v2/eds.upb.h +1 -2
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint.upb.c +2 -1
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint.upb.h +49 -65
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint.upb.h +0 -1
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint_components.upb.c +9 -6
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint_components.upb.h +53 -38
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/load_report.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/api/v2/endpoint/load_report.upb.h +70 -62
- data/src/core/ext/upb-generated/envoy/api/v2/lds.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/api/v2/lds.upb.h +1 -2
- data/src/core/ext/upb-generated/envoy/api/v2/listener.upb.c +15 -10
- data/src/core/ext/upb-generated/envoy/api/v2/listener.upb.h +95 -63
- data/src/core/ext/upb-generated/envoy/api/v2/listener/listener.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/api/v2/listener/listener.upb.h +0 -1
- data/src/core/ext/upb-generated/envoy/api/v2/listener/listener_components.upb.c +3 -2
- data/src/core/ext/upb-generated/envoy/api/v2/listener/listener_components.upb.h +91 -80
- data/src/core/ext/upb-generated/envoy/api/v2/listener/udp_listener_config.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/api/v2/listener/udp_listener_config.upb.h +9 -10
- data/src/core/ext/upb-generated/envoy/api/v2/rds.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/api/v2/rds.upb.h +1 -2
- data/src/core/ext/upb-generated/envoy/api/v2/route.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/api/v2/route.upb.h +36 -31
- data/src/core/ext/upb-generated/envoy/api/v2/route/route.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/api/v2/route/route.upb.h +0 -1
- data/src/core/ext/upb-generated/envoy/api/v2/route/route_components.upb.c +68 -46
- data/src/core/ext/upb-generated/envoy/api/v2/route/route_components.upb.h +770 -722
- data/src/core/ext/upb-generated/envoy/api/v2/scoped_route.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/api/v2/scoped_route.upb.h +16 -15
- data/src/core/ext/upb-generated/envoy/api/v2/srds.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/api/v2/srds.upb.h +1 -2
- data/src/core/ext/upb-generated/envoy/config/filter/accesslog/v2/accesslog.upb.c +2 -1
- data/src/core/ext/upb-generated/envoy/config/filter/accesslog/v2/accesslog.upb.h +95 -88
- data/src/core/ext/upb-generated/envoy/config/filter/network/http_connection_manager/v2/http_connection_manager.upb.c +48 -28
- data/src/core/ext/upb-generated/envoy/config/filter/network/http_connection_manager/v2/http_connection_manager.upb.h +305 -210
- data/src/core/ext/upb-generated/envoy/config/listener/v2/api_listener.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/config/listener/v2/api_listener.upb.h +5 -5
- 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 +1 -0
- data/src/core/ext/upb-generated/envoy/service/discovery/v2/ads.upb.h +1 -2
- data/src/core/ext/upb-generated/envoy/service/load_stats/v2/lrs.upb.c +4 -2
- data/src/core/ext/upb-generated/envoy/service/load_stats/v2/lrs.upb.h +22 -16
- data/src/core/ext/upb-generated/envoy/type/http.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/type/http.upb.h +0 -1
- data/src/core/ext/upb-generated/envoy/type/matcher/regex.upb.c +16 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/regex.upb.h +48 -11
- data/src/core/ext/upb-generated/envoy/type/matcher/string.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/string.upb.h +14 -14
- data/src/core/ext/upb-generated/envoy/type/metadata/v2/metadata.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/type/metadata/v2/metadata.upb.h +23 -23
- data/src/core/ext/upb-generated/envoy/type/percent.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/type/percent.upb.h +8 -9
- data/src/core/ext/upb-generated/envoy/type/range.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/type/range.upb.h +15 -16
- data/src/core/ext/upb-generated/envoy/type/semantic_version.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/type/semantic_version.upb.h +7 -8
- data/src/core/ext/upb-generated/envoy/type/tracing/v2/custom_tag.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/type/tracing/v2/custom_tag.upb.h +36 -35
- data/src/core/ext/upb-generated/gogoproto/gogo.upb.h +0 -1
- data/src/core/ext/upb-generated/google/api/annotations.upb.h +0 -1
- data/src/core/ext/upb-generated/google/api/http.upb.h +29 -28
- data/src/core/ext/upb-generated/google/protobuf/any.upb.h +5 -6
- data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.c +12 -11
- data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.h +421 -389
- data/src/core/ext/upb-generated/google/protobuf/duration.upb.h +5 -6
- data/src/core/ext/upb-generated/google/protobuf/empty.upb.h +1 -2
- data/src/core/ext/upb-generated/google/protobuf/struct.upb.c +1 -1
- data/src/core/ext/upb-generated/google/protobuf/struct.upb.h +33 -54
- data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.h +5 -6
- data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.h +27 -28
- data/src/core/ext/upb-generated/google/rpc/status.upb.h +8 -8
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.c +1 -1
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.h +32 -45
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.c +4 -4
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.h +157 -178
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.h +14 -13
- data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.h +6 -7
- data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.h +59 -56
- data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.h +11 -12
- data/src/core/ext/upb-generated/udpa/annotations/sensitive.upb.h +0 -1
- data/src/core/ext/upb-generated/udpa/annotations/status.upb.c +28 -0
- data/src/core/ext/upb-generated/udpa/annotations/status.upb.h +64 -0
- data/src/core/ext/upb-generated/udpa/data/orca/v1/orca_load_report.upb.c +6 -6
- data/src/core/ext/upb-generated/udpa/data/orca/v1/orca_load_report.upb.h +41 -68
- data/src/core/ext/upb-generated/validate/validate.upb.c +21 -20
- data/src/core/ext/upb-generated/validate/validate.upb.h +569 -562
- data/src/core/lib/channel/channel_args.cc +15 -14
- data/src/core/lib/channel/channel_args.h +3 -1
- data/src/core/lib/channel/channel_stack.h +20 -13
- data/src/core/lib/channel/channel_trace.cc +2 -6
- data/src/core/lib/channel/channelz.cc +10 -21
- data/src/core/lib/channel/channelz.h +3 -2
- data/src/core/lib/channel/channelz_registry.cc +5 -3
- data/src/core/lib/channel/connected_channel.cc +7 -5
- data/src/core/lib/channel/context.h +1 -1
- data/src/core/lib/channel/handshaker.cc +11 -13
- data/src/core/lib/channel/handshaker.h +4 -2
- data/src/core/lib/channel/handshaker_registry.cc +5 -17
- data/src/core/lib/channel/status_util.cc +2 -3
- data/src/core/lib/compression/message_compress.cc +5 -1
- data/src/core/lib/debug/stats.cc +21 -27
- data/src/core/lib/debug/stats.h +3 -1
- data/src/core/lib/gpr/log_linux.cc +6 -8
- data/src/core/lib/gpr/log_posix.cc +6 -8
- data/src/core/lib/gpr/spinlock.h +2 -3
- data/src/core/lib/gpr/string.cc +10 -33
- data/src/core/lib/gpr/string.h +4 -18
- data/src/core/lib/gpr/sync_abseil.cc +2 -0
- data/src/core/lib/gpr/time.cc +4 -0
- data/src/core/lib/gpr/time_posix.cc +1 -1
- data/src/core/lib/gprpp/atomic.h +6 -6
- data/src/core/lib/gprpp/fork.cc +1 -1
- data/src/core/lib/gprpp/global_config_env.cc +8 -6
- data/src/core/lib/gprpp/host_port.cc +29 -35
- data/src/core/lib/gprpp/host_port.h +14 -17
- data/src/core/lib/gprpp/map.h +5 -11
- data/src/core/lib/gprpp/ref_counted_ptr.h +5 -0
- data/src/core/lib/http/format_request.cc +46 -65
- data/src/core/lib/http/httpcli.cc +15 -13
- data/src/core/lib/http/httpcli.h +2 -3
- data/src/core/lib/http/httpcli_security_connector.cc +10 -10
- data/src/core/lib/http/parser.h +2 -3
- data/src/core/lib/iomgr/buffer_list.h +22 -21
- data/src/core/lib/iomgr/call_combiner.h +3 -2
- data/src/core/lib/iomgr/cfstream_handle.cc +4 -2
- data/src/core/lib/iomgr/closure.h +2 -3
- data/src/core/lib/iomgr/dualstack_socket_posix.cc +47 -0
- data/src/core/lib/iomgr/endpoint_cfstream.cc +2 -3
- data/src/core/lib/iomgr/endpoint_pair.h +2 -3
- data/src/core/lib/iomgr/endpoint_pair_posix.cc +10 -10
- data/src/core/lib/iomgr/error.cc +6 -9
- data/src/core/lib/iomgr/error.h +0 -1
- data/src/core/lib/iomgr/error_cfstream.cc +9 -8
- 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 +25 -29
- data/src/core/lib/iomgr/ev_epollex_linux.cc +17 -24
- data/src/core/lib/iomgr/ev_poll_posix.cc +9 -8
- data/src/core/lib/iomgr/ev_posix.cc +4 -3
- data/src/core/lib/iomgr/exec_ctx.h +14 -2
- data/src/core/lib/iomgr/iomgr.cc +10 -0
- data/src/core/lib/iomgr/iomgr.h +10 -0
- data/src/core/lib/iomgr/iomgr_posix_cfstream.cc +84 -20
- data/src/core/lib/iomgr/is_epollexclusive_available.cc +14 -0
- data/src/core/lib/iomgr/pollset_set_custom.cc +10 -10
- data/src/core/lib/{gprpp/optional.h → iomgr/pollset_uv.h} +11 -12
- data/src/core/lib/iomgr/port.h +2 -21
- data/src/core/lib/iomgr/python_util.h +46 -0
- data/src/core/lib/iomgr/resolve_address.h +4 -6
- data/src/core/lib/iomgr/resolve_address_custom.cc +42 -57
- data/src/core/lib/iomgr/resolve_address_custom.h +4 -2
- data/src/core/lib/iomgr/resolve_address_posix.cc +10 -11
- data/src/core/lib/iomgr/resolve_address_windows.cc +16 -25
- data/src/core/lib/iomgr/resource_quota.cc +38 -37
- data/src/core/lib/iomgr/sockaddr_utils.cc +29 -33
- data/src/core/lib/iomgr/sockaddr_utils.h +10 -15
- 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 +102 -81
- data/src/core/lib/iomgr/socket_utils_posix.h +3 -0
- data/src/core/lib/iomgr/socket_windows.cc +4 -5
- data/src/core/lib/iomgr/tcp_client_cfstream.cc +14 -18
- data/src/core/lib/iomgr/tcp_client_custom.cc +6 -9
- data/src/core/lib/iomgr/tcp_client_posix.cc +30 -36
- data/src/core/lib/iomgr/tcp_client_windows.cc +10 -11
- data/src/core/lib/iomgr/tcp_custom.cc +3 -4
- data/src/core/lib/iomgr/tcp_custom.h +1 -1
- data/src/core/lib/iomgr/tcp_server.cc +3 -4
- data/src/core/lib/iomgr/tcp_server.h +7 -5
- data/src/core/lib/iomgr/tcp_server_custom.cc +11 -23
- data/src/core/lib/iomgr/tcp_server_posix.cc +38 -44
- data/src/core/lib/iomgr/tcp_server_utils_posix.h +3 -4
- data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +7 -8
- data/src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc +10 -18
- data/src/core/lib/iomgr/tcp_server_windows.cc +16 -16
- data/src/core/lib/iomgr/tcp_uv.cc +3 -2
- data/src/core/lib/iomgr/time_averaged_stats.h +2 -3
- data/src/core/lib/iomgr/timer_generic.cc +15 -15
- data/src/core/lib/{gprpp/inlined_vector.h → iomgr/timer_generic.h} +19 -17
- data/src/core/lib/iomgr/timer_heap.h +2 -3
- data/src/core/lib/iomgr/udp_server.cc +32 -36
- data/src/core/lib/iomgr/udp_server.h +5 -2
- data/src/core/lib/iomgr/unix_sockets_posix.cc +9 -14
- data/src/core/lib/iomgr/unix_sockets_posix.h +3 -1
- data/src/core/lib/iomgr/unix_sockets_posix_noop.cc +5 -2
- data/src/core/lib/json/json.h +3 -2
- data/src/core/lib/json/json_reader.cc +25 -26
- data/src/core/lib/json/json_writer.cc +13 -12
- data/src/core/lib/security/credentials/composite/composite_credentials.cc +12 -0
- data/src/core/lib/security/credentials/composite/composite_credentials.h +6 -3
- data/src/core/lib/security/credentials/credentials.cc +0 -84
- data/src/core/lib/security/credentials/credentials.h +13 -62
- data/src/core/lib/security/credentials/fake/fake_credentials.h +4 -0
- data/src/core/lib/security/credentials/google_default/credentials_generic.cc +8 -6
- data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +15 -17
- data/src/core/lib/security/credentials/iam/iam_credentials.cc +8 -6
- data/src/core/lib/security/credentials/iam/iam_credentials.h +4 -0
- data/src/core/lib/security/credentials/jwt/json_token.cc +1 -1
- data/src/core/lib/security/credentials/jwt/json_token.h +2 -5
- data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +7 -4
- data/src/core/lib/security/credentials/jwt/jwt_credentials.h +12 -0
- data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +8 -15
- data/src/core/lib/security/credentials/jwt/jwt_verifier.h +2 -3
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +73 -54
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +9 -3
- data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +19 -6
- data/src/core/lib/security/credentials/plugin/plugin_credentials.h +2 -0
- data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +20 -0
- data/src/core/lib/security/credentials/ssl/ssl_credentials.h +10 -0
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +23 -13
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +48 -11
- data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +21 -6
- data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +17 -17
- data/src/core/lib/security/security_connector/load_system_roots_linux.cc +3 -2
- data/src/core/lib/security/security_connector/local/local_security_connector.cc +1 -1
- data/src/core/lib/security/security_connector/security_connector.cc +2 -0
- data/src/core/lib/security/security_connector/security_connector.h +2 -2
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +38 -36
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.h +8 -5
- data/src/core/lib/security/security_connector/ssl_utils.cc +89 -21
- data/src/core/lib/security/security_connector/ssl_utils.h +18 -12
- data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +101 -72
- data/src/core/lib/security/security_connector/tls/tls_security_connector.h +27 -5
- data/src/core/lib/security/transport/auth_filters.h +0 -5
- data/src/core/lib/security/transport/client_auth_filter.cc +11 -11
- data/src/core/lib/security/util/json_util.cc +12 -13
- data/src/core/lib/slice/slice.cc +38 -1
- data/src/core/lib/slice/slice_intern.cc +2 -3
- data/src/core/lib/slice/slice_internal.h +15 -0
- data/src/core/lib/slice/slice_utils.h +9 -0
- data/src/core/lib/surface/byte_buffer_reader.cc +2 -47
- data/src/core/lib/surface/call.cc +42 -44
- data/src/core/lib/surface/call_log_batch.cc +50 -58
- data/src/core/lib/surface/channel.cc +53 -31
- data/src/core/lib/surface/channel.h +35 -4
- data/src/core/lib/surface/channel_ping.cc +2 -3
- data/src/core/lib/surface/completion_queue.cc +304 -47
- data/src/core/lib/surface/completion_queue.h +8 -0
- 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 +2 -0
- data/src/core/lib/surface/init_secure.cc +1 -4
- data/src/core/lib/surface/server.cc +971 -837
- data/src/core/lib/surface/server.h +66 -12
- data/src/core/lib/surface/version.cc +2 -2
- data/src/core/lib/transport/byte_stream.h +7 -2
- data/src/core/lib/transport/connectivity_state.cc +7 -6
- data/src/core/lib/transport/connectivity_state.h +5 -3
- data/src/core/lib/transport/metadata.cc +3 -3
- data/src/core/lib/transport/metadata_batch.h +2 -3
- data/src/core/lib/transport/static_metadata.h +1 -1
- data/src/core/lib/transport/status_conversion.cc +6 -14
- data/src/core/lib/transport/transport.cc +2 -3
- data/src/core/lib/transport/transport.h +9 -2
- data/src/core/lib/transport/transport_op_string.cc +61 -102
- data/src/core/lib/uri/uri_parser.cc +8 -15
- data/src/core/lib/uri/uri_parser.h +2 -3
- data/src/core/plugin_registry/grpc_plugin_registry.cc +24 -4
- data/src/core/tsi/alts/crypt/aes_gcm.cc +0 -2
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +31 -14
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.h +8 -4
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +34 -2
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.h +9 -1
- data/src/core/tsi/alts/handshaker/transport_security_common_api.cc +2 -0
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.h +2 -3
- data/src/core/tsi/fake_transport_security.cc +10 -15
- data/src/core/tsi/ssl/session_cache/ssl_session.h +0 -2
- data/src/core/tsi/ssl/session_cache/ssl_session_cache.h +0 -2
- data/src/core/tsi/ssl_transport_security.cc +154 -50
- data/src/core/tsi/ssl_transport_security.h +22 -10
- data/src/core/tsi/ssl_types.h +0 -2
- data/src/core/tsi/transport_security.h +6 -9
- data/src/core/tsi/transport_security_grpc.h +2 -3
- data/src/core/tsi/transport_security_interface.h +8 -3
- data/src/ruby/ext/grpc/extconf.rb +5 -2
- data/src/ruby/ext/grpc/rb_call.c +12 -3
- data/src/ruby/ext/grpc/rb_call.h +4 -0
- data/src/ruby/ext/grpc/rb_call_credentials.c +57 -12
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +4 -0
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +6 -0
- data/src/ruby/lib/grpc/errors.rb +103 -42
- data/src/ruby/lib/grpc/generic/active_call.rb +2 -3
- data/src/ruby/lib/grpc/generic/interceptors.rb +5 -5
- data/src/ruby/lib/grpc/generic/rpc_server.rb +9 -10
- data/src/ruby/lib/grpc/generic/service.rb +5 -4
- data/src/ruby/lib/grpc/structs.rb +1 -1
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/src/ruby/pb/generate_proto_ruby.sh +5 -3
- data/src/ruby/pb/src/proto/grpc/testing/messages_pb.rb +11 -0
- data/src/ruby/pb/src/proto/grpc/testing/test_services_pb.rb +16 -0
- data/src/ruby/spec/debug_message_spec.rb +134 -0
- data/src/ruby/spec/generic/service_spec.rb +2 -0
- data/src/ruby/spec/pb/codegen/grpc/testing/package_options_import2.proto +23 -0
- data/src/ruby/spec/pb/codegen/grpc/testing/package_options_ruby_style.proto +7 -0
- data/src/ruby/spec/pb/codegen/package_option_spec.rb +7 -1
- data/src/ruby/spec/support/services.rb +10 -4
- 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/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/boringssl-with-bazel/err_data.c +335 -297
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bitstr.c +3 -3
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_enum.c +3 -3
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_int.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_object.c +3 -3
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_time.c +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_type.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_lib.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/asn1/asn_pack.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/asn1/f_enum.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/asn1/f_int.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/asn1/f_string.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/derive_key.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/tls_cbc.c +1 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu-arm-linux.c +7 -5
- data/third_party/boringssl-with-bazel/src/crypto/cpu-intel.c +13 -4
- data/third_party/boringssl-with-bazel/src/crypto/crypto.c +11 -0
- data/third_party/boringssl-with-bazel/src/{third_party/fiat → crypto/curve25519}/curve25519.c +18 -26
- data/third_party/boringssl-with-bazel/src/{third_party/fiat → crypto/curve25519}/curve25519_tables.h +13 -21
- data/third_party/boringssl-with-bazel/src/{third_party/fiat → crypto/curve25519}/internal.h +14 -22
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/spake25519.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/dh/dh.c +15 -0
- data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa.c +10 -0
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/hash_to_curve.c +385 -0
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/internal.h +56 -0
- data/third_party/boringssl-with-bazel/src/crypto/ecdh_extra/ecdh_extra.c +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/err/err.c +33 -32
- data/third_party/boringssl-with-bazel/src/crypto/evp/evp_asn1.c +143 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes_nohw.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/mode_wrappers.c +17 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.c +2 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/exponentiation.c +3 -3
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/internal.h +25 -12
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery.c +8 -8
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/mul.c +30 -154
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digests.c +16 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec.c +289 -117
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_key.c +13 -27
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_montgomery.c +96 -55
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/felem.c +25 -7
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/internal.h +434 -161
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/oct.c +63 -71
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p224-64.c +18 -25
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-x86_64-table.h +9481 -9485
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-x86_64.c +104 -122
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256.c +740 -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 +90 -11
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple.c +125 -148
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple_mul.c +189 -3
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/util.c +3 -3
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/wnaf.c +61 -18
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdh/ecdh.c +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/ecdsa.c +20 -5
- 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 +41 -5
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/rand.c +32 -17
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/urandom.c +24 -114
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/blinding.c +4 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/internal.h +1 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa.c +51 -38
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.c +15 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.c +62 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha512.c +44 -35
- data/third_party/boringssl-with-bazel/src/crypto/mem.c +47 -16
- data/third_party/boringssl-with-bazel/src/crypto/obj/obj_dat.h +15 -1
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/internal.h +7 -0
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.c +36 -5
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/deterministic.c +6 -10
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/windows.c +16 -0
- data/third_party/boringssl-with-bazel/src/crypto/thread_pthread.c +4 -0
- data/third_party/boringssl-with-bazel/src/crypto/thread_win.c +4 -0
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/internal.h +249 -0
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/pmbtoken.c +1227 -0
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/trust_token.c +682 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/a_strex.c +4 -4
- data/third_party/boringssl-with-bazel/src/crypto/x509/algorithm.c +8 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/asn1_gen.c +4 -4
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509.c +0 -67
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_cmp.c +13 -6
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_req.c +10 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_set.c +57 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_trs.c +4 -1
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c +33 -9
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509cset.c +25 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509name.c +4 -3
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_crl.c +35 -13
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_pubkey.c +0 -154
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509.c +28 -6
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/internal.h +5 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_purp.c +74 -35
- data/third_party/boringssl-with-bazel/src/include/openssl/aes.h +16 -4
- data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +22 -22
- data/third_party/boringssl-with-bazel/src/include/openssl/base.h +6 -2
- data/third_party/boringssl-with-bazel/src/include/openssl/crypto.h +9 -4
- data/third_party/boringssl-with-bazel/src/include/openssl/dh.h +20 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/digest.h +1 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/dsa.h +16 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/ecdsa.h +6 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/err.h +2 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/evp.h +69 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/nid.h +5 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/rand.h +3 -17
- data/third_party/boringssl-with-bazel/src/include/openssl/rsa.h +31 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/sha.h +26 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +191 -79
- data/third_party/boringssl-with-bazel/src/include/openssl/tls1.h +1 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/trust_token.h +282 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +791 -715
- data/third_party/boringssl-with-bazel/src/include/openssl/x509_vfy.h +1 -0
- data/third_party/boringssl-with-bazel/src/ssl/d1_both.cc +0 -4
- data/third_party/boringssl-with-bazel/src/ssl/d1_lib.cc +3 -3
- data/third_party/boringssl-with-bazel/src/ssl/dtls_method.cc +13 -4
- data/third_party/boringssl-with-bazel/src/ssl/handoff.cc +146 -57
- data/third_party/boringssl-with-bazel/src/ssl/handshake.cc +23 -5
- data/third_party/boringssl-with-bazel/src/ssl/handshake_client.cc +30 -22
- data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +21 -4
- data/third_party/boringssl-with-bazel/src/ssl/internal.h +74 -54
- data/third_party/boringssl-with-bazel/src/ssl/s3_both.cc +10 -10
- data/third_party/boringssl-with-bazel/src/ssl/s3_lib.cc +2 -2
- data/third_party/boringssl-with-bazel/src/ssl/s3_pkt.cc +21 -21
- data/third_party/boringssl-with-bazel/src/ssl/ssl_asn1.cc +29 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_cert.cc +4 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +34 -1
- data/third_party/boringssl-with-bazel/src/ssl/ssl_privkey.cc +13 -2
- data/third_party/boringssl-with-bazel/src/ssl/ssl_session.cc +44 -5
- data/third_party/boringssl-with-bazel/src/ssl/ssl_stat.cc +6 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_versions.cc +5 -5
- data/third_party/boringssl-with-bazel/src/ssl/t1_enc.cc +51 -26
- data/third_party/boringssl-with-bazel/src/ssl/t1_lib.cc +47 -53
- data/third_party/boringssl-with-bazel/src/ssl/tls13_both.cc +1 -1
- data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +129 -48
- data/third_party/boringssl-with-bazel/src/ssl/tls13_enc.cc +23 -75
- data/third_party/boringssl-with-bazel/src/ssl/tls13_server.cc +55 -22
- data/third_party/boringssl-with-bazel/src/ssl/tls_method.cc +63 -25
- data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_32.h +245 -175
- data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_64.h +135 -75
- data/third_party/boringssl-with-bazel/src/third_party/fiat/p256_32.h +1593 -1672
- data/third_party/boringssl-with-bazel/src/third_party/fiat/p256_64.h +512 -503
- data/third_party/re2/re2/bitmap256.h +117 -0
- data/third_party/re2/re2/bitstate.cc +385 -0
- data/third_party/re2/re2/compile.cc +1279 -0
- data/third_party/re2/re2/dfa.cc +2130 -0
- data/third_party/re2/re2/filtered_re2.cc +121 -0
- data/third_party/re2/re2/filtered_re2.h +109 -0
- data/third_party/re2/re2/mimics_pcre.cc +197 -0
- data/third_party/re2/re2/nfa.cc +713 -0
- data/third_party/re2/re2/onepass.cc +623 -0
- data/third_party/re2/re2/parse.cc +2464 -0
- data/third_party/re2/re2/perl_groups.cc +119 -0
- data/third_party/re2/re2/pod_array.h +55 -0
- data/third_party/re2/re2/prefilter.cc +710 -0
- data/third_party/re2/re2/prefilter.h +108 -0
- data/third_party/re2/re2/prefilter_tree.cc +407 -0
- data/third_party/re2/re2/prefilter_tree.h +139 -0
- data/third_party/re2/re2/prog.cc +988 -0
- data/third_party/re2/re2/prog.h +436 -0
- data/third_party/re2/re2/re2.cc +1362 -0
- data/third_party/re2/re2/re2.h +1002 -0
- data/third_party/re2/re2/regexp.cc +980 -0
- data/third_party/re2/re2/regexp.h +659 -0
- data/third_party/re2/re2/set.cc +154 -0
- data/third_party/re2/re2/set.h +80 -0
- data/third_party/re2/re2/simplify.cc +657 -0
- data/third_party/re2/re2/sparse_array.h +392 -0
- data/third_party/re2/re2/sparse_set.h +264 -0
- data/third_party/re2/re2/stringpiece.cc +65 -0
- data/third_party/re2/re2/stringpiece.h +210 -0
- data/third_party/re2/re2/tostring.cc +351 -0
- data/third_party/re2/re2/unicode_casefold.cc +582 -0
- data/third_party/re2/re2/unicode_casefold.h +78 -0
- data/third_party/re2/re2/unicode_groups.cc +6269 -0
- data/third_party/re2/re2/unicode_groups.h +67 -0
- data/third_party/re2/re2/walker-inl.h +246 -0
- data/third_party/re2/util/benchmark.h +156 -0
- data/third_party/re2/util/flags.h +26 -0
- data/third_party/re2/util/logging.h +109 -0
- data/third_party/re2/util/malloc_counter.h +19 -0
- data/third_party/re2/util/mix.h +41 -0
- data/third_party/re2/util/mutex.h +148 -0
- data/third_party/re2/util/pcre.cc +1025 -0
- data/third_party/re2/util/pcre.h +681 -0
- data/third_party/re2/util/rune.cc +260 -0
- data/third_party/re2/util/strutil.cc +149 -0
- data/third_party/re2/util/strutil.h +21 -0
- data/third_party/re2/util/test.h +50 -0
- data/third_party/re2/util/utf.h +44 -0
- data/third_party/re2/util/util.h +42 -0
- data/third_party/upb/upb/decode.c +467 -504
- data/third_party/upb/upb/encode.c +163 -121
- data/third_party/upb/upb/msg.c +130 -64
- data/third_party/upb/upb/msg.h +418 -14
- data/third_party/upb/upb/port_def.inc +35 -6
- data/third_party/upb/upb/port_undef.inc +8 -1
- data/third_party/upb/upb/table.c +53 -75
- data/third_party/upb/upb/table.int.h +11 -43
- data/third_party/upb/upb/upb.c +148 -124
- data/third_party/upb/upb/upb.h +65 -147
- data/third_party/upb/upb/upb.hpp +86 -0
- metadata +175 -47
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds.cc +0 -1754
- data/src/core/lib/gprpp/string_view.h +0 -60
- data/src/core/tsi/grpc_shadow_boringssl.h +0 -3311
- data/third_party/boringssl-with-bazel/src/third_party/fiat/p256.c +0 -1063
- data/third_party/upb/upb/generated_util.h +0 -105
@@ -0,0 +1,43 @@
|
|
1
|
+
/*
|
2
|
+
*
|
3
|
+
* Copyright 2020 gRPC authors.
|
4
|
+
*
|
5
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
* you may not use this file except in compliance with the License.
|
7
|
+
* You may obtain a copy of the License at
|
8
|
+
*
|
9
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
*
|
11
|
+
* Unless required by applicable law or agreed to in writing, software
|
12
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
* See the License for the specific language governing permissions and
|
15
|
+
* limitations under the License.
|
16
|
+
*
|
17
|
+
*/
|
18
|
+
|
19
|
+
#ifndef GRPC_CORE_LIB_IOMGR_EV_APPLE_H
|
20
|
+
#define GRPC_CORE_LIB_IOMGR_EV_APPLE_H
|
21
|
+
|
22
|
+
#include <grpc/support/port_platform.h>
|
23
|
+
|
24
|
+
#ifdef GRPC_APPLE_EV
|
25
|
+
|
26
|
+
#include <CoreFoundation/CoreFoundation.h>
|
27
|
+
|
28
|
+
#include "src/core/lib/iomgr/pollset.h"
|
29
|
+
#include "src/core/lib/iomgr/pollset_set.h"
|
30
|
+
|
31
|
+
void grpc_apple_register_read_stream(CFReadStreamRef read_stream,
|
32
|
+
dispatch_queue_t dispatch_queue);
|
33
|
+
|
34
|
+
void grpc_apple_register_write_stream(CFWriteStreamRef write_stream,
|
35
|
+
dispatch_queue_t dispatch_queue);
|
36
|
+
|
37
|
+
extern grpc_pollset_vtable grpc_apple_pollset_vtable;
|
38
|
+
|
39
|
+
extern grpc_pollset_set_vtable grpc_apple_pollset_set_vtable;
|
40
|
+
|
41
|
+
#endif
|
42
|
+
|
43
|
+
#endif
|
@@ -38,9 +38,15 @@
|
|
38
38
|
#include <sys/socket.h>
|
39
39
|
#include <unistd.h>
|
40
40
|
|
41
|
+
#include <string>
|
42
|
+
#include <vector>
|
43
|
+
|
44
|
+
#include "absl/strings/str_cat.h"
|
45
|
+
#include "absl/strings/str_format.h"
|
46
|
+
#include "absl/strings/str_join.h"
|
47
|
+
|
41
48
|
#include <grpc/support/alloc.h>
|
42
49
|
#include <grpc/support/cpu.h>
|
43
|
-
#include <grpc/support/string_util.h>
|
44
50
|
|
45
51
|
#include "src/core/lib/debug/stats.h"
|
46
52
|
#include "src/core/lib/gpr/string.h"
|
@@ -346,16 +352,14 @@ static grpc_fd* fd_create(int fd, const char* name, bool track_err) {
|
|
346
352
|
|
347
353
|
new_fd->freelist_next = nullptr;
|
348
354
|
|
349
|
-
|
350
|
-
|
351
|
-
grpc_iomgr_register_object(&new_fd->iomgr_object, fd_name);
|
355
|
+
std::string fd_name = absl::StrCat(name, " fd=", fd);
|
356
|
+
grpc_iomgr_register_object(&new_fd->iomgr_object, fd_name.c_str());
|
352
357
|
fork_fd_list_add_grpc_fd(new_fd);
|
353
358
|
#ifndef NDEBUG
|
354
359
|
if (GRPC_TRACE_FLAG_ENABLED(grpc_trace_fd_refcount)) {
|
355
|
-
gpr_log(GPR_DEBUG, "FD %d %p create %s", fd, new_fd, fd_name);
|
360
|
+
gpr_log(GPR_DEBUG, "FD %d %p create %s", fd, new_fd, fd_name.c_str());
|
356
361
|
}
|
357
362
|
#endif
|
358
|
-
gpr_free(fd_name);
|
359
363
|
|
360
364
|
struct epoll_event ev;
|
361
365
|
ev.events = static_cast<uint32_t>(EPOLLIN | EPOLLOUT | EPOLLET);
|
@@ -1064,30 +1068,23 @@ static grpc_error* pollset_kick(grpc_pollset* pollset,
|
|
1064
1068
|
GRPC_STATS_INC_POLLSET_KICK();
|
1065
1069
|
grpc_error* ret_err = GRPC_ERROR_NONE;
|
1066
1070
|
if (GRPC_TRACE_FLAG_ENABLED(grpc_polling_trace)) {
|
1067
|
-
|
1068
|
-
|
1069
|
-
|
1070
|
-
|
1071
|
-
|
1072
|
-
(void*)gpr_tls_get(&g_current_thread_worker),
|
1073
|
-
pollset->root_worker);
|
1074
|
-
gpr_strvec_add(&log, tmp);
|
1071
|
+
std::vector<std::string> log;
|
1072
|
+
log.push_back(absl::StrFormat(
|
1073
|
+
"PS:%p KICK:%p curps=%p curworker=%p root=%p", pollset, specific_worker,
|
1074
|
+
(void*)gpr_tls_get(&g_current_thread_pollset),
|
1075
|
+
(void*)gpr_tls_get(&g_current_thread_worker), pollset->root_worker));
|
1075
1076
|
if (pollset->root_worker != nullptr) {
|
1076
|
-
|
1077
|
-
|
1078
|
-
|
1079
|
-
|
1080
|
-
|
1077
|
+
log.push_back(absl::StrFormat(
|
1078
|
+
" {kick_state=%s next=%p {kick_state=%s}}",
|
1079
|
+
kick_state_string(pollset->root_worker->state),
|
1080
|
+
pollset->root_worker->next,
|
1081
|
+
kick_state_string(pollset->root_worker->next->state)));
|
1081
1082
|
}
|
1082
1083
|
if (specific_worker != nullptr) {
|
1083
|
-
|
1084
|
-
|
1085
|
-
gpr_strvec_add(&log, tmp);
|
1084
|
+
log.push_back(absl::StrFormat(" worker_kick_state=%s",
|
1085
|
+
kick_state_string(specific_worker->state)));
|
1086
1086
|
}
|
1087
|
-
|
1088
|
-
gpr_strvec_destroy(&log);
|
1089
|
-
gpr_log(GPR_DEBUG, "%s", tmp);
|
1090
|
-
gpr_free(tmp);
|
1087
|
+
gpr_log(GPR_DEBUG, "%s", absl::StrJoin(log, "").c_str());
|
1091
1088
|
}
|
1092
1089
|
|
1093
1090
|
if (specific_worker == nullptr) {
|
@@ -1116,9 +1113,8 @@ static grpc_error* pollset_kick(grpc_pollset* pollset,
|
|
1116
1113
|
}
|
1117
1114
|
SET_KICK_STATE(next_worker, KICKED);
|
1118
1115
|
goto done;
|
1119
|
-
} else if (root_worker ==
|
1120
|
-
|
1121
|
-
// there is no next worker
|
1116
|
+
} else if (root_worker == next_worker && // only try and wake up a poller
|
1117
|
+
// if there is no next worker
|
1122
1118
|
root_worker == (grpc_pollset_worker*)gpr_atm_no_barrier_load(
|
1123
1119
|
&g_active_poller)) {
|
1124
1120
|
GRPC_STATS_INC_POLLSET_KICK_WAKEUP_FD();
|
@@ -38,10 +38,14 @@
|
|
38
38
|
#include <sys/syscall.h>
|
39
39
|
#include <unistd.h>
|
40
40
|
|
41
|
-
#include <
|
42
|
-
#include <grpc/support/string_util.h>
|
41
|
+
#include <string>
|
43
42
|
|
44
43
|
#include "absl/container/inlined_vector.h"
|
44
|
+
#include "absl/strings/str_cat.h"
|
45
|
+
#include "absl/strings/str_format.h"
|
46
|
+
|
47
|
+
#include <grpc/support/alloc.h>
|
48
|
+
|
45
49
|
#include "src/core/lib/debug/stats.h"
|
46
50
|
#include "src/core/lib/gpr/spinlock.h"
|
47
51
|
#include "src/core/lib/gpr/tls.h"
|
@@ -63,10 +67,6 @@
|
|
63
67
|
//#define GRPC_EPOLLEX_CREATE_WORKERS_ON_HEAP 1
|
64
68
|
|
65
69
|
#define MAX_EPOLL_EVENTS 100
|
66
|
-
// TODO(juanlishen): We use a greater-than-one value here as a workaround fix to
|
67
|
-
// a keepalive ping timeout issue. We may want to revert https://github
|
68
|
-
// .com/grpc/grpc/pull/14943 once we figure out the root cause.
|
69
|
-
#define MAX_EPOLL_EVENTS_HANDLED_EACH_POLL_CALL 16
|
70
70
|
#define MAX_FDS_IN_CACHE 32
|
71
71
|
|
72
72
|
grpc_core::DebugOnlyTraceFlag grpc_trace_pollable_refcount(false,
|
@@ -124,11 +124,10 @@ static const char* pollable_type_string(pollable_type t) {
|
|
124
124
|
return "<invalid>";
|
125
125
|
}
|
126
126
|
|
127
|
-
static
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
return out;
|
127
|
+
static std::string pollable_desc(pollable* p) {
|
128
|
+
return absl::StrFormat("type=%s epfd=%d wakeup=%d",
|
129
|
+
pollable_type_string(p->type), p->epfd,
|
130
|
+
p->wakeup.read_fd);
|
132
131
|
}
|
133
132
|
|
134
133
|
/// Shared empty pollable - used by pollset to poll on until the first fd is
|
@@ -170,15 +169,13 @@ struct grpc_fd {
|
|
170
169
|
write_closure.InitEvent();
|
171
170
|
error_closure.InitEvent();
|
172
171
|
|
173
|
-
|
174
|
-
|
175
|
-
grpc_iomgr_register_object(&iomgr_object, fd_name);
|
172
|
+
std::string fd_name = absl::StrCat(name, " fd=", fd);
|
173
|
+
grpc_iomgr_register_object(&iomgr_object, fd_name.c_str());
|
176
174
|
#ifndef NDEBUG
|
177
175
|
if (GRPC_TRACE_FLAG_ENABLED(grpc_trace_fd_refcount)) {
|
178
|
-
gpr_log(GPR_DEBUG, "FD %d %p create %s", fd, this, fd_name);
|
176
|
+
gpr_log(GPR_DEBUG, "FD %d %p create %s", fd, this, fd_name.c_str());
|
179
177
|
}
|
180
178
|
#endif
|
181
|
-
gpr_free(fd_name);
|
182
179
|
}
|
183
180
|
|
184
181
|
// This is really the dtor, but the poller threads waking up from
|
@@ -263,11 +260,10 @@ static void fd_global_shutdown(void);
|
|
263
260
|
* Pollset Declarations
|
264
261
|
*/
|
265
262
|
|
266
|
-
|
263
|
+
struct pwlink {
|
267
264
|
grpc_pollset_worker* next;
|
268
265
|
grpc_pollset_worker* prev;
|
269
|
-
}
|
270
|
-
|
266
|
+
};
|
271
267
|
typedef enum { PWLINK_POLLABLE = 0, PWLINK_POLLSET, PWLINK_COUNT } pwlinks;
|
272
268
|
|
273
269
|
struct grpc_pollset_worker {
|
@@ -873,8 +869,6 @@ static grpc_error* pollable_process_events(grpc_pollset* pollset,
|
|
873
869
|
(pollable_obj->event_count - pollable_obj->event_cursor) / worker_count;
|
874
870
|
if (handle_count == 0) {
|
875
871
|
handle_count = 1;
|
876
|
-
} else if (handle_count > MAX_EPOLL_EVENTS_HANDLED_EACH_POLL_CALL) {
|
877
|
-
handle_count = MAX_EPOLL_EVENTS_HANDLED_EACH_POLL_CALL;
|
878
872
|
}
|
879
873
|
grpc_error* error = GRPC_ERROR_NONE;
|
880
874
|
for (int i = 0; (drain || i < handle_count) &&
|
@@ -935,9 +929,8 @@ static grpc_error* pollable_epoll(pollable* p, grpc_millis deadline) {
|
|
935
929
|
int timeout = poll_deadline_to_millis_timeout(deadline);
|
936
930
|
|
937
931
|
if (GRPC_TRACE_FLAG_ENABLED(grpc_polling_trace)) {
|
938
|
-
|
939
|
-
|
940
|
-
gpr_free(desc);
|
932
|
+
gpr_log(GPR_INFO, "POLLABLE:%p[%s] poll for %dms", p,
|
933
|
+
pollable_desc(p).c_str(), timeout);
|
941
934
|
}
|
942
935
|
|
943
936
|
if (timeout != 0) {
|
@@ -32,9 +32,12 @@
|
|
32
32
|
#include <sys/socket.h>
|
33
33
|
#include <unistd.h>
|
34
34
|
|
35
|
+
#include <string>
|
36
|
+
|
37
|
+
#include "absl/strings/str_cat.h"
|
38
|
+
|
35
39
|
#include <grpc/support/alloc.h>
|
36
40
|
#include <grpc/support/log.h>
|
37
|
-
#include <grpc/support/string_util.h>
|
38
41
|
|
39
42
|
#include "src/core/lib/debug/stats.h"
|
40
43
|
#include "src/core/lib/gpr/murmur_hash.h"
|
@@ -307,9 +310,9 @@ static void fork_fd_list_add_wakeup_fd(grpc_cached_wakeup_fd* fd) {
|
|
307
310
|
}
|
308
311
|
}
|
309
312
|
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
+
/*******************************************************************************
|
314
|
+
* fd_posix.c
|
315
|
+
*/
|
313
316
|
|
314
317
|
#ifndef NDEBUG
|
315
318
|
#define REF_BY(fd, n, reason) ref_by(fd, n, reason, __FILE__, __LINE__)
|
@@ -381,10 +384,8 @@ static grpc_fd* fd_create(int fd, const char* name, bool track_err) {
|
|
381
384
|
r->released = 0;
|
382
385
|
gpr_atm_no_barrier_store(&r->pollhup, 0);
|
383
386
|
|
384
|
-
|
385
|
-
|
386
|
-
grpc_iomgr_register_object(&r->iomgr_object, name2);
|
387
|
-
gpr_free(name2);
|
387
|
+
std::string name2 = absl::StrCat(name, " fd=", fd);
|
388
|
+
grpc_iomgr_register_object(&r->iomgr_object, name2.c_str());
|
388
389
|
fork_fd_list_add_grpc_fd(r);
|
389
390
|
return r;
|
390
391
|
}
|
@@ -37,6 +37,7 @@
|
|
37
37
|
#include "src/core/lib/iomgr/ev_epollex_linux.h"
|
38
38
|
#include "src/core/lib/iomgr/ev_poll_posix.h"
|
39
39
|
#include "src/core/lib/iomgr/internal_errqueue.h"
|
40
|
+
#include "src/core/lib/iomgr/iomgr.h"
|
40
41
|
|
41
42
|
GPR_GLOBAL_CONFIG_DEFINE_STRING(
|
42
43
|
grpc_poll_strategy, "all",
|
@@ -81,11 +82,10 @@ static const char* g_poll_strategy_name = nullptr;
|
|
81
82
|
typedef const grpc_event_engine_vtable* (*event_engine_factory_fn)(
|
82
83
|
bool explicit_request);
|
83
84
|
|
84
|
-
|
85
|
+
struct event_engine_factory {
|
85
86
|
const char* name;
|
86
87
|
event_engine_factory_fn factory;
|
87
|
-
}
|
88
|
-
|
88
|
+
};
|
89
89
|
namespace {
|
90
90
|
|
91
91
|
grpc_poll_function_type real_poll_function;
|
@@ -108,6 +108,7 @@ const grpc_event_engine_vtable* init_non_polling(bool explicit_request) {
|
|
108
108
|
auto ret = grpc_init_poll_posix(explicit_request);
|
109
109
|
real_poll_function = grpc_poll_function;
|
110
110
|
grpc_poll_function = dummy_poll;
|
111
|
+
grpc_iomgr_mark_non_polling_internal();
|
111
112
|
|
112
113
|
return ret;
|
113
114
|
}
|
@@ -21,6 +21,8 @@
|
|
21
21
|
|
22
22
|
#include <grpc/support/port_platform.h>
|
23
23
|
|
24
|
+
#include <limits>
|
25
|
+
|
24
26
|
#include <grpc/impl/codegen/grpc_types.h>
|
25
27
|
#include <grpc/support/atm.h>
|
26
28
|
#include <grpc/support/cpu.h>
|
@@ -132,7 +134,12 @@ class ExecCtx {
|
|
132
134
|
ExecCtx(const ExecCtx&) = delete;
|
133
135
|
ExecCtx& operator=(const ExecCtx&) = delete;
|
134
136
|
|
135
|
-
unsigned starting_cpu()
|
137
|
+
unsigned starting_cpu() {
|
138
|
+
if (starting_cpu_ == std::numeric_limits<unsigned>::max()) {
|
139
|
+
starting_cpu_ = gpr_cpu_current_cpu();
|
140
|
+
}
|
141
|
+
return starting_cpu_;
|
142
|
+
}
|
136
143
|
|
137
144
|
struct CombinerData {
|
138
145
|
/* currently active combiner: updated only via combiner.c */
|
@@ -239,7 +246,7 @@ class ExecCtx {
|
|
239
246
|
CombinerData combiner_data_ = {nullptr, nullptr};
|
240
247
|
uintptr_t flags_;
|
241
248
|
|
242
|
-
unsigned starting_cpu_ =
|
249
|
+
unsigned starting_cpu_ = std::numeric_limits<unsigned>::max();
|
243
250
|
|
244
251
|
bool now_is_valid_ = false;
|
245
252
|
grpc_millis now_ = 0;
|
@@ -357,6 +364,11 @@ class ApplicationCallbackExecCtx {
|
|
357
364
|
/** Global shutdown for ApplicationCallbackExecCtx. Called by init. */
|
358
365
|
static void GlobalShutdown(void) { gpr_tls_destroy(&callback_exec_ctx_); }
|
359
366
|
|
367
|
+
static bool Available() {
|
368
|
+
return reinterpret_cast<ApplicationCallbackExecCtx*>(
|
369
|
+
gpr_tls_get(&callback_exec_ctx_)) != nullptr;
|
370
|
+
}
|
371
|
+
|
360
372
|
private:
|
361
373
|
uintptr_t flags_{0u};
|
362
374
|
grpc_experimental_completion_queue_functor* head_{nullptr};
|
data/src/core/lib/iomgr/iomgr.cc
CHANGED
@@ -31,6 +31,7 @@
|
|
31
31
|
|
32
32
|
#include "src/core/lib/gpr/string.h"
|
33
33
|
#include "src/core/lib/gpr/useful.h"
|
34
|
+
#include "src/core/lib/gprpp/atomic.h"
|
34
35
|
#include "src/core/lib/gprpp/global_config.h"
|
35
36
|
#include "src/core/lib/gprpp/thd.h"
|
36
37
|
#include "src/core/lib/iomgr/buffer_list.h"
|
@@ -50,6 +51,7 @@ static gpr_cv g_rcv;
|
|
50
51
|
static int g_shutdown;
|
51
52
|
static grpc_iomgr_object g_root_object;
|
52
53
|
static bool g_grpc_abort_on_leaks;
|
54
|
+
static grpc_core::Atomic<bool> g_iomgr_non_polling{false};
|
53
55
|
|
54
56
|
void grpc_iomgr_init() {
|
55
57
|
grpc_core::ExecCtx exec_ctx;
|
@@ -192,3 +194,11 @@ void grpc_iomgr_unregister_object(grpc_iomgr_object* obj) {
|
|
192
194
|
}
|
193
195
|
|
194
196
|
bool grpc_iomgr_abort_on_leaks(void) { return g_grpc_abort_on_leaks; }
|
197
|
+
|
198
|
+
bool grpc_iomgr_non_polling() {
|
199
|
+
return g_iomgr_non_polling.Load(grpc_core::MemoryOrder::SEQ_CST);
|
200
|
+
}
|
201
|
+
|
202
|
+
void grpc_iomgr_mark_non_polling_internal() {
|
203
|
+
g_iomgr_non_polling.Store(true, grpc_core::MemoryOrder::SEQ_CST);
|
204
|
+
}
|
data/src/core/lib/iomgr/iomgr.h
CHANGED
@@ -45,6 +45,16 @@ void grpc_iomgr_shutdown_background_closure();
|
|
45
45
|
*/
|
46
46
|
bool grpc_iomgr_run_in_background();
|
47
47
|
|
48
|
+
/* Returns true if polling engine is non-polling, false otherwise.
|
49
|
+
* Currently only 'none' is non-polling.
|
50
|
+
*/
|
51
|
+
bool grpc_iomgr_non_polling();
|
52
|
+
|
53
|
+
/* Mark the polling engine as non-polling. For internal use only.
|
54
|
+
* Currently only 'none' is non-polling.
|
55
|
+
*/
|
56
|
+
void grpc_iomgr_mark_non_polling_internal();
|
57
|
+
|
48
58
|
/** Returns true if the caller is a worker thread for any background poller. */
|
49
59
|
bool grpc_iomgr_is_any_background_poller_thread();
|
50
60
|
|
@@ -16,6 +16,20 @@
|
|
16
16
|
*
|
17
17
|
*/
|
18
18
|
|
19
|
+
/// CFStream is build-enabled on iOS by default and disabled by default on other
|
20
|
+
/// platforms (see port_platform.h). To enable CFStream build on another
|
21
|
+
/// platform, the users need to define macro "GRPC_CFSTREAM=1" when building
|
22
|
+
/// gRPC.
|
23
|
+
///
|
24
|
+
/// When CFStream is to be built (either by default on iOS or by macro on other
|
25
|
+
/// platforms), the users can disable CFStream with environment variable
|
26
|
+
/// "grpc_cfstream=0". This will let gRPC to fallback to use POSIX sockets. In
|
27
|
+
/// addition, the users may choose to use an alternative CFRunLoop based pollset
|
28
|
+
/// "ev_apple" by setting environment variable "GRPC_CFSTREAM_RUN_LOOP=1". This
|
29
|
+
/// pollset resolves a bug from Apple when CFStream streams dispatch events to
|
30
|
+
/// dispatch queues. The caveat of this pollset is that users may not be able to
|
31
|
+
/// run a gRPC server in the same process.
|
32
|
+
|
19
33
|
#include <grpc/support/port_platform.h>
|
20
34
|
|
21
35
|
#include "src/core/lib/iomgr/port.h"
|
@@ -23,6 +37,7 @@
|
|
23
37
|
#ifdef GRPC_CFSTREAM_IOMGR
|
24
38
|
|
25
39
|
#include "src/core/lib/debug/trace.h"
|
40
|
+
#include "src/core/lib/iomgr/ev_apple.h"
|
26
41
|
#include "src/core/lib/iomgr/ev_posix.h"
|
27
42
|
#include "src/core/lib/iomgr/iomgr_internal.h"
|
28
43
|
#include "src/core/lib/iomgr/iomgr_posix.h"
|
@@ -33,6 +48,7 @@
|
|
33
48
|
#include "src/core/lib/iomgr/timer.h"
|
34
49
|
|
35
50
|
static const char* grpc_cfstream_env_var = "grpc_cfstream";
|
51
|
+
static const char* grpc_cfstream_run_loop_env_var = "GRPC_CFSTREAM_RUN_LOOP";
|
36
52
|
|
37
53
|
extern grpc_tcp_server_vtable grpc_posix_tcp_server_vtable;
|
38
54
|
extern grpc_tcp_client_vtable grpc_posix_tcp_client_vtable;
|
@@ -42,6 +58,33 @@ extern grpc_pollset_vtable grpc_posix_pollset_vtable;
|
|
42
58
|
extern grpc_pollset_set_vtable grpc_posix_pollset_set_vtable;
|
43
59
|
extern grpc_address_resolver_vtable grpc_posix_resolver_vtable;
|
44
60
|
|
61
|
+
static void apple_iomgr_platform_init(void) { grpc_pollset_global_init(); }
|
62
|
+
|
63
|
+
static void apple_iomgr_platform_flush(void) {}
|
64
|
+
|
65
|
+
static void apple_iomgr_platform_shutdown(void) {
|
66
|
+
grpc_pollset_global_shutdown();
|
67
|
+
}
|
68
|
+
|
69
|
+
static void apple_iomgr_platform_shutdown_background_closure(void) {}
|
70
|
+
|
71
|
+
static bool apple_iomgr_platform_is_any_background_poller_thread(void) {
|
72
|
+
return false;
|
73
|
+
}
|
74
|
+
|
75
|
+
static bool apple_iomgr_platform_add_closure_to_background_poller(
|
76
|
+
grpc_closure* closure, grpc_error* error) {
|
77
|
+
return false;
|
78
|
+
}
|
79
|
+
|
80
|
+
static grpc_iomgr_platform_vtable apple_vtable = {
|
81
|
+
apple_iomgr_platform_init,
|
82
|
+
apple_iomgr_platform_flush,
|
83
|
+
apple_iomgr_platform_shutdown,
|
84
|
+
apple_iomgr_platform_shutdown_background_closure,
|
85
|
+
apple_iomgr_platform_is_any_background_poller_thread,
|
86
|
+
apple_iomgr_platform_add_closure_to_background_poller};
|
87
|
+
|
45
88
|
static void iomgr_platform_init(void) {
|
46
89
|
grpc_wakeup_fd_global_init();
|
47
90
|
grpc_event_engine_init();
|
@@ -76,32 +119,53 @@ static grpc_iomgr_platform_vtable vtable = {
|
|
76
119
|
iomgr_platform_add_closure_to_background_poller};
|
77
120
|
|
78
121
|
void grpc_set_default_iomgr_platform() {
|
79
|
-
char*
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
//
|
84
|
-
|
85
|
-
|
86
|
-
|
122
|
+
char* enable_cfstream_str = getenv(grpc_cfstream_env_var);
|
123
|
+
bool enable_cfstream =
|
124
|
+
enable_cfstream_str == nullptr || enable_cfstream_str[0] != '0';
|
125
|
+
char* enable_cfstream_run_loop_str = getenv(grpc_cfstream_run_loop_env_var);
|
126
|
+
// CFStream run-loop is disabled by default. The user has to enable it
|
127
|
+
// explicitly with environment variable.
|
128
|
+
bool enable_cfstream_run_loop = enable_cfstream_run_loop_str != nullptr &&
|
129
|
+
enable_cfstream_run_loop_str[0] == '1';
|
130
|
+
if (!enable_cfstream) {
|
131
|
+
// Use POSIX sockets for both client and server
|
132
|
+
grpc_set_tcp_client_impl(&grpc_posix_tcp_client_vtable);
|
133
|
+
grpc_set_tcp_server_impl(&grpc_posix_tcp_server_vtable);
|
134
|
+
grpc_set_pollset_vtable(&grpc_posix_pollset_vtable);
|
135
|
+
grpc_set_pollset_set_vtable(&grpc_posix_pollset_set_vtable);
|
136
|
+
grpc_set_iomgr_platform_vtable(&vtable);
|
137
|
+
} else if (enable_cfstream && !enable_cfstream_run_loop) {
|
138
|
+
// Use CFStream with dispatch queue for client; use POSIX sockets for server
|
139
|
+
grpc_set_tcp_client_impl(&grpc_cfstream_client_vtable);
|
140
|
+
grpc_set_tcp_server_impl(&grpc_posix_tcp_server_vtable);
|
141
|
+
grpc_set_pollset_vtable(&grpc_posix_pollset_vtable);
|
142
|
+
grpc_set_pollset_set_vtable(&grpc_posix_pollset_set_vtable);
|
143
|
+
grpc_set_iomgr_platform_vtable(&vtable);
|
144
|
+
} else {
|
145
|
+
// Use CFStream with CFRunLoop for client; server not supported
|
146
|
+
grpc_set_tcp_client_impl(&grpc_cfstream_client_vtable);
|
147
|
+
grpc_set_pollset_vtable(&grpc_apple_pollset_vtable);
|
148
|
+
grpc_set_pollset_set_vtable(&grpc_apple_pollset_set_vtable);
|
149
|
+
grpc_set_iomgr_platform_vtable(&apple_vtable);
|
87
150
|
}
|
88
|
-
#else
|
89
|
-
if (enable_cfstream != nullptr && enable_cfstream[0] == '1') {
|
90
|
-
client_vtable = &grpc_cfstream_client_vtable;
|
91
|
-
}
|
92
|
-
#endif
|
93
|
-
|
94
|
-
grpc_set_tcp_client_impl(client_vtable);
|
95
|
-
grpc_set_tcp_server_impl(&grpc_posix_tcp_server_vtable);
|
96
151
|
grpc_set_timer_impl(&grpc_generic_timer_vtable);
|
97
|
-
grpc_set_pollset_vtable(&grpc_posix_pollset_vtable);
|
98
|
-
grpc_set_pollset_set_vtable(&grpc_posix_pollset_set_vtable);
|
99
152
|
grpc_set_resolver_impl(&grpc_posix_resolver_vtable);
|
100
|
-
grpc_set_iomgr_platform_vtable(&vtable);
|
101
153
|
}
|
102
154
|
|
103
155
|
bool grpc_iomgr_run_in_background() {
|
104
|
-
|
156
|
+
char* enable_cfstream_str = getenv(grpc_cfstream_env_var);
|
157
|
+
bool enable_cfstream =
|
158
|
+
enable_cfstream_str == nullptr || enable_cfstream_str[0] != '0';
|
159
|
+
char* enable_cfstream_run_loop_str = getenv(grpc_cfstream_run_loop_env_var);
|
160
|
+
// CFStream run-loop is disabled by default. The user has to enable it
|
161
|
+
// explicitly with environment variable.
|
162
|
+
bool enable_cfstream_run_loop = enable_cfstream_run_loop_str != nullptr &&
|
163
|
+
enable_cfstream_run_loop_str[0] == '1';
|
164
|
+
if (enable_cfstream && enable_cfstream_run_loop) {
|
165
|
+
return false;
|
166
|
+
} else {
|
167
|
+
return grpc_event_engine_run_in_background();
|
168
|
+
}
|
105
169
|
}
|
106
170
|
|
107
171
|
#endif /* GRPC_CFSTREAM_IOMGR */
|