grpc-flamingo 1.11.0 → 1.15.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Makefile +1150 -176
- data/etc/roots.pem +40 -196
- data/include/grpc/grpc.h +49 -8
- data/include/grpc/grpc_security.h +123 -2
- data/include/grpc/grpc_security_constants.h +6 -0
- data/include/grpc/impl/codegen/fork.h +4 -4
- data/include/grpc/impl/codegen/grpc_types.h +26 -5
- data/include/grpc/impl/codegen/log.h +112 -0
- data/include/grpc/impl/codegen/port_platform.h +55 -4
- data/include/grpc/module.modulemap +2 -0
- data/include/grpc/support/log.h +2 -80
- data/include/grpc/support/string_util.h +2 -0
- data/include/grpc/support/sync.h +0 -16
- data/src/boringssl/err_data.c +602 -588
- data/src/core/ext/{census → filters/census}/grpc_context.cc +0 -0
- data/src/core/ext/filters/client_channel/channel_connectivity.cc +1 -1
- data/src/core/ext/filters/client_channel/client_channel.cc +1234 -1070
- data/src/core/ext/filters/client_channel/client_channel.h +5 -0
- data/src/core/ext/filters/client_channel/client_channel_channelz.cc +113 -0
- data/src/core/ext/filters/client_channel/client_channel_channelz.h +71 -0
- data/src/core/ext/filters/client_channel/client_channel_plugin.cc +9 -0
- data/src/core/ext/filters/client_channel/http_connect_handshaker.cc +1 -1
- data/src/core/ext/filters/client_channel/http_proxy.cc +22 -5
- data/src/core/ext/filters/client_channel/lb_policy.cc +2 -2
- data/src/core/ext/filters/client_channel/lb_policy.h +30 -10
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.cc +11 -9
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +120 -127
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.h +36 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.cc +36 -102
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.h +37 -32
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc +25 -22
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h +4 -2
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/google/protobuf/duration.pb.c +19 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/google/protobuf/duration.pb.h +54 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/google/protobuf/timestamp.pb.c +19 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/google/protobuf/timestamp.pb.h +54 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c +4 -17
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.h +37 -63
- data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +306 -239
- data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +444 -392
- data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +538 -98
- data/src/core/ext/filters/client_channel/lb_policy_factory.cc +8 -0
- data/src/core/ext/filters/client_channel/lb_policy_factory.h +4 -0
- data/src/core/ext/filters/client_channel/method_params.h +4 -0
- data/src/core/ext/filters/client_channel/resolver.h +10 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +36 -19
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.cc +320 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h +62 -9
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +49 -294
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +537 -0
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +112 -87
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +17 -2
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_fallback.cc +6 -5
- data/src/core/ext/filters/{load_reporting/server_load_reporting_filter.h → client_channel/resolver/dns/c_ares/grpc_ares_wrapper_posix.cc} +7 -8
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc +29 -0
- data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +32 -15
- data/src/core/ext/filters/client_channel/retry_throttle.h +4 -0
- data/src/core/ext/filters/client_channel/subchannel.cc +58 -15
- data/src/core/ext/filters/client_channel/subchannel.h +11 -0
- data/src/core/ext/filters/deadline/deadline_filter.cc +18 -15
- data/src/core/ext/filters/deadline/deadline_filter.h +5 -5
- data/src/core/ext/filters/http/client/http_client_filter.cc +10 -9
- data/src/core/ext/filters/http/client_authority_filter.cc +6 -5
- data/src/core/ext/filters/http/message_compress/message_compress_filter.cc +6 -6
- data/src/core/ext/filters/http/server/http_server_filter.cc +123 -131
- data/src/core/ext/filters/http/server/http_server_filter.h +1 -1
- data/src/core/ext/transport/chttp2/client/insecure/channel_create_posix.cc +1 -1
- data/src/core/ext/transport/chttp2/server/chttp2_server.cc +1 -1
- data/src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.cc +3 -2
- data/src/core/ext/transport/chttp2/transport/bin_decoder.cc +9 -8
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +97 -48
- data/src/core/ext/transport/chttp2/transport/flow_control.cc +10 -7
- data/src/core/ext/transport/chttp2/transport/frame_settings.cc +3 -3
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +12 -8
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +4 -3
- data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +2 -2
- data/src/core/ext/transport/chttp2/transport/hpack_table.cc +2 -2
- data/src/core/ext/transport/chttp2/transport/parsing.cc +14 -12
- data/src/core/ext/transport/chttp2/transport/stream_lists.cc +3 -3
- data/src/core/ext/transport/chttp2/transport/writing.cc +32 -27
- data/src/core/ext/transport/inproc/inproc_transport.cc +87 -49
- data/src/core/lib/channel/channel_args.cc +28 -0
- data/src/core/lib/channel/channel_args.h +4 -0
- data/src/core/lib/channel/channel_stack.cc +22 -29
- data/src/core/lib/channel/channel_stack.h +2 -2
- data/src/core/lib/channel/channel_stack_builder.cc +0 -3
- data/src/core/lib/channel/channel_stack_builder.h +0 -2
- data/src/core/lib/channel/channel_trace.cc +28 -63
- data/src/core/lib/channel/channel_trace.h +13 -17
- data/src/core/lib/channel/channelz.cc +153 -0
- data/src/core/lib/channel/channelz.h +133 -0
- data/src/core/lib/channel/channelz_registry.cc +145 -0
- data/src/core/lib/channel/channelz_registry.h +120 -0
- data/src/core/lib/channel/connected_channel.cc +8 -1
- data/src/core/lib/channel/handshaker.cc +71 -0
- data/src/core/lib/channel/handshaker.h +4 -0
- data/src/core/lib/debug/stats.h +7 -0
- data/src/core/lib/debug/stats_data.cc +5 -0
- data/src/core/lib/debug/stats_data.h +120 -0
- data/src/core/lib/debug/trace.cc +2 -1
- data/src/core/lib/debug/trace.h +12 -1
- data/src/core/lib/gpr/alloc.h +28 -0
- data/src/core/lib/gpr/arena.cc +38 -45
- data/src/core/lib/gpr/log.cc +8 -2
- data/src/core/lib/gpr/log_android.cc +4 -0
- data/src/core/lib/gpr/log_linux.cc +4 -0
- data/src/core/lib/gpr/log_posix.cc +4 -0
- data/src/core/lib/gpr/log_windows.cc +5 -0
- data/src/core/lib/gpr/string.cc +28 -0
- data/src/core/lib/gpr/string.h +10 -0
- data/src/core/lib/gprpp/abstract.h +5 -2
- data/src/core/lib/gprpp/fork.cc +268 -0
- data/src/core/lib/gprpp/fork.h +88 -0
- data/src/core/lib/gprpp/inlined_vector.h +87 -37
- data/src/core/lib/gprpp/memory.h +12 -0
- data/src/core/lib/gprpp/mutex_lock.h +42 -0
- data/src/core/lib/gprpp/orphanable.h +10 -12
- data/src/core/lib/gprpp/ref_counted.h +10 -12
- data/src/core/lib/gprpp/ref_counted_ptr.h +65 -8
- data/src/core/lib/gprpp/thd.h +0 -3
- data/src/core/lib/gprpp/thd_posix.cc +5 -54
- data/src/core/lib/gprpp/thd_windows.cc +0 -7
- data/src/core/lib/http/httpcli_security_connector.cc +1 -3
- data/src/core/lib/iomgr/call_combiner.cc +13 -13
- data/src/core/lib/iomgr/call_combiner.h +84 -1
- data/src/core/lib/iomgr/closure.h +6 -5
- data/src/core/lib/iomgr/combiner.cc +30 -13
- data/src/core/lib/iomgr/combiner.h +1 -1
- data/src/core/lib/iomgr/endpoint_pair_posix.cc +2 -2
- data/src/core/lib/iomgr/error.cc +12 -0
- data/src/core/lib/iomgr/error.h +5 -0
- data/src/core/lib/iomgr/ev_epoll1_linux.cc +138 -51
- data/src/core/lib/iomgr/ev_epollex_linux.cc +276 -93
- data/src/core/lib/iomgr/ev_epollsig_linux.cc +58 -50
- data/src/core/lib/iomgr/ev_poll_posix.cc +163 -42
- data/src/core/lib/iomgr/ev_posix.cc +88 -24
- data/src/core/lib/iomgr/ev_posix.h +48 -12
- data/src/core/lib/iomgr/exec_ctx.cc +15 -9
- data/src/core/lib/iomgr/exec_ctx.h +48 -20
- data/src/core/lib/iomgr/executor.cc +274 -142
- data/src/core/lib/iomgr/executor.h +82 -16
- data/src/core/lib/iomgr/fork_posix.cc +42 -19
- data/src/core/lib/iomgr/iocp_windows.cc +9 -4
- data/src/core/lib/iomgr/iomgr.cc +2 -0
- data/src/core/lib/iomgr/iomgr.h +5 -0
- data/src/core/lib/iomgr/iomgr_posix.cc +2 -2
- data/src/core/lib/iomgr/is_epollexclusive_available.cc +1 -0
- data/src/core/lib/iomgr/lockfree_event.cc +5 -1
- data/src/core/lib/iomgr/polling_entity.cc +11 -2
- data/src/core/lib/iomgr/pollset_custom.cc +2 -2
- data/src/core/lib/iomgr/port.h +51 -1
- data/src/core/lib/iomgr/resolve_address.h +1 -1
- data/src/core/lib/iomgr/resolve_address_posix.cc +4 -3
- data/src/core/lib/iomgr/resolve_address_windows.cc +3 -2
- data/src/core/lib/iomgr/resource_quota.cc +89 -12
- data/src/core/lib/iomgr/resource_quota.h +16 -0
- data/src/core/lib/iomgr/sockaddr_posix.h +1 -1
- data/src/core/lib/iomgr/socket_factory_posix.cc +1 -1
- data/src/core/lib/iomgr/socket_mutator.cc +1 -1
- data/src/core/lib/iomgr/socket_mutator.h +1 -1
- data/src/core/lib/iomgr/socket_utils.h +9 -0
- data/src/core/lib/iomgr/socket_utils_common_posix.cc +29 -1
- data/src/core/lib/iomgr/socket_utils_linux.cc +0 -1
- data/src/core/lib/iomgr/socket_utils_posix.cc +2 -3
- data/src/core/lib/iomgr/socket_utils_posix.h +3 -0
- data/src/core/lib/iomgr/socket_utils_uv.cc +4 -0
- data/src/core/lib/iomgr/socket_utils_windows.cc +4 -0
- data/src/core/lib/iomgr/socket_windows.cc +33 -0
- data/src/core/lib/iomgr/socket_windows.h +6 -0
- data/src/core/lib/iomgr/tcp_client_custom.cc +5 -5
- data/src/core/lib/iomgr/tcp_client_posix.cc +10 -11
- data/src/core/lib/iomgr/tcp_custom.cc +11 -11
- data/src/core/lib/iomgr/tcp_posix.cc +49 -36
- data/src/core/lib/iomgr/tcp_server_custom.cc +5 -5
- data/src/core/lib/iomgr/tcp_server_posix.cc +16 -36
- data/src/core/lib/iomgr/tcp_server_utils_posix.h +1 -1
- data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +17 -5
- data/src/core/lib/iomgr/tcp_server_windows.cc +1 -0
- data/src/core/lib/iomgr/tcp_uv.cc +3 -0
- data/src/core/lib/iomgr/tcp_windows.cc +18 -2
- data/src/core/lib/iomgr/tcp_windows.h +2 -0
- data/src/core/lib/iomgr/timer.h +4 -3
- data/src/core/lib/iomgr/timer_generic.cc +133 -51
- data/src/core/lib/iomgr/timer_manager.cc +12 -14
- data/src/core/lib/iomgr/timer_uv.cc +3 -0
- data/src/core/lib/iomgr/udp_server.cc +106 -52
- data/src/core/lib/iomgr/udp_server.h +8 -4
- data/src/core/lib/json/json.cc +12 -1
- data/src/core/lib/json/json.h +5 -0
- data/src/core/lib/profiling/basic_timers.cc +1 -0
- data/src/core/lib/security/context/security_context.cc +8 -8
- data/src/core/lib/security/context/security_context.h +6 -2
- data/src/core/lib/security/credentials/alts/alts_credentials.h +0 -20
- data/src/core/lib/security/credentials/alts/check_gcp_environment_linux.cc +3 -2
- data/src/core/lib/security/credentials/alts/grpc_alts_credentials_client_options.cc +7 -7
- data/src/core/lib/security/credentials/alts/grpc_alts_credentials_options.h +1 -38
- data/src/core/lib/security/credentials/credentials.h +1 -0
- data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +89 -115
- data/src/core/lib/security/credentials/google_default/google_default_credentials.h +16 -0
- data/src/core/lib/security/credentials/jwt/json_token.h +2 -0
- data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +2 -0
- data/src/core/lib/security/credentials/local/local_credentials.cc +77 -0
- data/src/core/lib/security/credentials/local/local_credentials.h +40 -0
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +11 -7
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +1 -1
- data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +17 -3
- data/src/core/lib/security/security_connector/alts_security_connector.cc +2 -1
- data/src/core/lib/security/security_connector/load_system_roots.h +29 -0
- data/src/core/lib/{gpr/fork.h → security/security_connector/load_system_roots_fallback.cc} +10 -13
- data/src/core/lib/security/security_connector/load_system_roots_linux.cc +165 -0
- data/src/core/lib/security/security_connector/load_system_roots_linux.h +44 -0
- data/src/core/lib/security/security_connector/local_security_connector.cc +245 -0
- data/src/core/lib/security/security_connector/local_security_connector.h +58 -0
- data/src/core/lib/security/security_connector/security_connector.cc +79 -32
- data/src/core/lib/security/security_connector/security_connector.h +5 -3
- data/src/core/lib/security/transport/client_auth_filter.cc +5 -5
- data/src/core/lib/security/transport/secure_endpoint.cc +2 -2
- data/src/core/lib/security/transport/security_handshaker.cc +7 -2
- data/src/core/lib/security/transport/server_auth_filter.cc +4 -7
- data/src/core/lib/security/util/json_util.cc +4 -0
- data/src/core/lib/slice/slice.cc +6 -2
- data/src/core/lib/slice/slice_buffer.cc +27 -7
- data/src/core/lib/slice/slice_hash_table.h +4 -0
- data/src/core/lib/slice/slice_weak_hash_table.h +4 -0
- data/src/core/lib/surface/call.cc +119 -58
- data/src/core/lib/surface/call.h +7 -0
- data/src/core/lib/surface/channel.cc +50 -18
- data/src/core/lib/surface/channel.h +4 -0
- data/src/core/lib/surface/completion_queue.cc +153 -18
- data/src/core/lib/surface/completion_queue.h +20 -2
- data/src/core/lib/surface/completion_queue_factory.cc +13 -4
- data/src/core/lib/surface/init.cc +7 -8
- data/src/core/lib/surface/init.h +0 -1
- data/src/core/lib/surface/server.cc +16 -0
- data/src/core/lib/surface/version.cc +1 -1
- data/src/core/lib/transport/bdp_estimator.cc +3 -3
- data/src/core/lib/transport/bdp_estimator.h +2 -2
- data/src/core/lib/transport/byte_stream.cc +1 -1
- data/src/core/lib/transport/connectivity_state.cc +6 -7
- data/src/core/lib/transport/service_config.cc +2 -2
- data/src/core/lib/transport/service_config.h +3 -3
- data/src/core/lib/transport/transport.cc +22 -10
- data/src/core/lib/transport/transport.h +18 -18
- data/src/core/lib/transport/transport_op_string.cc +1 -8
- data/src/core/plugin_registry/grpc_plugin_registry.cc +0 -4
- data/src/core/tsi/alts/crypt/aes_gcm.cc +2 -0
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +19 -7
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.h +10 -0
- data/src/core/tsi/alts/handshaker/alts_handshaker_service_api_util.h +2 -2
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +38 -3
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker_private.h +3 -0
- data/src/core/tsi/alts/handshaker/altscontext.pb.c +0 -1
- data/src/core/tsi/alts/handshaker/altscontext.pb.h +1 -2
- data/src/core/tsi/alts/handshaker/handshaker.pb.c +0 -1
- data/src/core/tsi/alts/handshaker/handshaker.pb.h +1 -2
- data/src/core/tsi/alts/handshaker/transport_security_common.pb.c +0 -1
- data/src/core/tsi/alts/handshaker/transport_security_common.pb.h +1 -1
- data/src/core/tsi/alts/handshaker/transport_security_common_api.h +2 -2
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.cc +47 -1
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.h +3 -1
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc +12 -11
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.h +7 -2
- data/src/core/tsi/fake_transport_security.cc +1 -0
- data/src/core/tsi/grpc_shadow_boringssl.h +3006 -0
- data/src/core/tsi/local_transport_security.cc +209 -0
- data/src/core/tsi/local_transport_security.h +51 -0
- data/src/core/tsi/ssl/session_cache/ssl_session.h +2 -0
- data/src/core/tsi/ssl/session_cache/ssl_session_cache.cc +5 -5
- data/src/core/tsi/ssl/session_cache/ssl_session_cache.h +6 -0
- data/src/core/tsi/ssl_transport_security.cc +245 -116
- data/src/core/tsi/ssl_types.h +2 -0
- data/src/core/tsi/transport_security.cc +14 -0
- data/src/core/tsi/transport_security.h +2 -0
- data/src/core/tsi/transport_security_interface.h +11 -1
- data/src/ruby/bin/math_client.rb +17 -9
- data/src/ruby/ext/grpc/extconf.rb +1 -26
- data/src/ruby/ext/grpc/rb_channel_credentials.c +3 -3
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +42 -16
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +65 -26
- data/src/ruby/lib/grpc/generic/active_call.rb +19 -23
- data/src/ruby/lib/grpc/generic/rpc_server.rb +2 -1
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/src/ruby/pb/generate_proto_ruby.sh +7 -1
- data/src/ruby/pb/grpc/health/v1/health_services_pb.rb +4 -1
- data/src/ruby/spec/call_credentials_spec.rb +1 -1
- data/src/ruby/spec/call_spec.rb +1 -1
- data/src/ruby/spec/channel_credentials_spec.rb +1 -1
- data/src/ruby/spec/channel_spec.rb +1 -1
- data/src/ruby/spec/client_auth_spec.rb +1 -12
- data/src/ruby/spec/client_server_spec.rb +1 -1
- data/src/ruby/spec/compression_options_spec.rb +1 -1
- data/src/ruby/spec/error_sanity_spec.rb +1 -1
- data/src/ruby/spec/generic/client_stub_spec.rb +16 -4
- data/src/ruby/spec/generic/rpc_desc_spec.rb +1 -1
- data/src/ruby/spec/generic/rpc_server_pool_spec.rb +1 -1
- data/src/ruby/spec/generic/service_spec.rb +1 -1
- data/src/ruby/spec/google_rpc_status_utils_spec.rb +1 -12
- data/src/ruby/spec/pb/duplicate/codegen_spec.rb +1 -0
- data/src/ruby/spec/pb/health/checker_spec.rb +1 -1
- data/src/ruby/spec/server_credentials_spec.rb +1 -1
- data/src/ruby/spec/server_spec.rb +1 -1
- data/src/ruby/spec/spec_helper.rb +1 -0
- data/src/ruby/spec/support/services.rb +1 -1
- data/src/ruby/spec/time_consts_spec.rb +1 -1
- data/third_party/address_sorting/address_sorting.c +17 -11
- data/third_party/address_sorting/address_sorting_windows.c +43 -3
- data/third_party/address_sorting/include/address_sorting/address_sorting.h +3 -0
- data/third_party/boringssl/crypto/asn1/a_int.c +33 -28
- data/third_party/boringssl/crypto/asn1/a_mbstr.c +24 -22
- data/third_party/boringssl/crypto/asn1/a_utf8.c +13 -11
- data/third_party/boringssl/crypto/asn1/asn1_locl.h +3 -0
- data/third_party/boringssl/crypto/asn1/tasn_dec.c +40 -19
- data/third_party/boringssl/crypto/bio/fd.c +1 -0
- data/third_party/boringssl/crypto/bio/file.c +2 -0
- data/third_party/boringssl/crypto/bn_extra/convert.c +6 -5
- data/third_party/boringssl/crypto/bytestring/ber.c +1 -4
- data/third_party/boringssl/crypto/bytestring/cbb.c +116 -16
- data/third_party/boringssl/crypto/bytestring/cbs.c +151 -20
- data/third_party/boringssl/crypto/cipher_extra/e_aesccm.c +203 -0
- data/third_party/boringssl/crypto/cipher_extra/e_rc2.c +2 -0
- data/third_party/boringssl/crypto/cipher_extra/e_tls.c +1 -2
- data/third_party/boringssl/crypto/cpu-aarch64-fuchsia.c +55 -0
- data/third_party/boringssl/crypto/cpu-aarch64-linux.c +2 -1
- data/third_party/boringssl/crypto/dsa/dsa.c +16 -54
- data/third_party/boringssl/crypto/ec_extra/ec_asn1.c +9 -10
- data/third_party/boringssl/crypto/ecdh/ecdh.c +4 -3
- data/third_party/boringssl/crypto/fipsmodule/bcm.c +11 -542
- data/third_party/boringssl/crypto/fipsmodule/bn/add.c +57 -112
- data/third_party/boringssl/crypto/fipsmodule/bn/asm/x86_64-gcc.c +4 -3
- data/third_party/boringssl/crypto/fipsmodule/bn/bn.c +128 -70
- data/third_party/boringssl/crypto/fipsmodule/bn/bytes.c +32 -71
- data/third_party/boringssl/crypto/fipsmodule/bn/cmp.c +64 -118
- data/third_party/boringssl/crypto/fipsmodule/bn/div.c +284 -122
- data/third_party/boringssl/crypto/fipsmodule/bn/exponentiation.c +31 -65
- data/third_party/boringssl/crypto/fipsmodule/bn/gcd.c +274 -218
- data/third_party/boringssl/crypto/fipsmodule/bn/generic.c +2 -1
- data/third_party/boringssl/crypto/fipsmodule/bn/internal.h +187 -27
- data/third_party/boringssl/crypto/fipsmodule/bn/jacobi.c +1 -1
- data/third_party/boringssl/crypto/fipsmodule/bn/montgomery.c +124 -81
- data/third_party/boringssl/crypto/fipsmodule/bn/montgomery_inv.c +8 -30
- data/third_party/boringssl/crypto/fipsmodule/bn/mul.c +321 -347
- data/third_party/boringssl/crypto/fipsmodule/bn/prime.c +326 -66
- data/third_party/boringssl/crypto/fipsmodule/bn/random.c +77 -25
- data/third_party/boringssl/crypto/fipsmodule/bn/rsaz_exp.c +199 -222
- data/third_party/boringssl/crypto/fipsmodule/bn/rsaz_exp.h +27 -47
- data/third_party/boringssl/crypto/fipsmodule/bn/shift.c +155 -96
- data/third_party/boringssl/crypto/fipsmodule/bn/sqrt.c +1 -1
- data/third_party/boringssl/crypto/fipsmodule/cipher/e_aes.c +10 -10
- data/third_party/boringssl/crypto/fipsmodule/des/internal.h +2 -0
- data/third_party/boringssl/crypto/fipsmodule/ec/ec.c +78 -47
- data/third_party/boringssl/crypto/fipsmodule/ec/ec_key.c +99 -163
- data/third_party/boringssl/crypto/fipsmodule/ec/ec_montgomery.c +3 -10
- data/third_party/boringssl/crypto/fipsmodule/ec/internal.h +44 -23
- data/third_party/boringssl/crypto/fipsmodule/ec/oct.c +59 -90
- data/third_party/boringssl/crypto/fipsmodule/ec/p224-64.c +38 -65
- data/third_party/boringssl/crypto/fipsmodule/ec/p256-x86_64-table.h +5378 -5418
- data/third_party/boringssl/crypto/fipsmodule/ec/p256-x86_64.c +17 -26
- data/third_party/boringssl/crypto/fipsmodule/ec/p256-x86_64.h +15 -11
- data/third_party/boringssl/crypto/fipsmodule/ec/simple.c +45 -51
- data/third_party/boringssl/crypto/fipsmodule/ec/{util-64.c → util.c} +0 -5
- data/third_party/boringssl/crypto/fipsmodule/ec/wnaf.c +144 -264
- data/third_party/boringssl/crypto/fipsmodule/ecdsa/ecdsa.c +78 -62
- data/third_party/boringssl/crypto/fipsmodule/modes/ccm.c +256 -0
- data/third_party/boringssl/crypto/fipsmodule/modes/internal.h +36 -32
- data/third_party/boringssl/crypto/fipsmodule/rand/ctrdrbg.c +9 -7
- data/third_party/boringssl/crypto/fipsmodule/rsa/blinding.c +16 -40
- data/third_party/boringssl/crypto/fipsmodule/rsa/internal.h +1 -6
- data/third_party/boringssl/crypto/fipsmodule/rsa/rsa.c +57 -39
- data/third_party/boringssl/crypto/fipsmodule/rsa/rsa_impl.c +309 -142
- data/third_party/boringssl/crypto/fipsmodule/self_check/self_check.c +581 -0
- data/third_party/boringssl/crypto/fipsmodule/tls/internal.h +39 -0
- data/third_party/boringssl/crypto/fipsmodule/tls/kdf.c +165 -0
- data/third_party/boringssl/crypto/internal.h +65 -2
- data/third_party/boringssl/crypto/mem.c +0 -2
- data/third_party/boringssl/crypto/obj/obj.c +6 -73
- data/third_party/boringssl/crypto/thread_pthread.c +35 -5
- data/third_party/boringssl/crypto/x509/a_strex.c +11 -11
- data/third_party/boringssl/crypto/x509/vpm_int.h +1 -0
- data/third_party/boringssl/crypto/x509/x509_vfy.c +4 -0
- data/third_party/boringssl/crypto/x509/x509_vpm.c +44 -22
- data/third_party/boringssl/crypto/x509/x_name.c +13 -0
- data/third_party/boringssl/include/openssl/aead.h +10 -0
- data/third_party/boringssl/include/openssl/asn1.h +2 -3
- data/third_party/boringssl/include/openssl/base.h +5 -14
- data/third_party/boringssl/include/openssl/bio.h +1 -1
- data/third_party/boringssl/include/openssl/bn.h +62 -18
- data/third_party/boringssl/include/openssl/bytestring.h +53 -28
- data/third_party/boringssl/include/openssl/crypto.h +4 -0
- data/third_party/boringssl/include/openssl/ec.h +10 -4
- data/third_party/boringssl/include/openssl/ec_key.h +7 -6
- data/third_party/boringssl/include/openssl/err.h +9 -9
- data/third_party/boringssl/include/openssl/evp.h +1 -1
- data/third_party/boringssl/include/openssl/rsa.h +35 -10
- data/third_party/boringssl/include/openssl/ssl.h +167 -19
- data/third_party/boringssl/include/openssl/ssl3.h +0 -1
- data/third_party/boringssl/include/openssl/stack.h +1 -1
- data/third_party/boringssl/include/openssl/tls1.h +10 -2
- data/third_party/boringssl/include/openssl/x509.h +4 -0
- data/third_party/boringssl/include/openssl/x509v3.h +1 -0
- data/third_party/boringssl/ssl/d1_both.cc +16 -2
- data/third_party/boringssl/ssl/dtls_method.cc +1 -1
- data/third_party/boringssl/ssl/handoff.cc +285 -0
- data/third_party/boringssl/ssl/handshake.cc +26 -12
- data/third_party/boringssl/ssl/handshake_client.cc +101 -95
- data/third_party/boringssl/ssl/handshake_server.cc +14 -2
- data/third_party/boringssl/ssl/internal.h +132 -79
- data/third_party/boringssl/ssl/s3_both.cc +2 -2
- data/third_party/boringssl/ssl/s3_lib.cc +3 -1
- data/third_party/boringssl/ssl/s3_pkt.cc +0 -18
- data/third_party/boringssl/ssl/ssl_aead_ctx.cc +1 -4
- data/third_party/boringssl/ssl/ssl_asn1.cc +47 -43
- data/third_party/boringssl/ssl/ssl_cipher.cc +12 -8
- data/third_party/boringssl/ssl/ssl_key_share.cc +3 -1
- data/third_party/boringssl/ssl/ssl_lib.cc +83 -14
- data/third_party/boringssl/ssl/ssl_privkey.cc +6 -0
- data/third_party/boringssl/ssl/ssl_stat.cc +6 -6
- data/third_party/boringssl/ssl/ssl_versions.cc +12 -85
- data/third_party/boringssl/ssl/ssl_x509.cc +59 -61
- data/third_party/boringssl/ssl/t1_enc.cc +73 -124
- data/third_party/boringssl/ssl/t1_lib.cc +367 -41
- data/third_party/boringssl/ssl/tls13_both.cc +8 -0
- data/third_party/boringssl/ssl/tls13_client.cc +98 -184
- data/third_party/boringssl/ssl/tls13_enc.cc +88 -158
- data/third_party/boringssl/ssl/tls13_server.cc +91 -137
- data/third_party/boringssl/ssl/tls_method.cc +0 -17
- data/third_party/boringssl/ssl/tls_record.cc +1 -10
- data/third_party/boringssl/third_party/fiat/curve25519.c +921 -2753
- data/third_party/boringssl/third_party/fiat/curve25519_tables.h +7880 -0
- data/third_party/boringssl/third_party/fiat/internal.h +32 -20
- data/third_party/boringssl/third_party/fiat/p256.c +1824 -0
- metadata +86 -71
- data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.cc +0 -253
- data/src/core/ext/filters/load_reporting/server_load_reporting_filter.cc +0 -222
- data/src/core/ext/filters/load_reporting/server_load_reporting_plugin.cc +0 -71
- data/src/core/ext/filters/load_reporting/server_load_reporting_plugin.h +0 -61
- data/src/core/lib/channel/channel_trace_registry.cc +0 -80
- data/src/core/lib/channel/channel_trace_registry.h +0 -43
- data/src/core/lib/gpr/fork.cc +0 -78
- data/src/core/tsi/transport_security_adapter.cc +0 -235
- data/src/core/tsi/transport_security_adapter.h +0 -41
- data/src/ruby/bin/apis/google/protobuf/empty.rb +0 -29
- data/src/ruby/bin/apis/pubsub_demo.rb +0 -241
- data/src/ruby/bin/apis/tech/pubsub/proto/pubsub.rb +0 -159
- data/src/ruby/bin/apis/tech/pubsub/proto/pubsub_services.rb +0 -88
- data/src/ruby/pb/test/client.rb +0 -764
- data/src/ruby/pb/test/server.rb +0 -252
- data/src/ruby/spec/pb/package_with_underscore/checker_spec.rb +0 -54
- data/src/ruby/spec/pb/package_with_underscore/data.proto +0 -23
- data/src/ruby/spec/pb/package_with_underscore/service.proto +0 -23
- data/third_party/boringssl/crypto/curve25519/x25519-x86_64.c +0 -247
- data/third_party/boringssl/crypto/fipsmodule/ec/p256-64.c +0 -1674
@@ -132,15 +132,15 @@ struct grpc_fd {
|
|
132
132
|
|
133
133
|
grpc_core::ManualConstructor<grpc_core::LockfreeEvent> read_closure;
|
134
134
|
grpc_core::ManualConstructor<grpc_core::LockfreeEvent> write_closure;
|
135
|
+
grpc_core::ManualConstructor<grpc_core::LockfreeEvent> error_closure;
|
135
136
|
|
136
137
|
struct grpc_fd* freelist_next;
|
137
138
|
grpc_closure* on_done_closure;
|
138
139
|
|
139
|
-
/* The pollset that last noticed that the fd is readable. The actual type
|
140
|
-
* stored in this is (grpc_pollset *) */
|
141
|
-
gpr_atm read_notifier_pollset;
|
142
|
-
|
143
140
|
grpc_iomgr_object iomgr_object;
|
141
|
+
|
142
|
+
/* Do we need to track EPOLLERR events separately? */
|
143
|
+
bool track_err;
|
144
144
|
};
|
145
145
|
|
146
146
|
/* Reference counting for fds */
|
@@ -292,7 +292,7 @@ static void pi_add_ref_dbg(polling_island* pi, const char* reason,
|
|
292
292
|
const char* file, int line) {
|
293
293
|
if (grpc_polling_trace.enabled()) {
|
294
294
|
gpr_atm old_cnt = gpr_atm_acq_load(&pi->ref_count);
|
295
|
-
gpr_log(
|
295
|
+
gpr_log(GPR_INFO,
|
296
296
|
"Add ref pi: %p, old:%" PRIdPTR " -> new:%" PRIdPTR
|
297
297
|
" (%s) - (%s, %d)",
|
298
298
|
pi, old_cnt, old_cnt + 1, reason, file, line);
|
@@ -304,7 +304,7 @@ static void pi_unref_dbg(polling_island* pi, const char* reason,
|
|
304
304
|
const char* file, int line) {
|
305
305
|
if (grpc_polling_trace.enabled()) {
|
306
306
|
gpr_atm old_cnt = gpr_atm_acq_load(&pi->ref_count);
|
307
|
-
gpr_log(
|
307
|
+
gpr_log(GPR_INFO,
|
308
308
|
"Unref pi: %p, old:%" PRIdPTR " -> new:%" PRIdPTR
|
309
309
|
" (%s) - (%s, %d)",
|
310
310
|
pi, old_cnt, (old_cnt - 1), reason, file, line);
|
@@ -352,7 +352,10 @@ static void polling_island_add_fds_locked(polling_island* pi, grpc_fd** fds,
|
|
352
352
|
|
353
353
|
for (i = 0; i < fd_count; i++) {
|
354
354
|
ev.events = static_cast<uint32_t>(EPOLLIN | EPOLLOUT | EPOLLET);
|
355
|
-
ev.data.ptr
|
355
|
+
/* Use the least significant bit of ev.data.ptr to store track_err to avoid
|
356
|
+
* synchronization issues when accessing it after receiving an event */
|
357
|
+
ev.data.ptr = reinterpret_cast<void*>(reinterpret_cast<intptr_t>(fds[i]) |
|
358
|
+
(fds[i]->track_err ? 1 : 0));
|
356
359
|
err = epoll_ctl(pi->epoll_fd, EPOLL_CTL_ADD, fds[i]->fd, &ev);
|
357
360
|
|
358
361
|
if (err < 0) {
|
@@ -435,7 +438,6 @@ static void polling_island_remove_all_fds_locked(polling_island* pi,
|
|
435
438
|
|
436
439
|
/* The caller is expected to hold pi->mu lock before calling this function */
|
437
440
|
static void polling_island_remove_fd_locked(polling_island* pi, grpc_fd* fd,
|
438
|
-
bool is_fd_closed,
|
439
441
|
grpc_error** error) {
|
440
442
|
int err;
|
441
443
|
size_t i;
|
@@ -444,16 +446,14 @@ static void polling_island_remove_fd_locked(polling_island* pi, grpc_fd* fd,
|
|
444
446
|
|
445
447
|
/* If fd is already closed, then it would have been automatically been removed
|
446
448
|
from the epoll set */
|
447
|
-
|
448
|
-
|
449
|
-
|
450
|
-
|
451
|
-
|
452
|
-
|
453
|
-
|
454
|
-
|
455
|
-
gpr_free(err_msg);
|
456
|
-
}
|
449
|
+
err = epoll_ctl(pi->epoll_fd, EPOLL_CTL_DEL, fd->fd, nullptr);
|
450
|
+
if (err < 0 && errno != ENOENT) {
|
451
|
+
gpr_asprintf(
|
452
|
+
&err_msg,
|
453
|
+
"epoll_ctl (epoll_fd: %d) del fd: %d failed with error: %d (%s)",
|
454
|
+
pi->epoll_fd, fd->fd, errno, strerror(errno));
|
455
|
+
append_error(error, GRPC_OS_ERROR(errno, err_msg), err_desc);
|
456
|
+
gpr_free(err_msg);
|
457
457
|
}
|
458
458
|
|
459
459
|
for (i = 0; i < pi->fd_cnt; i++) {
|
@@ -769,6 +769,7 @@ static void unref_by(grpc_fd* fd, int n) {
|
|
769
769
|
|
770
770
|
fd->read_closure->DestroyEvent();
|
771
771
|
fd->write_closure->DestroyEvent();
|
772
|
+
fd->error_closure->DestroyEvent();
|
772
773
|
|
773
774
|
gpr_mu_unlock(&fd_freelist_mu);
|
774
775
|
} else {
|
@@ -806,7 +807,7 @@ static void fd_global_shutdown(void) {
|
|
806
807
|
gpr_mu_destroy(&fd_freelist_mu);
|
807
808
|
}
|
808
809
|
|
809
|
-
static grpc_fd* fd_create(int fd, const char* name) {
|
810
|
+
static grpc_fd* fd_create(int fd, const char* name, bool track_err) {
|
810
811
|
grpc_fd* new_fd = nullptr;
|
811
812
|
|
812
813
|
gpr_mu_lock(&fd_freelist_mu);
|
@@ -821,6 +822,7 @@ static grpc_fd* fd_create(int fd, const char* name) {
|
|
821
822
|
gpr_mu_init(&new_fd->po.mu);
|
822
823
|
new_fd->read_closure.Init();
|
823
824
|
new_fd->write_closure.Init();
|
825
|
+
new_fd->error_closure.Init();
|
824
826
|
}
|
825
827
|
|
826
828
|
/* Note: It is not really needed to get the new_fd->po.mu lock here. If this
|
@@ -837,7 +839,8 @@ static grpc_fd* fd_create(int fd, const char* name) {
|
|
837
839
|
new_fd->orphaned = false;
|
838
840
|
new_fd->read_closure->InitEvent();
|
839
841
|
new_fd->write_closure->InitEvent();
|
840
|
-
|
842
|
+
new_fd->error_closure->InitEvent();
|
843
|
+
new_fd->track_err = track_err;
|
841
844
|
|
842
845
|
new_fd->freelist_next = nullptr;
|
843
846
|
new_fd->on_done_closure = nullptr;
|
@@ -863,7 +866,7 @@ static int fd_wrapped_fd(grpc_fd* fd) {
|
|
863
866
|
}
|
864
867
|
|
865
868
|
static void fd_orphan(grpc_fd* fd, grpc_closure* on_done, int* release_fd,
|
866
|
-
|
869
|
+
const char* reason) {
|
867
870
|
grpc_error* error = GRPC_ERROR_NONE;
|
868
871
|
polling_island* unref_pi = nullptr;
|
869
872
|
|
@@ -884,7 +887,7 @@ static void fd_orphan(grpc_fd* fd, grpc_closure* on_done, int* release_fd,
|
|
884
887
|
before doing this.) */
|
885
888
|
if (fd->po.pi != nullptr) {
|
886
889
|
polling_island* pi_latest = polling_island_lock(fd->po.pi);
|
887
|
-
polling_island_remove_fd_locked(pi_latest, fd,
|
890
|
+
polling_island_remove_fd_locked(pi_latest, fd, &error);
|
888
891
|
gpr_mu_unlock(&pi_latest->mu);
|
889
892
|
|
890
893
|
unref_pi = fd->po.pi;
|
@@ -919,11 +922,6 @@ static void fd_orphan(grpc_fd* fd, grpc_closure* on_done, int* release_fd,
|
|
919
922
|
GRPC_ERROR_UNREF(error);
|
920
923
|
}
|
921
924
|
|
922
|
-
static grpc_pollset* fd_get_read_notifier_pollset(grpc_fd* fd) {
|
923
|
-
gpr_atm notifier = gpr_atm_acq_load(&fd->read_notifier_pollset);
|
924
|
-
return (grpc_pollset*)notifier;
|
925
|
-
}
|
926
|
-
|
927
925
|
static bool fd_is_shutdown(grpc_fd* fd) {
|
928
926
|
return fd->read_closure->IsShutdown();
|
929
927
|
}
|
@@ -933,6 +931,7 @@ static void fd_shutdown(grpc_fd* fd, grpc_error* why) {
|
|
933
931
|
if (fd->read_closure->SetShutdown(GRPC_ERROR_REF(why))) {
|
934
932
|
shutdown(fd->fd, SHUT_RDWR);
|
935
933
|
fd->write_closure->SetShutdown(GRPC_ERROR_REF(why));
|
934
|
+
fd->error_closure->SetShutdown(GRPC_ERROR_REF(why));
|
936
935
|
}
|
937
936
|
GRPC_ERROR_UNREF(why);
|
938
937
|
}
|
@@ -945,6 +944,16 @@ static void fd_notify_on_write(grpc_fd* fd, grpc_closure* closure) {
|
|
945
944
|
fd->write_closure->NotifyOn(closure);
|
946
945
|
}
|
947
946
|
|
947
|
+
static void fd_notify_on_error(grpc_fd* fd, grpc_closure* closure) {
|
948
|
+
fd->error_closure->NotifyOn(closure);
|
949
|
+
}
|
950
|
+
|
951
|
+
static void fd_become_readable(grpc_fd* fd) { fd->read_closure->SetReady(); }
|
952
|
+
|
953
|
+
static void fd_become_writable(grpc_fd* fd) { fd->write_closure->SetReady(); }
|
954
|
+
|
955
|
+
static void fd_has_errors(grpc_fd* fd) { fd->error_closure->SetReady(); }
|
956
|
+
|
948
957
|
/*******************************************************************************
|
949
958
|
* Pollset Definitions
|
950
959
|
*/
|
@@ -1102,20 +1111,6 @@ static int poll_deadline_to_millis_timeout(grpc_millis millis) {
|
|
1102
1111
|
return static_cast<int>(delta);
|
1103
1112
|
}
|
1104
1113
|
|
1105
|
-
static void fd_become_readable(grpc_fd* fd, grpc_pollset* notifier) {
|
1106
|
-
fd->read_closure->SetReady();
|
1107
|
-
|
1108
|
-
/* Note, it is possible that fd_become_readable might be called twice with
|
1109
|
-
different 'notifier's when an fd becomes readable and it is in two epoll
|
1110
|
-
sets (This can happen briefly during polling island merges). In such cases
|
1111
|
-
it does not really matter which notifer is set as the read_notifier_pollset
|
1112
|
-
(They would both point to the same polling island anyway) */
|
1113
|
-
/* Use release store to match with acquire load in fd_get_read_notifier */
|
1114
|
-
gpr_atm_rel_store(&fd->read_notifier_pollset, (gpr_atm)notifier);
|
1115
|
-
}
|
1116
|
-
|
1117
|
-
static void fd_become_writable(grpc_fd* fd) { fd->write_closure->SetReady(); }
|
1118
|
-
|
1119
1114
|
static void pollset_release_polling_island(grpc_pollset* ps,
|
1120
1115
|
const char* reason) {
|
1121
1116
|
if (ps->po.pi != nullptr) {
|
@@ -1254,14 +1249,23 @@ static void pollset_work_and_unlock(grpc_pollset* pollset,
|
|
1254
1249
|
to the function pollset_work_and_unlock() will pick up the correct
|
1255
1250
|
epoll_fd */
|
1256
1251
|
} else {
|
1257
|
-
grpc_fd* fd =
|
1258
|
-
|
1259
|
-
|
1260
|
-
|
1261
|
-
|
1262
|
-
|
1252
|
+
grpc_fd* fd = reinterpret_cast<grpc_fd*>(
|
1253
|
+
reinterpret_cast<intptr_t>(data_ptr) & ~static_cast<intptr_t>(1));
|
1254
|
+
bool track_err =
|
1255
|
+
reinterpret_cast<intptr_t>(data_ptr) & ~static_cast<intptr_t>(1);
|
1256
|
+
bool cancel = (ep_ev[i].events & EPOLLHUP) != 0;
|
1257
|
+
bool error = (ep_ev[i].events & EPOLLERR) != 0;
|
1258
|
+
bool read_ev = (ep_ev[i].events & (EPOLLIN | EPOLLPRI)) != 0;
|
1259
|
+
bool write_ev = (ep_ev[i].events & EPOLLOUT) != 0;
|
1260
|
+
bool err_fallback = error && !track_err;
|
1261
|
+
|
1262
|
+
if (error && !err_fallback) {
|
1263
|
+
fd_has_errors(fd);
|
1264
|
+
}
|
1265
|
+
if (read_ev || cancel || err_fallback) {
|
1266
|
+
fd_become_readable(fd);
|
1263
1267
|
}
|
1264
|
-
if (write_ev || cancel) {
|
1268
|
+
if (write_ev || cancel || err_fallback) {
|
1265
1269
|
fd_become_writable(fd);
|
1266
1270
|
}
|
1267
1271
|
}
|
@@ -1634,6 +1638,7 @@ static void shutdown_engine(void) {
|
|
1634
1638
|
|
1635
1639
|
static const grpc_event_engine_vtable vtable = {
|
1636
1640
|
sizeof(grpc_pollset),
|
1641
|
+
true,
|
1637
1642
|
|
1638
1643
|
fd_create,
|
1639
1644
|
fd_wrapped_fd,
|
@@ -1641,8 +1646,11 @@ static const grpc_event_engine_vtable vtable = {
|
|
1641
1646
|
fd_shutdown,
|
1642
1647
|
fd_notify_on_read,
|
1643
1648
|
fd_notify_on_write,
|
1649
|
+
fd_notify_on_error,
|
1650
|
+
fd_become_readable,
|
1651
|
+
fd_become_writable,
|
1652
|
+
fd_has_errors,
|
1644
1653
|
fd_is_shutdown,
|
1645
|
-
fd_get_read_notifier_pollset,
|
1646
1654
|
|
1647
1655
|
pollset_init,
|
1648
1656
|
pollset_shutdown,
|
@@ -1721,7 +1729,7 @@ const grpc_event_engine_vtable* grpc_init_epollsig_linux(
|
|
1721
1729
|
}
|
1722
1730
|
|
1723
1731
|
#else /* defined(GRPC_LINUX_EPOLL_CREATE1) */
|
1724
|
-
#if defined(
|
1732
|
+
#if defined(GRPC_POSIX_SOCKET_EV_EPOLLSIG)
|
1725
1733
|
#include "src/core/lib/iomgr/ev_epollsig_linux.h"
|
1726
1734
|
/* If GRPC_LINUX_EPOLL_CREATE1 is not defined, it means
|
1727
1735
|
epoll_create1 is not available. Return NULL */
|
@@ -20,7 +20,7 @@
|
|
20
20
|
|
21
21
|
#include "src/core/lib/iomgr/port.h"
|
22
22
|
|
23
|
-
#ifdef
|
23
|
+
#ifdef GRPC_POSIX_SOCKET_EV_POLL
|
24
24
|
|
25
25
|
#include "src/core/lib/iomgr/ev_poll_posix.h"
|
26
26
|
|
@@ -60,6 +60,19 @@ typedef struct grpc_fd_watcher {
|
|
60
60
|
grpc_fd* fd;
|
61
61
|
} grpc_fd_watcher;
|
62
62
|
|
63
|
+
typedef struct grpc_cached_wakeup_fd grpc_cached_wakeup_fd;
|
64
|
+
|
65
|
+
/* Only used when GRPC_ENABLE_FORK_SUPPORT=1 */
|
66
|
+
struct grpc_fork_fd_list {
|
67
|
+
/* Only one of fd or cached_wakeup_fd will be set. The unused field will be
|
68
|
+
set to nullptr. */
|
69
|
+
grpc_fd* fd;
|
70
|
+
grpc_cached_wakeup_fd* cached_wakeup_fd;
|
71
|
+
|
72
|
+
grpc_fork_fd_list* next;
|
73
|
+
grpc_fork_fd_list* prev;
|
74
|
+
};
|
75
|
+
|
63
76
|
struct grpc_fd {
|
64
77
|
int fd;
|
65
78
|
/* refst format:
|
@@ -109,10 +122,17 @@ struct grpc_fd {
|
|
109
122
|
|
110
123
|
grpc_iomgr_object iomgr_object;
|
111
124
|
|
112
|
-
/*
|
113
|
-
|
125
|
+
/* Only used when GRPC_ENABLE_FORK_SUPPORT=1 */
|
126
|
+
grpc_fork_fd_list* fork_fd_list;
|
114
127
|
};
|
115
128
|
|
129
|
+
/* True when GRPC_ENABLE_FORK_SUPPORT=1. We do not support fork with poll-cv */
|
130
|
+
static bool track_fds_for_fork = false;
|
131
|
+
|
132
|
+
/* Only used when GRPC_ENABLE_FORK_SUPPORT=1 */
|
133
|
+
static grpc_fork_fd_list* fork_fd_list_head = nullptr;
|
134
|
+
static gpr_mu fork_fd_list_mu;
|
135
|
+
|
116
136
|
/* Begin polling on an fd.
|
117
137
|
Registers that the given pollset is interested in this fd - so that if read
|
118
138
|
or writability interest changes, the pollset can be kicked to pick up that
|
@@ -131,8 +151,7 @@ static uint32_t fd_begin_poll(grpc_fd* fd, grpc_pollset* pollset,
|
|
131
151
|
MUST NOT be called with a pollset lock taken
|
132
152
|
if got_read or got_write are 1, also does the become_{readable,writable} as
|
133
153
|
appropriate. */
|
134
|
-
static void fd_end_poll(grpc_fd_watcher* rec, int got_read, int got_write
|
135
|
-
grpc_pollset* read_notifier_pollset);
|
154
|
+
static void fd_end_poll(grpc_fd_watcher* rec, int got_read, int got_write);
|
136
155
|
|
137
156
|
/* Return 1 if this fd is orphaned, 0 otherwise */
|
138
157
|
static bool fd_is_orphaned(grpc_fd* fd);
|
@@ -160,6 +179,9 @@ static void fd_unref(grpc_fd* fd);
|
|
160
179
|
typedef struct grpc_cached_wakeup_fd {
|
161
180
|
grpc_wakeup_fd fd;
|
162
181
|
struct grpc_cached_wakeup_fd* next;
|
182
|
+
|
183
|
+
/* Only used when GRPC_ENABLE_FORK_SUPPORT=1 */
|
184
|
+
grpc_fork_fd_list* fork_fd_list;
|
163
185
|
} grpc_cached_wakeup_fd;
|
164
186
|
|
165
187
|
struct grpc_pollset_worker {
|
@@ -285,9 +307,61 @@ poll_hash_table poll_cache;
|
|
285
307
|
grpc_cv_fd_table g_cvfds;
|
286
308
|
|
287
309
|
/*******************************************************************************
|
288
|
-
*
|
310
|
+
* functions to track opened fds. No-ops unless track_fds_for_fork is true.
|
289
311
|
*/
|
290
312
|
|
313
|
+
static void fork_fd_list_remove_node(grpc_fork_fd_list* node) {
|
314
|
+
if (track_fds_for_fork) {
|
315
|
+
gpr_mu_lock(&fork_fd_list_mu);
|
316
|
+
if (fork_fd_list_head == node) {
|
317
|
+
fork_fd_list_head = node->next;
|
318
|
+
}
|
319
|
+
if (node->prev != nullptr) {
|
320
|
+
node->prev->next = node->next;
|
321
|
+
}
|
322
|
+
if (node->next != nullptr) {
|
323
|
+
node->next->prev = node->prev;
|
324
|
+
}
|
325
|
+
gpr_free(node);
|
326
|
+
gpr_mu_unlock(&fork_fd_list_mu);
|
327
|
+
}
|
328
|
+
}
|
329
|
+
|
330
|
+
static void fork_fd_list_add_node(grpc_fork_fd_list* node) {
|
331
|
+
gpr_mu_lock(&fork_fd_list_mu);
|
332
|
+
node->next = fork_fd_list_head;
|
333
|
+
node->prev = nullptr;
|
334
|
+
if (fork_fd_list_head != nullptr) {
|
335
|
+
fork_fd_list_head->prev = node;
|
336
|
+
}
|
337
|
+
fork_fd_list_head = node;
|
338
|
+
gpr_mu_unlock(&fork_fd_list_mu);
|
339
|
+
}
|
340
|
+
|
341
|
+
static void fork_fd_list_add_grpc_fd(grpc_fd* fd) {
|
342
|
+
if (track_fds_for_fork) {
|
343
|
+
fd->fork_fd_list =
|
344
|
+
static_cast<grpc_fork_fd_list*>(gpr_malloc(sizeof(grpc_fork_fd_list)));
|
345
|
+
fd->fork_fd_list->fd = fd;
|
346
|
+
fd->fork_fd_list->cached_wakeup_fd = nullptr;
|
347
|
+
fork_fd_list_add_node(fd->fork_fd_list);
|
348
|
+
}
|
349
|
+
}
|
350
|
+
|
351
|
+
static void fork_fd_list_add_wakeup_fd(grpc_cached_wakeup_fd* fd) {
|
352
|
+
if (track_fds_for_fork) {
|
353
|
+
fd->fork_fd_list =
|
354
|
+
static_cast<grpc_fork_fd_list*>(gpr_malloc(sizeof(grpc_fork_fd_list)));
|
355
|
+
fd->fork_fd_list->cached_wakeup_fd = fd;
|
356
|
+
fd->fork_fd_list->fd = nullptr;
|
357
|
+
fork_fd_list_add_node(fd->fork_fd_list);
|
358
|
+
}
|
359
|
+
}
|
360
|
+
|
361
|
+
/*******************************************************************************
|
362
|
+
* fd_posix.c
|
363
|
+
*/
|
364
|
+
|
291
365
|
#ifndef NDEBUG
|
292
366
|
#define REF_BY(fd, n, reason) ref_by(fd, n, reason, __FILE__, __LINE__)
|
293
367
|
#define UNREF_BY(fd, n, reason) unref_by(fd, n, reason, __FILE__, __LINE__)
|
@@ -323,6 +397,7 @@ static void unref_by(grpc_fd* fd, int n) {
|
|
323
397
|
if (old == n) {
|
324
398
|
gpr_mu_destroy(&fd->mu);
|
325
399
|
grpc_iomgr_unregister_object(&fd->iomgr_object);
|
400
|
+
fork_fd_list_remove_node(fd->fork_fd_list);
|
326
401
|
if (fd->shutdown) GRPC_ERROR_UNREF(fd->shutdown_error);
|
327
402
|
gpr_free(fd);
|
328
403
|
} else {
|
@@ -330,7 +405,8 @@ static void unref_by(grpc_fd* fd, int n) {
|
|
330
405
|
}
|
331
406
|
}
|
332
407
|
|
333
|
-
static grpc_fd* fd_create(int fd, const char* name) {
|
408
|
+
static grpc_fd* fd_create(int fd, const char* name, bool track_err) {
|
409
|
+
GPR_DEBUG_ASSERT(track_err == false);
|
334
410
|
grpc_fd* r = static_cast<grpc_fd*>(gpr_malloc(sizeof(*r)));
|
335
411
|
gpr_mu_init(&r->mu);
|
336
412
|
gpr_atm_rel_store(&r->refst, 1);
|
@@ -345,12 +421,12 @@ static grpc_fd* fd_create(int fd, const char* name) {
|
|
345
421
|
r->closed = 0;
|
346
422
|
r->released = 0;
|
347
423
|
gpr_atm_no_barrier_store(&r->pollhup, 0);
|
348
|
-
r->read_notifier_pollset = nullptr;
|
349
424
|
|
350
425
|
char* name2;
|
351
426
|
gpr_asprintf(&name2, "%s fd=%d", name, fd);
|
352
427
|
grpc_iomgr_register_object(&r->iomgr_object, name2);
|
353
428
|
gpr_free(name2);
|
429
|
+
fork_fd_list_add_grpc_fd(r);
|
354
430
|
return r;
|
355
431
|
}
|
356
432
|
|
@@ -358,17 +434,6 @@ static bool fd_is_orphaned(grpc_fd* fd) {
|
|
358
434
|
return (gpr_atm_acq_load(&fd->refst) & 1) == 0;
|
359
435
|
}
|
360
436
|
|
361
|
-
/* Return the read-notifier pollset */
|
362
|
-
static grpc_pollset* fd_get_read_notifier_pollset(grpc_fd* fd) {
|
363
|
-
grpc_pollset* notifier = nullptr;
|
364
|
-
|
365
|
-
gpr_mu_lock(&fd->mu);
|
366
|
-
notifier = fd->read_notifier_pollset;
|
367
|
-
gpr_mu_unlock(&fd->mu);
|
368
|
-
|
369
|
-
return notifier;
|
370
|
-
}
|
371
|
-
|
372
437
|
static grpc_error* pollset_kick_locked(grpc_fd_watcher* watcher) {
|
373
438
|
gpr_mu_lock(&watcher->pollset->mu);
|
374
439
|
GPR_ASSERT(watcher->worker);
|
@@ -424,14 +489,12 @@ static int fd_wrapped_fd(grpc_fd* fd) {
|
|
424
489
|
}
|
425
490
|
|
426
491
|
static void fd_orphan(grpc_fd* fd, grpc_closure* on_done, int* release_fd,
|
427
|
-
|
492
|
+
const char* reason) {
|
428
493
|
fd->on_done_closure = on_done;
|
429
494
|
fd->released = release_fd != nullptr;
|
430
495
|
if (release_fd != nullptr) {
|
431
496
|
*release_fd = fd->fd;
|
432
497
|
fd->released = true;
|
433
|
-
} else if (already_closed) {
|
434
|
-
fd->released = true;
|
435
498
|
}
|
436
499
|
gpr_mu_lock(&fd->mu);
|
437
500
|
REF_BY(fd, 1, reason); /* remove active status, but keep referenced */
|
@@ -513,11 +576,6 @@ static int set_ready_locked(grpc_fd* fd, grpc_closure** st) {
|
|
513
576
|
}
|
514
577
|
}
|
515
578
|
|
516
|
-
static void set_read_notifier_pollset_locked(
|
517
|
-
grpc_fd* fd, grpc_pollset* read_notifier_pollset) {
|
518
|
-
fd->read_notifier_pollset = read_notifier_pollset;
|
519
|
-
}
|
520
|
-
|
521
579
|
static void fd_shutdown(grpc_fd* fd, grpc_error* why) {
|
522
580
|
gpr_mu_lock(&fd->mu);
|
523
581
|
/* only shutdown once */
|
@@ -553,6 +611,31 @@ static void fd_notify_on_write(grpc_fd* fd, grpc_closure* closure) {
|
|
553
611
|
gpr_mu_unlock(&fd->mu);
|
554
612
|
}
|
555
613
|
|
614
|
+
static void fd_notify_on_error(grpc_fd* fd, grpc_closure* closure) {
|
615
|
+
if (grpc_polling_trace.enabled()) {
|
616
|
+
gpr_log(GPR_ERROR, "Polling engine does not support tracking errors.");
|
617
|
+
}
|
618
|
+
GRPC_CLOSURE_SCHED(closure, GRPC_ERROR_CANCELLED);
|
619
|
+
}
|
620
|
+
|
621
|
+
static void fd_set_readable(grpc_fd* fd) {
|
622
|
+
gpr_mu_lock(&fd->mu);
|
623
|
+
set_ready_locked(fd, &fd->read_closure);
|
624
|
+
gpr_mu_unlock(&fd->mu);
|
625
|
+
}
|
626
|
+
|
627
|
+
static void fd_set_writable(grpc_fd* fd) {
|
628
|
+
gpr_mu_lock(&fd->mu);
|
629
|
+
set_ready_locked(fd, &fd->write_closure);
|
630
|
+
gpr_mu_unlock(&fd->mu);
|
631
|
+
}
|
632
|
+
|
633
|
+
static void fd_set_error(grpc_fd* fd) {
|
634
|
+
if (grpc_polling_trace.enabled()) {
|
635
|
+
gpr_log(GPR_ERROR, "Polling engine does not support tracking errors.");
|
636
|
+
}
|
637
|
+
}
|
638
|
+
|
556
639
|
static uint32_t fd_begin_poll(grpc_fd* fd, grpc_pollset* pollset,
|
557
640
|
grpc_pollset_worker* worker, uint32_t read_mask,
|
558
641
|
uint32_t write_mask, grpc_fd_watcher* watcher) {
|
@@ -604,8 +687,7 @@ static uint32_t fd_begin_poll(grpc_fd* fd, grpc_pollset* pollset,
|
|
604
687
|
return mask;
|
605
688
|
}
|
606
689
|
|
607
|
-
static void fd_end_poll(grpc_fd_watcher* watcher, int got_read, int got_write
|
608
|
-
grpc_pollset* read_notifier_pollset) {
|
690
|
+
static void fd_end_poll(grpc_fd_watcher* watcher, int got_read, int got_write) {
|
609
691
|
int was_polling = 0;
|
610
692
|
int kick = 0;
|
611
693
|
grpc_fd* fd = watcher->fd;
|
@@ -641,9 +723,6 @@ static void fd_end_poll(grpc_fd_watcher* watcher, int got_read, int got_write,
|
|
641
723
|
if (set_ready_locked(fd, &fd->read_closure)) {
|
642
724
|
kick = 1;
|
643
725
|
}
|
644
|
-
if (read_notifier_pollset != nullptr) {
|
645
|
-
set_read_notifier_pollset_locked(fd, read_notifier_pollset);
|
646
|
-
}
|
647
726
|
}
|
648
727
|
if (got_write) {
|
649
728
|
if (set_ready_locked(fd, &fd->write_closure)) {
|
@@ -823,6 +902,7 @@ static void pollset_destroy(grpc_pollset* pollset) {
|
|
823
902
|
GPR_ASSERT(!pollset_has_workers(pollset));
|
824
903
|
while (pollset->local_wakeup_cache) {
|
825
904
|
grpc_cached_wakeup_fd* next = pollset->local_wakeup_cache->next;
|
905
|
+
fork_fd_list_remove_node(pollset->local_wakeup_cache->fork_fd_list);
|
826
906
|
grpc_wakeup_fd_destroy(&pollset->local_wakeup_cache->fd);
|
827
907
|
gpr_free(pollset->local_wakeup_cache);
|
828
908
|
pollset->local_wakeup_cache = next;
|
@@ -896,6 +976,7 @@ static grpc_error* pollset_work(grpc_pollset* pollset,
|
|
896
976
|
worker.wakeup_fd = static_cast<grpc_cached_wakeup_fd*>(
|
897
977
|
gpr_malloc(sizeof(*worker.wakeup_fd)));
|
898
978
|
error = grpc_wakeup_fd_init(&worker.wakeup_fd->fd);
|
979
|
+
fork_fd_list_add_wakeup_fd(worker.wakeup_fd);
|
899
980
|
if (error != GRPC_ERROR_NONE) {
|
900
981
|
GRPC_LOG_IF_ERROR("pollset_work", GRPC_ERROR_REF(error));
|
901
982
|
return error;
|
@@ -983,7 +1064,7 @@ static grpc_error* pollset_work(grpc_pollset* pollset,
|
|
983
1064
|
GRPC_SCHEDULING_END_BLOCKING_REGION;
|
984
1065
|
|
985
1066
|
if (grpc_polling_trace.enabled()) {
|
986
|
-
gpr_log(
|
1067
|
+
gpr_log(GPR_INFO, "%p poll=%d", pollset, r);
|
987
1068
|
}
|
988
1069
|
|
989
1070
|
if (r < 0) {
|
@@ -993,31 +1074,31 @@ static grpc_error* pollset_work(grpc_pollset* pollset,
|
|
993
1074
|
|
994
1075
|
for (i = 1; i < pfd_count; i++) {
|
995
1076
|
if (watchers[i].fd == nullptr) {
|
996
|
-
fd_end_poll(&watchers[i], 0, 0
|
1077
|
+
fd_end_poll(&watchers[i], 0, 0);
|
997
1078
|
} else {
|
998
1079
|
// Wake up all the file descriptors, if we have an invalid one
|
999
1080
|
// we can identify it on the next pollset_work()
|
1000
|
-
fd_end_poll(&watchers[i], 1, 1
|
1081
|
+
fd_end_poll(&watchers[i], 1, 1);
|
1001
1082
|
}
|
1002
1083
|
}
|
1003
1084
|
} else if (r == 0) {
|
1004
1085
|
for (i = 1; i < pfd_count; i++) {
|
1005
|
-
fd_end_poll(&watchers[i], 0, 0
|
1086
|
+
fd_end_poll(&watchers[i], 0, 0);
|
1006
1087
|
}
|
1007
1088
|
} else {
|
1008
1089
|
if (pfds[0].revents & POLLIN_CHECK) {
|
1009
1090
|
if (grpc_polling_trace.enabled()) {
|
1010
|
-
gpr_log(
|
1091
|
+
gpr_log(GPR_INFO, "%p: got_wakeup", pollset);
|
1011
1092
|
}
|
1012
1093
|
work_combine_error(
|
1013
1094
|
&error, grpc_wakeup_fd_consume_wakeup(&worker.wakeup_fd->fd));
|
1014
1095
|
}
|
1015
1096
|
for (i = 1; i < pfd_count; i++) {
|
1016
1097
|
if (watchers[i].fd == nullptr) {
|
1017
|
-
fd_end_poll(&watchers[i], 0, 0
|
1098
|
+
fd_end_poll(&watchers[i], 0, 0);
|
1018
1099
|
} else {
|
1019
1100
|
if (grpc_polling_trace.enabled()) {
|
1020
|
-
gpr_log(
|
1101
|
+
gpr_log(GPR_INFO, "%p got_event: %d r:%d w:%d [%d]", pollset,
|
1021
1102
|
pfds[i].fd, (pfds[i].revents & POLLIN_CHECK) != 0,
|
1022
1103
|
(pfds[i].revents & POLLOUT_CHECK) != 0, pfds[i].revents);
|
1023
1104
|
}
|
@@ -1028,7 +1109,7 @@ static grpc_error* pollset_work(grpc_pollset* pollset,
|
|
1028
1109
|
gpr_atm_no_barrier_store(&watchers[i].fd->pollhup, 1);
|
1029
1110
|
}
|
1030
1111
|
fd_end_poll(&watchers[i], pfds[i].revents & POLLIN_CHECK,
|
1031
|
-
pfds[i].revents & POLLOUT_CHECK
|
1112
|
+
pfds[i].revents & POLLOUT_CHECK);
|
1032
1113
|
}
|
1033
1114
|
}
|
1034
1115
|
}
|
@@ -1530,6 +1611,12 @@ static void run_poll(void* args) {
|
|
1530
1611
|
|
1531
1612
|
// This function overrides poll() to handle condition variable wakeup fds
|
1532
1613
|
static int cvfd_poll(struct pollfd* fds, nfds_t nfds, int timeout) {
|
1614
|
+
if (timeout == 0) {
|
1615
|
+
// Don't bother using background threads for polling if timeout is 0,
|
1616
|
+
// poll-cv might not wait for a poll to return otherwise.
|
1617
|
+
// https://github.com/grpc/grpc/issues/13298
|
1618
|
+
return poll(fds, nfds, 0);
|
1619
|
+
}
|
1533
1620
|
unsigned int i;
|
1534
1621
|
int res, idx;
|
1535
1622
|
grpc_cv_node* pollcv;
|
@@ -1700,10 +1787,15 @@ static void shutdown_engine(void) {
|
|
1700
1787
|
if (grpc_cv_wakeup_fds_enabled()) {
|
1701
1788
|
global_cv_fd_table_shutdown();
|
1702
1789
|
}
|
1790
|
+
if (track_fds_for_fork) {
|
1791
|
+
gpr_mu_destroy(&fork_fd_list_mu);
|
1792
|
+
grpc_core::Fork::SetResetChildPollingEngineFunc(nullptr);
|
1793
|
+
}
|
1703
1794
|
}
|
1704
1795
|
|
1705
1796
|
static const grpc_event_engine_vtable vtable = {
|
1706
1797
|
sizeof(grpc_pollset),
|
1798
|
+
false,
|
1707
1799
|
|
1708
1800
|
fd_create,
|
1709
1801
|
fd_wrapped_fd,
|
@@ -1711,8 +1803,11 @@ static const grpc_event_engine_vtable vtable = {
|
|
1711
1803
|
fd_shutdown,
|
1712
1804
|
fd_notify_on_read,
|
1713
1805
|
fd_notify_on_write,
|
1806
|
+
fd_notify_on_error,
|
1807
|
+
fd_set_readable,
|
1808
|
+
fd_set_writable,
|
1809
|
+
fd_set_error,
|
1714
1810
|
fd_is_shutdown,
|
1715
|
-
fd_get_read_notifier_pollset,
|
1716
1811
|
|
1717
1812
|
pollset_init,
|
1718
1813
|
pollset_shutdown,
|
@@ -1733,6 +1828,26 @@ static const grpc_event_engine_vtable vtable = {
|
|
1733
1828
|
shutdown_engine,
|
1734
1829
|
};
|
1735
1830
|
|
1831
|
+
/* Called by the child process's post-fork handler to close open fds, including
|
1832
|
+
* worker wakeup fds. This allows gRPC to shutdown in the child process without
|
1833
|
+
* interfering with connections or RPCs ongoing in the parent. */
|
1834
|
+
static void reset_event_manager_on_fork() {
|
1835
|
+
gpr_mu_lock(&fork_fd_list_mu);
|
1836
|
+
while (fork_fd_list_head != nullptr) {
|
1837
|
+
if (fork_fd_list_head->fd != nullptr) {
|
1838
|
+
close(fork_fd_list_head->fd->fd);
|
1839
|
+
fork_fd_list_head->fd->fd = -1;
|
1840
|
+
} else {
|
1841
|
+
close(fork_fd_list_head->cached_wakeup_fd->fd.read_fd);
|
1842
|
+
fork_fd_list_head->cached_wakeup_fd->fd.read_fd = -1;
|
1843
|
+
close(fork_fd_list_head->cached_wakeup_fd->fd.write_fd);
|
1844
|
+
fork_fd_list_head->cached_wakeup_fd->fd.write_fd = -1;
|
1845
|
+
}
|
1846
|
+
fork_fd_list_head = fork_fd_list_head->next;
|
1847
|
+
}
|
1848
|
+
gpr_mu_unlock(&fork_fd_list_mu);
|
1849
|
+
}
|
1850
|
+
|
1736
1851
|
const grpc_event_engine_vtable* grpc_init_poll_posix(bool explicit_request) {
|
1737
1852
|
if (!grpc_has_wakeup_fd()) {
|
1738
1853
|
gpr_log(GPR_ERROR, "Skipping poll because of no wakeup fd.");
|
@@ -1741,6 +1856,12 @@ const grpc_event_engine_vtable* grpc_init_poll_posix(bool explicit_request) {
|
|
1741
1856
|
if (!GRPC_LOG_IF_ERROR("pollset_global_init", pollset_global_init())) {
|
1742
1857
|
return nullptr;
|
1743
1858
|
}
|
1859
|
+
if (grpc_core::Fork::Enabled()) {
|
1860
|
+
track_fds_for_fork = true;
|
1861
|
+
gpr_mu_init(&fork_fd_list_mu);
|
1862
|
+
grpc_core::Fork::SetResetChildPollingEngineFunc(
|
1863
|
+
reset_event_manager_on_fork);
|
1864
|
+
}
|
1744
1865
|
return &vtable;
|
1745
1866
|
}
|
1746
1867
|
|
@@ -1755,4 +1876,4 @@ const grpc_event_engine_vtable* grpc_init_poll_cv_posix(bool explicit_request) {
|
|
1755
1876
|
return &vtable;
|
1756
1877
|
}
|
1757
1878
|
|
1758
|
-
#endif
|
1879
|
+
#endif /* GRPC_POSIX_SOCKET_EV_POLL */
|