grpc 1.57.0 → 1.58.0.pre1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Makefile +534 -284
- data/include/grpc/event_engine/event_engine.h +0 -1
- data/include/grpc/event_engine/memory_allocator.h +2 -2
- data/include/grpc/impl/channel_arg_names.h +371 -0
- data/include/grpc/impl/grpc_types.h +1 -353
- data/include/grpc/module.modulemap +1 -0
- data/src/core/ext/filters/backend_metrics/backend_metric_filter.cc +1 -1
- data/src/core/ext/filters/channel_idle/channel_idle_filter.cc +2 -1
- data/src/core/ext/filters/client_channel/client_channel.cc +7 -3
- data/src/core/ext/filters/client_channel/http_proxy.cc +1 -1
- data/src/core/ext/filters/client_channel/lb_policy/address_filtering.cc +10 -5
- data/src/core/ext/filters/client_channel/lb_policy/address_filtering.h +7 -5
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +1 -0
- data/src/core/ext/filters/client_channel/lb_policy/health_check_client.cc +5 -3
- data/src/core/ext/filters/client_channel/lb_policy/oob_backend_metric.cc +4 -2
- data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +115 -109
- data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.h +0 -5
- data/src/core/ext/filters/client_channel/lb_policy/priority/priority.cc +7 -2
- data/src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.cc +2 -1
- data/src/core/ext/filters/client_channel/lb_policy/rls/rls.cc +1 -0
- data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +1 -1
- data/src/core/ext/filters/client_channel/lb_policy/weighted_round_robin/weighted_round_robin.cc +11 -3
- data/src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc +6 -1
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_resolver.cc +8 -5
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +1 -1
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +102 -11
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +9 -4
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +4 -1
- data/src/core/ext/filters/client_channel/resolver/dns/dns_resolver_plugin.cc +6 -0
- data/src/core/ext/filters/client_channel/resolver/dns/event_engine/event_engine_client_channel_resolver.cc +41 -14
- data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +1 -1
- data/src/core/ext/filters/client_channel/resolver/polling_resolver.cc +3 -2
- data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +1 -1
- data/src/core/ext/filters/client_channel/retry_filter.h +1 -0
- data/src/core/ext/filters/client_channel/retry_service_config.cc +1 -1
- data/src/core/ext/filters/client_channel/service_config_channel_arg_filter.cc +1 -1
- data/src/core/ext/filters/client_channel/subchannel.cc +9 -5
- data/src/core/ext/filters/client_channel/subchannel.h +8 -2
- data/src/core/ext/filters/deadline/deadline_filter.cc +1 -1
- data/src/core/ext/filters/http/client/http_client_filter.cc +1 -0
- data/src/core/ext/filters/http/client_authority_filter.cc +1 -1
- data/src/core/ext/filters/http/message_compress/compression_filter.cc +1 -0
- data/src/core/ext/filters/http/server/http_server_filter.cc +1 -1
- data/src/core/ext/filters/message_size/message_size_filter.cc +1 -0
- data/src/core/ext/filters/rbac/rbac_service_config_parser.cc +4 -7
- data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +1 -0
- data/src/core/ext/transport/chttp2/server/chttp2_server.cc +8 -12
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +357 -358
- data/src/core/ext/transport/chttp2/transport/frame_ping.cc +5 -18
- data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +63 -4
- data/src/core/ext/transport/chttp2/transport/hpack_parser.h +7 -2
- data/src/core/ext/transport/chttp2/transport/internal.h +30 -57
- data/src/core/ext/transport/chttp2/transport/parsing.cc +16 -7
- data/src/core/ext/transport/chttp2/transport/ping_abuse_policy.cc +80 -0
- data/src/core/ext/transport/chttp2/transport/ping_abuse_policy.h +55 -0
- data/src/core/ext/transport/chttp2/transport/ping_rate_policy.cc +98 -0
- data/src/core/ext/transport/chttp2/transport/ping_rate_policy.h +73 -0
- data/src/core/ext/transport/chttp2/transport/writing.cc +81 -89
- data/src/core/ext/transport/inproc/inproc_transport.cc +1 -0
- data/src/core/ext/xds/xds_client_grpc.cc +1 -0
- data/src/core/ext/xds/xds_http_fault_filter.cc +1 -2
- data/src/core/ext/xds/xds_http_fault_filter.h +1 -2
- data/src/core/ext/xds/xds_http_filters.h +2 -4
- data/src/core/ext/xds/xds_http_rbac_filter.cc +3 -8
- data/src/core/ext/xds/xds_http_rbac_filter.h +1 -2
- data/src/core/ext/xds/xds_http_stateful_session_filter.cc +1 -2
- data/src/core/ext/xds/xds_http_stateful_session_filter.h +1 -2
- data/src/core/ext/xds/xds_lb_policy_registry.cc +3 -6
- data/src/core/ext/xds/xds_routing.cc +2 -2
- data/src/core/ext/xds/xds_transport_grpc.cc +1 -0
- data/src/core/lib/avl/avl.h +10 -173
- data/src/core/lib/channel/call_tracer.cc +289 -0
- data/src/core/lib/channel/call_tracer.h +35 -0
- data/src/core/lib/channel/channel_args.cc +84 -79
- data/src/core/lib/channel/channel_args.h +29 -17
- data/src/core/lib/channel/connected_channel.cc +0 -1
- data/src/core/lib/channel/promise_based_filter.cc +4 -1
- data/src/core/lib/compression/compression_internal.cc +8 -4
- data/src/core/lib/debug/stats_data.cc +93 -21
- data/src/core/lib/debug/stats_data.h +41 -0
- data/src/core/lib/event_engine/ares_resolver.cc +712 -0
- data/src/core/lib/event_engine/ares_resolver.h +150 -0
- data/src/core/lib/event_engine/cf_engine/cf_engine.cc +9 -3
- data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.cc +2 -2
- data/src/core/lib/event_engine/cf_engine/dns_service_resolver.cc +229 -0
- data/src/core/lib/event_engine/cf_engine/dns_service_resolver.h +117 -0
- data/src/core/lib/event_engine/forkable.cc +15 -1
- data/src/core/lib/event_engine/forkable.h +15 -0
- data/src/core/lib/event_engine/grpc_polled_fd.h +73 -0
- data/src/core/lib/event_engine/posix_engine/ev_poll_posix.cc +25 -3
- data/src/core/lib/event_engine/posix_engine/ev_poll_posix.h +10 -1
- data/src/core/lib/event_engine/posix_engine/grpc_polled_fd_posix.h +197 -0
- data/src/core/lib/event_engine/posix_engine/posix_endpoint.cc +3 -3
- data/src/core/lib/event_engine/posix_engine/posix_engine.cc +47 -1
- data/src/core/lib/event_engine/posix_engine/posix_engine.h +12 -1
- data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.cc +1 -0
- data/src/core/lib/event_engine/posix_engine/traced_buffer_list.cc +2 -0
- data/src/core/lib/event_engine/thread_pool/thread_count.cc +58 -0
- data/src/core/lib/event_engine/thread_pool/thread_count.h +161 -0
- data/src/core/lib/event_engine/thread_pool/thread_pool_factory.cc +7 -0
- data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.cc +86 -111
- data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.h +15 -61
- data/src/core/lib/event_engine/windows/windows_endpoint.cc +3 -4
- data/src/core/lib/experiments/config.cc +14 -0
- data/src/core/lib/experiments/experiments.cc +141 -304
- data/src/core/lib/experiments/experiments.h +16 -17
- data/src/core/lib/gprpp/ref_counted.h +3 -1
- data/src/core/lib/gprpp/ref_counted_string.cc +44 -0
- data/src/core/lib/gprpp/ref_counted_string.h +146 -0
- data/src/core/lib/gprpp/time.h +2 -2
- data/src/core/lib/gprpp/work_serializer.cc +36 -0
- data/src/core/lib/gprpp/work_serializer.h +5 -0
- data/src/core/lib/http/httpcli_security_connector.cc +1 -0
- data/src/core/lib/iomgr/buffer_list.cc +2 -0
- data/src/core/lib/iomgr/event_engine_shims/endpoint.cc +7 -22
- data/src/core/lib/iomgr/tcp_posix.cc +3 -3
- data/src/core/lib/promise/detail/basic_seq.h +1 -372
- data/src/core/lib/promise/detail/seq_state.h +2076 -0
- data/src/core/lib/promise/seq.h +19 -2
- data/src/core/lib/promise/sleep.h +5 -10
- data/src/core/lib/promise/try_seq.h +34 -2
- data/src/core/lib/resource_quota/api.cc +1 -0
- data/src/core/lib/resource_quota/arena.cc +2 -0
- data/src/core/lib/resource_quota/arena.h +42 -8
- data/src/core/lib/resource_quota/memory_quota.cc +0 -1
- data/src/core/lib/resource_quota/resource_quota.h +1 -0
- data/src/core/lib/security/authorization/authorization_policy_provider.h +1 -1
- data/src/core/lib/security/authorization/rbac_policy.h +1 -1
- data/src/core/lib/security/credentials/external/aws_request_signer.cc +8 -0
- data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +1 -0
- data/src/core/lib/security/credentials/jwt/json_token.cc +17 -0
- data/src/core/lib/security/credentials/jwt/json_token.h +4 -0
- data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +42 -0
- data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +1 -0
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc +4 -0
- data/src/core/lib/security/credentials/tls/tls_credentials.cc +1 -0
- data/src/core/lib/security/credentials/xds/xds_credentials.cc +1 -0
- data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +1 -0
- data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +1 -0
- data/src/core/lib/security/security_connector/ssl_utils.cc +1 -0
- data/src/core/lib/security/transport/client_auth_filter.cc +8 -5
- data/src/core/lib/security/transport/security_handshaker.cc +1 -0
- data/src/core/lib/security/transport/server_auth_filter.cc +2 -0
- data/src/core/lib/surface/call.cc +32 -8
- data/src/core/lib/surface/channel.cc +1 -0
- data/src/core/lib/surface/completion_queue.cc +10 -0
- data/src/core/lib/surface/init.cc +1 -0
- data/src/core/lib/surface/server.cc +67 -64
- data/src/core/lib/surface/server.h +1 -15
- data/src/core/lib/surface/version.cc +2 -2
- data/src/core/tsi/alts/crypt/aes_gcm.cc +27 -2
- data/src/core/tsi/ssl_transport_security.cc +11 -0
- data/src/ruby/lib/grpc/generic/active_call.rb +9 -14
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/src/ruby/pb/test/client.rb +16 -0
- data/src/ruby/spec/generic/rpc_server_spec.rb +3 -3
- data/third_party/abseil-cpp/absl/algorithm/container.h +3 -2
- data/third_party/abseil-cpp/absl/base/attributes.h +58 -5
- data/third_party/abseil-cpp/absl/base/call_once.h +1 -1
- data/third_party/abseil-cpp/absl/base/casts.h +8 -8
- data/third_party/abseil-cpp/absl/base/config.h +89 -106
- data/third_party/abseil-cpp/absl/base/dynamic_annotations.h +26 -1
- data/third_party/abseil-cpp/absl/base/internal/direct_mmap.h +2 -2
- data/third_party/abseil-cpp/absl/base/internal/low_level_alloc.cc +50 -39
- data/third_party/abseil-cpp/absl/base/internal/low_level_alloc.h +2 -1
- data/third_party/abseil-cpp/absl/base/internal/prefetch.h +17 -18
- data/third_party/abseil-cpp/absl/base/internal/raw_logging.cc +32 -3
- data/third_party/abseil-cpp/absl/base/internal/raw_logging.h +24 -4
- data/third_party/abseil-cpp/absl/base/internal/sysinfo.cc +31 -73
- data/third_party/abseil-cpp/absl/base/internal/thread_identity.cc +9 -8
- data/third_party/abseil-cpp/absl/base/internal/thread_identity.h +11 -11
- data/third_party/abseil-cpp/absl/base/internal/throw_delegate.cc +23 -32
- data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.cc +2 -3
- data/third_party/abseil-cpp/absl/base/options.h +1 -1
- data/third_party/abseil-cpp/absl/base/policy_checks.h +3 -3
- data/third_party/abseil-cpp/absl/base/prefetch.h +198 -0
- data/third_party/abseil-cpp/absl/container/fixed_array.h +54 -29
- data/third_party/abseil-cpp/absl/container/flat_hash_map.h +5 -1
- data/third_party/abseil-cpp/absl/container/flat_hash_set.h +6 -2
- data/third_party/abseil-cpp/absl/container/inlined_vector.h +167 -79
- data/third_party/abseil-cpp/absl/container/internal/common_policy_traits.h +1 -1
- data/third_party/abseil-cpp/absl/container/internal/compressed_tuple.h +3 -21
- data/third_party/abseil-cpp/absl/container/internal/container_memory.h +1 -1
- data/third_party/abseil-cpp/absl/container/internal/hash_function_defaults.h +46 -0
- data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.cc +2 -0
- data/third_party/abseil-cpp/absl/container/internal/inlined_vector.h +85 -26
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_map.h +35 -18
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.cc +70 -29
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.h +437 -236
- data/third_party/abseil-cpp/absl/crc/crc32c.h +8 -1
- data/third_party/abseil-cpp/absl/crc/internal/cpu_detect.cc +14 -8
- data/third_party/abseil-cpp/absl/crc/internal/crc.cc +4 -35
- data/third_party/abseil-cpp/absl/crc/internal/crc.h +2 -10
- data/third_party/abseil-cpp/absl/crc/internal/crc32_x86_arm_combined_simd.h +1 -1
- data/third_party/abseil-cpp/absl/crc/internal/crc_cord_state.cc +1 -1
- data/third_party/abseil-cpp/absl/crc/internal/crc_cord_state.h +4 -4
- data/third_party/abseil-cpp/absl/crc/internal/crc_internal.h +8 -10
- data/third_party/abseil-cpp/absl/crc/internal/crc_memcpy_x86_64.cc +17 -19
- data/third_party/abseil-cpp/absl/crc/internal/crc_x86_arm_combined.cc +8 -8
- data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.h +2 -1
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_aarch64-inl.inc +59 -23
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_powerpc-inl.inc +1 -1
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_x86-inl.inc +1 -1
- data/third_party/abseil-cpp/absl/debugging/internal/symbolize.h +1 -1
- data/third_party/abseil-cpp/absl/debugging/symbolize_elf.inc +43 -19
- data/third_party/abseil-cpp/absl/debugging/symbolize_emscripten.inc +3 -0
- data/third_party/abseil-cpp/absl/flags/commandlineflag.h +1 -1
- data/third_party/abseil-cpp/absl/flags/internal/commandlineflag.cc +1 -1
- data/third_party/abseil-cpp/absl/flags/internal/flag.cc +2 -2
- data/third_party/abseil-cpp/absl/flags/internal/flag.h +16 -15
- data/third_party/abseil-cpp/absl/flags/internal/flag_msvc.inc +1 -1
- data/third_party/abseil-cpp/absl/flags/marshalling.cc +43 -2
- data/third_party/abseil-cpp/absl/flags/marshalling.h +5 -0
- data/third_party/abseil-cpp/absl/functional/any_invocable.h +9 -1
- data/third_party/abseil-cpp/absl/functional/bind_front.h +1 -1
- data/third_party/abseil-cpp/absl/functional/function_ref.h +3 -3
- data/third_party/abseil-cpp/absl/functional/internal/any_invocable.h +37 -24
- data/third_party/abseil-cpp/absl/functional/internal/function_ref.h +19 -9
- data/third_party/abseil-cpp/absl/hash/hash.h +7 -4
- data/third_party/abseil-cpp/absl/hash/internal/hash.h +38 -15
- data/third_party/abseil-cpp/absl/hash/internal/low_level_hash.cc +6 -0
- data/third_party/abseil-cpp/absl/meta/type_traits.h +48 -373
- data/third_party/abseil-cpp/absl/numeric/bits.h +4 -4
- data/third_party/abseil-cpp/absl/numeric/int128.cc +20 -8
- data/third_party/abseil-cpp/absl/numeric/int128.h +36 -39
- data/third_party/abseil-cpp/absl/numeric/int128_have_intrinsic.inc +0 -3
- data/third_party/abseil-cpp/absl/numeric/int128_no_intrinsic.inc +47 -30
- data/third_party/abseil-cpp/absl/random/internal/fast_uniform_bits.h +4 -3
- data/third_party/abseil-cpp/absl/random/internal/generate_real.h +1 -1
- data/third_party/abseil-cpp/absl/random/internal/platform.h +1 -1
- data/third_party/abseil-cpp/absl/random/internal/randen_detect.cc +4 -0
- data/third_party/abseil-cpp/absl/random/internal/randen_engine.h +1 -1
- data/third_party/abseil-cpp/absl/random/internal/randen_hwaes.cc +1 -1
- data/third_party/abseil-cpp/absl/random/internal/uniform_helper.h +1 -1
- data/third_party/abseil-cpp/absl/status/internal/status_internal.h +4 -0
- data/third_party/abseil-cpp/absl/status/internal/statusor_internal.h +12 -24
- data/third_party/abseil-cpp/absl/status/status.cc +11 -7
- data/third_party/abseil-cpp/absl/status/status.h +11 -2
- data/third_party/abseil-cpp/absl/status/statusor.h +22 -8
- data/third_party/abseil-cpp/absl/strings/ascii.cc +54 -6
- data/third_party/abseil-cpp/absl/strings/charconv.cc +21 -4
- data/third_party/abseil-cpp/absl/strings/charconv.h +2 -2
- data/third_party/abseil-cpp/absl/strings/cord.cc +1 -2
- data/third_party/abseil-cpp/absl/strings/cord.h +32 -5
- data/third_party/abseil-cpp/absl/strings/cord_analysis.cc +23 -1
- data/third_party/abseil-cpp/absl/strings/cord_analysis.h +18 -0
- data/third_party/abseil-cpp/absl/strings/cord_buffer.h +2 -5
- data/third_party/abseil-cpp/absl/strings/escaping.cc +10 -32
- data/third_party/abseil-cpp/absl/strings/escaping.h +1 -1
- data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.cc +2 -4
- data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.h +3 -3
- data/third_party/abseil-cpp/absl/strings/internal/cord_internal.cc +0 -1
- data/third_party/abseil-cpp/absl/strings/internal/cord_internal.h +15 -13
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.cc +13 -4
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.h +8 -0
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_consume.cc +5 -3
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_consume.h +4 -7
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_flat.h +8 -0
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_ring.h +2 -2
- data/third_party/abseil-cpp/absl/strings/internal/cordz_handle.cc +46 -20
- data/third_party/abseil-cpp/absl/strings/internal/cordz_handle.h +1 -34
- data/third_party/abseil-cpp/absl/strings/internal/cordz_info.cc +2 -1
- data/third_party/abseil-cpp/absl/strings/internal/escaping.cc +23 -0
- data/third_party/abseil-cpp/absl/strings/internal/escaping.h +1 -0
- data/third_party/abseil-cpp/absl/strings/internal/memutil.cc +2 -77
- data/third_party/abseil-cpp/absl/strings/internal/memutil.h +4 -112
- data/third_party/abseil-cpp/absl/strings/internal/stl_type_traits.h +1 -1
- data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.cc +10 -31
- data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.h +8 -8
- data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.h +5 -20
- data/third_party/abseil-cpp/absl/strings/internal/str_format/constexpr_parser.h +1 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/extension.h +1 -1
- data/third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.cc +9 -9
- data/third_party/abseil-cpp/absl/strings/internal/str_split_internal.h +56 -6
- data/third_party/abseil-cpp/absl/strings/match.cc +87 -0
- data/third_party/abseil-cpp/absl/strings/match.h +19 -0
- data/third_party/abseil-cpp/absl/strings/numbers.cc +154 -122
- data/third_party/abseil-cpp/absl/strings/numbers.h +1 -6
- data/third_party/abseil-cpp/absl/strings/str_cat.cc +7 -50
- data/third_party/abseil-cpp/absl/strings/str_cat.h +83 -15
- data/third_party/abseil-cpp/absl/strings/str_format.h +6 -3
- data/third_party/abseil-cpp/absl/strings/str_split.cc +9 -6
- data/third_party/abseil-cpp/absl/strings/string_view.cc +26 -4
- data/third_party/abseil-cpp/absl/synchronization/internal/create_thread_identity.cc +5 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/futex.h +63 -43
- data/third_party/abseil-cpp/absl/synchronization/internal/futex_waiter.cc +111 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/futex_waiter.h +63 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/graphcycles.cc +11 -7
- data/third_party/abseil-cpp/absl/synchronization/internal/kernel_timeout.cc +225 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/kernel_timeout.h +122 -114
- data/third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.cc +12 -8
- data/third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.h +10 -1
- data/third_party/abseil-cpp/absl/synchronization/internal/pthread_waiter.cc +167 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/pthread_waiter.h +60 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/sem_waiter.cc +122 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/sem_waiter.h +65 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/stdcpp_waiter.cc +91 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/stdcpp_waiter.h +56 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/waiter.h +19 -113
- data/third_party/abseil-cpp/absl/synchronization/internal/waiter_base.cc +42 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/waiter_base.h +90 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/win32_waiter.cc +151 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/win32_waiter.h +70 -0
- data/third_party/abseil-cpp/absl/synchronization/mutex.cc +407 -411
- data/third_party/abseil-cpp/absl/synchronization/mutex.h +152 -118
- data/third_party/abseil-cpp/absl/time/clock.cc +6 -7
- data/third_party/abseil-cpp/absl/time/duration.cc +24 -26
- data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/time_zone.h +1 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_fixed.cc +1 -1
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_format.cc +3 -3
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.cc +8 -6
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.h +6 -3
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.cc +4 -2
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.h +4 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.cc +322 -295
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.h +8 -17
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.cc +51 -33
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.h +7 -2
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_lookup.cc +128 -2
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_posix.h +1 -1
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/tzfile.h +5 -1
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/zone_info_source.cc +34 -34
- data/third_party/abseil-cpp/absl/time/time.cc +9 -2
- data/third_party/abseil-cpp/absl/time/time.h +115 -15
- data/third_party/abseil-cpp/absl/types/internal/optional.h +0 -52
- data/third_party/abseil-cpp/absl/types/internal/span.h +2 -2
- data/third_party/abseil-cpp/absl/types/internal/variant.h +2 -2
- data/third_party/abseil-cpp/absl/types/optional.h +15 -13
- data/third_party/abseil-cpp/absl/types/span.h +1 -2
- data/third_party/boringssl-with-bazel/err_data.c +15 -14
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_gentm.c +7 -3
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_strex.c +7 -7
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_utctm.c +7 -3
- data/third_party/boringssl-with-bazel/src/crypto/bio/connect.c +5 -5
- data/third_party/boringssl-with-bazel/src/crypto/bio/errno.c +92 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/fd.c +4 -48
- data/third_party/boringssl-with-bazel/src/crypto/bio/file.c +11 -6
- data/third_party/boringssl-with-bazel/src/crypto/bio/internal.h +16 -6
- data/third_party/boringssl-with-bazel/src/crypto/bio/socket.c +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/bio/socket_helper.c +9 -0
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbs.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/conf/conf.c +3 -7
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_apple.c +0 -2
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_fuchsia.c +0 -1
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_linux.c +0 -2
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_openbsd.c +0 -1
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_sysreg.c +93 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_win.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_freebsd.c +0 -1
- data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_linux.c +0 -2
- data/third_party/boringssl-with-bazel/src/crypto/dh_extra/dh_asn1.c +4 -0
- data/third_party/boringssl-with-bazel/src/crypto/dh_extra/params.c +5 -0
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/hash_to_curve.c +9 -14
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/internal.h +4 -6
- data/third_party/boringssl-with-bazel/src/crypto/err/err.c +10 -11
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/check.c +37 -8
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/dh.c +38 -19
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/internal.h +7 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.c +39 -16
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/service_indicator.c +4 -7
- data/third_party/boringssl-with-bazel/src/crypto/hpke/hpke.c +7 -0
- data/third_party/boringssl-with-bazel/src/crypto/internal.h +13 -21
- data/third_party/boringssl-with-bazel/src/crypto/obj/obj.c +6 -23
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/getentropy.c +4 -0
- data/third_party/boringssl-with-bazel/src/crypto/stack/stack.c +5 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/by_dir.c +1 -6
- data/third_party/boringssl-with-bazel/src/crypto/x509/by_file.c +0 -3
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_d2.c +1 -3
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_alt.c +2 -3
- data/third_party/boringssl-with-bazel/src/include/openssl/base.h +9 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/bio.h +11 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/dh.h +4 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/ec.h +7 -9
- data/third_party/boringssl-with-bazel/src/include/openssl/hpke.h +6 -2
- data/third_party/boringssl-with-bazel/src/include/openssl/span.h +22 -20
- data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +4 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/stack.h +20 -12
- data/third_party/boringssl-with-bazel/src/include/openssl/target.h +50 -3
- data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +0 -4
- data/third_party/boringssl-with-bazel/src/ssl/ssl_cipher.cc +2 -2
- data/third_party/boringssl-with-bazel/src/ssl/ssl_file.cc +4 -4
- data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +2 -0
- metadata +41 -33
- data/src/core/lib/promise/detail/basic_join.h +0 -197
- data/src/core/lib/promise/detail/switch.h +0 -1455
- data/src/core/lib/promise/try_join.h +0 -82
- data/third_party/abseil-cpp/absl/synchronization/internal/waiter.cc +0 -403
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_freebsd.c +0 -62
- data/third_party/boringssl-with-bazel/src/crypto/cpu_arm.c +0 -38
- data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_openbsd.c +0 -31
- data/third_party/re2/util/benchmark.h +0 -156
- data/third_party/re2/util/flags.h +0 -26
- data/third_party/re2/util/malloc_counter.h +0 -19
- data/third_party/re2/util/pcre.cc +0 -1025
- data/third_party/re2/util/pcre.h +0 -681
- data/third_party/re2/util/test.h +0 -50
- data/third_party/upb/upb/mini_table.h +0 -36
- data/third_party/zlib/gzclose.c +0 -25
- data/third_party/zlib/gzlib.c +0 -639
- data/third_party/zlib/gzread.c +0 -650
- data/third_party/zlib/gzwrite.c +0 -677
@@ -233,7 +233,7 @@ static int conn_state(BIO *bio, BIO_CONNECT *c) {
|
|
233
233
|
BIO_clear_retry_flags(bio);
|
234
234
|
ret = connect(bio->num, (struct sockaddr*) &c->them, c->them_length);
|
235
235
|
if (ret < 0) {
|
236
|
-
if (
|
236
|
+
if (bio_socket_should_retry(ret)) {
|
237
237
|
BIO_set_flags(bio, (BIO_FLAGS_IO_SPECIAL | BIO_FLAGS_SHOULD_RETRY));
|
238
238
|
c->state = BIO_CONN_S_BLOCKED_CONNECT;
|
239
239
|
bio->retry_reason = BIO_RR_CONNECT;
|
@@ -252,7 +252,7 @@ static int conn_state(BIO *bio, BIO_CONNECT *c) {
|
|
252
252
|
case BIO_CONN_S_BLOCKED_CONNECT:
|
253
253
|
i = bio_sock_error(bio->num);
|
254
254
|
if (i) {
|
255
|
-
if (
|
255
|
+
if (bio_socket_should_retry(ret)) {
|
256
256
|
BIO_set_flags(bio, (BIO_FLAGS_IO_SPECIAL | BIO_FLAGS_SHOULD_RETRY));
|
257
257
|
c->state = BIO_CONN_S_BLOCKED_CONNECT;
|
258
258
|
bio->retry_reason = BIO_RR_CONNECT;
|
@@ -366,7 +366,7 @@ static int conn_read(BIO *bio, char *out, int out_len) {
|
|
366
366
|
ret = (int)recv(bio->num, out, out_len, 0);
|
367
367
|
BIO_clear_retry_flags(bio);
|
368
368
|
if (ret <= 0) {
|
369
|
-
if (
|
369
|
+
if (bio_socket_should_retry(ret)) {
|
370
370
|
BIO_set_retry_read(bio);
|
371
371
|
}
|
372
372
|
}
|
@@ -390,7 +390,7 @@ static int conn_write(BIO *bio, const char *in, int in_len) {
|
|
390
390
|
ret = (int)send(bio->num, in, in_len, 0);
|
391
391
|
BIO_clear_retry_flags(bio);
|
392
392
|
if (ret <= 0) {
|
393
|
-
if (
|
393
|
+
if (bio_socket_should_retry(ret)) {
|
394
394
|
BIO_set_retry_write(bio);
|
395
395
|
}
|
396
396
|
}
|
@@ -532,7 +532,7 @@ int BIO_set_conn_port(BIO *bio, const char *port_str) {
|
|
532
532
|
|
533
533
|
int BIO_set_conn_int_port(BIO *bio, const int *port) {
|
534
534
|
char buf[DECIMAL_SIZE(int) + 1];
|
535
|
-
|
535
|
+
snprintf(buf, sizeof(buf), "%d", *port);
|
536
536
|
return BIO_set_conn_port(bio, buf);
|
537
537
|
}
|
538
538
|
|
@@ -0,0 +1,92 @@
|
|
1
|
+
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
|
2
|
+
* All rights reserved.
|
3
|
+
*
|
4
|
+
* This package is an SSL implementation written
|
5
|
+
* by Eric Young (eay@cryptsoft.com).
|
6
|
+
* The implementation was written so as to conform with Netscapes SSL.
|
7
|
+
*
|
8
|
+
* This library is free for commercial and non-commercial use as long as
|
9
|
+
* the following conditions are aheared to. The following conditions
|
10
|
+
* apply to all code found in this distribution, be it the RC4, RSA,
|
11
|
+
* lhash, DES, etc., code; not just the SSL code. The SSL documentation
|
12
|
+
* included with this distribution is covered by the same copyright terms
|
13
|
+
* except that the holder is Tim Hudson (tjh@cryptsoft.com).
|
14
|
+
*
|
15
|
+
* Copyright remains Eric Young's, and as such any Copyright notices in
|
16
|
+
* the code are not to be removed.
|
17
|
+
* If this package is used in a product, Eric Young should be given attribution
|
18
|
+
* as the author of the parts of the library used.
|
19
|
+
* This can be in the form of a textual message at program startup or
|
20
|
+
* in documentation (online or textual) provided with the package.
|
21
|
+
*
|
22
|
+
* Redistribution and use in source and binary forms, with or without
|
23
|
+
* modification, are permitted provided that the following conditions
|
24
|
+
* are met:
|
25
|
+
* 1. Redistributions of source code must retain the copyright
|
26
|
+
* notice, this list of conditions and the following disclaimer.
|
27
|
+
* 2. Redistributions in binary form must reproduce the above copyright
|
28
|
+
* notice, this list of conditions and the following disclaimer in the
|
29
|
+
* documentation and/or other materials provided with the distribution.
|
30
|
+
* 3. All advertising materials mentioning features or use of this software
|
31
|
+
* must display the following acknowledgement:
|
32
|
+
* "This product includes cryptographic software written by
|
33
|
+
* Eric Young (eay@cryptsoft.com)"
|
34
|
+
* The word 'cryptographic' can be left out if the rouines from the library
|
35
|
+
* being used are not cryptographic related :-).
|
36
|
+
* 4. If you include any Windows specific code (or a derivative thereof) from
|
37
|
+
* the apps directory (application code) you must include an acknowledgement:
|
38
|
+
* "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
|
39
|
+
*
|
40
|
+
* THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
|
41
|
+
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
42
|
+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
43
|
+
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
44
|
+
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
45
|
+
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
46
|
+
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
47
|
+
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
48
|
+
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
49
|
+
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
50
|
+
* SUCH DAMAGE.
|
51
|
+
*
|
52
|
+
* The licence and distribution terms for any publically available version or
|
53
|
+
* derivative of this code cannot be changed. i.e. this code cannot simply be
|
54
|
+
* copied and put under another distribution licence
|
55
|
+
* [including the GNU Public Licence.] */
|
56
|
+
|
57
|
+
#include <openssl/bio.h>
|
58
|
+
|
59
|
+
#include <errno.h>
|
60
|
+
|
61
|
+
#include "internal.h"
|
62
|
+
|
63
|
+
|
64
|
+
int bio_errno_should_retry(int return_value) {
|
65
|
+
if (return_value != -1) {
|
66
|
+
return 0;
|
67
|
+
}
|
68
|
+
|
69
|
+
return
|
70
|
+
#ifdef EWOULDBLOCK
|
71
|
+
errno == EWOULDBLOCK ||
|
72
|
+
#endif
|
73
|
+
#ifdef ENOTCONN
|
74
|
+
errno == ENOTCONN ||
|
75
|
+
#endif
|
76
|
+
#ifdef EINTR
|
77
|
+
errno == EINTR ||
|
78
|
+
#endif
|
79
|
+
#ifdef EAGAIN
|
80
|
+
errno == EAGAIN ||
|
81
|
+
#endif
|
82
|
+
#ifdef EPROTO
|
83
|
+
errno == EPROTO ||
|
84
|
+
#endif
|
85
|
+
#ifdef EINPROGRESS
|
86
|
+
errno == EINPROGRESS ||
|
87
|
+
#endif
|
88
|
+
#ifdef EALREADY
|
89
|
+
errno == EALREADY ||
|
90
|
+
#endif
|
91
|
+
0;
|
92
|
+
}
|
@@ -65,9 +65,6 @@
|
|
65
65
|
#include <unistd.h>
|
66
66
|
#else
|
67
67
|
#include <io.h>
|
68
|
-
OPENSSL_MSVC_PRAGMA(warning(push, 3))
|
69
|
-
#include <windows.h>
|
70
|
-
OPENSSL_MSVC_PRAGMA(warning(pop))
|
71
68
|
#endif
|
72
69
|
|
73
70
|
#include <openssl/err.h>
|
@@ -77,59 +74,18 @@ OPENSSL_MSVC_PRAGMA(warning(pop))
|
|
77
74
|
#include "../internal.h"
|
78
75
|
|
79
76
|
|
80
|
-
static int bio_fd_non_fatal_error(int err) {
|
81
|
-
if (
|
82
|
-
#ifdef EWOULDBLOCK
|
83
|
-
err == EWOULDBLOCK ||
|
84
|
-
#endif
|
85
|
-
#ifdef WSAEWOULDBLOCK
|
86
|
-
err == WSAEWOULDBLOCK ||
|
87
|
-
#endif
|
88
|
-
#ifdef ENOTCONN
|
89
|
-
err == ENOTCONN ||
|
90
|
-
#endif
|
91
|
-
#ifdef EINTR
|
92
|
-
err == EINTR ||
|
93
|
-
#endif
|
94
|
-
#ifdef EAGAIN
|
95
|
-
err == EAGAIN ||
|
96
|
-
#endif
|
97
|
-
#ifdef EPROTO
|
98
|
-
err == EPROTO ||
|
99
|
-
#endif
|
100
|
-
#ifdef EINPROGRESS
|
101
|
-
err == EINPROGRESS ||
|
102
|
-
#endif
|
103
|
-
#ifdef EALREADY
|
104
|
-
err == EALREADY ||
|
105
|
-
#endif
|
106
|
-
0) {
|
107
|
-
return 1;
|
108
|
-
}
|
109
|
-
return 0;
|
110
|
-
}
|
111
|
-
|
112
77
|
#if defined(OPENSSL_WINDOWS)
|
113
|
-
#define BORINGSSL_ERRNO (int)GetLastError()
|
114
78
|
#define BORINGSSL_CLOSE _close
|
115
79
|
#define BORINGSSL_LSEEK _lseek
|
116
80
|
#define BORINGSSL_READ _read
|
117
81
|
#define BORINGSSL_WRITE _write
|
118
82
|
#else
|
119
|
-
#define BORINGSSL_ERRNO errno
|
120
83
|
#define BORINGSSL_CLOSE close
|
121
84
|
#define BORINGSSL_LSEEK lseek
|
122
85
|
#define BORINGSSL_READ read
|
123
86
|
#define BORINGSSL_WRITE write
|
124
87
|
#endif
|
125
88
|
|
126
|
-
int bio_fd_should_retry(int i) {
|
127
|
-
if (i == -1) {
|
128
|
-
return bio_fd_non_fatal_error(BORINGSSL_ERRNO);
|
129
|
-
}
|
130
|
-
return 0;
|
131
|
-
}
|
132
|
-
|
133
89
|
BIO *BIO_new_fd(int fd, int close_flag) {
|
134
90
|
BIO *ret = BIO_new(BIO_s_fd());
|
135
91
|
if (ret == NULL) {
|
@@ -161,7 +117,7 @@ static int fd_read(BIO *b, char *out, int outl) {
|
|
161
117
|
ret = (int)BORINGSSL_READ(b->num, out, outl);
|
162
118
|
BIO_clear_retry_flags(b);
|
163
119
|
if (ret <= 0) {
|
164
|
-
if (
|
120
|
+
if (bio_errno_should_retry(ret)) {
|
165
121
|
BIO_set_retry_read(b);
|
166
122
|
}
|
167
123
|
}
|
@@ -173,7 +129,7 @@ static int fd_write(BIO *b, const char *in, int inl) {
|
|
173
129
|
int ret = (int)BORINGSSL_WRITE(b->num, in, inl);
|
174
130
|
BIO_clear_retry_flags(b);
|
175
131
|
if (ret <= 0) {
|
176
|
-
if (
|
132
|
+
if (bio_errno_should_retry(ret)) {
|
177
133
|
BIO_set_retry_write(b);
|
178
134
|
}
|
179
135
|
}
|
@@ -268,6 +224,8 @@ static const BIO_METHOD methods_fdp = {
|
|
268
224
|
|
269
225
|
const BIO_METHOD *BIO_s_fd(void) { return &methods_fdp; }
|
270
226
|
|
227
|
+
#endif // OPENSSL_NO_POSIX_IO
|
228
|
+
|
271
229
|
int BIO_set_fd(BIO *bio, int fd, int close_flag) {
|
272
230
|
return (int)BIO_int_ctrl(bio, BIO_C_SET_FD, close_flag, fd);
|
273
231
|
}
|
@@ -275,5 +233,3 @@ int BIO_set_fd(BIO *bio, int fd, int close_flag) {
|
|
275
233
|
int BIO_get_fd(BIO *bio, int *out_fd) {
|
276
234
|
return (int)BIO_ctrl(bio, BIO_C_GET_FD, 0, (char *) out_fd);
|
277
235
|
}
|
278
|
-
|
279
|
-
#endif // OPENSSL_NO_POSIX_IO
|
@@ -73,8 +73,6 @@
|
|
73
73
|
|
74
74
|
#include <openssl/bio.h>
|
75
75
|
|
76
|
-
#if !defined(OPENSSL_TRUSTY)
|
77
|
-
|
78
76
|
#include <errno.h>
|
79
77
|
#include <stdio.h>
|
80
78
|
#include <string.h>
|
@@ -89,11 +87,20 @@
|
|
89
87
|
#define BIO_FP_WRITE 0x04
|
90
88
|
#define BIO_FP_APPEND 0x08
|
91
89
|
|
90
|
+
#if !defined(OPENSSL_NO_FILESYSTEM)
|
91
|
+
#define fopen_if_available fopen
|
92
|
+
#else
|
93
|
+
static FILE *fopen_if_available(const char *path, const char *mode) {
|
94
|
+
errno = ENOENT;
|
95
|
+
return NULL;
|
96
|
+
}
|
97
|
+
#endif
|
98
|
+
|
92
99
|
BIO *BIO_new_file(const char *filename, const char *mode) {
|
93
100
|
BIO *ret;
|
94
101
|
FILE *file;
|
95
102
|
|
96
|
-
file =
|
103
|
+
file = fopen_if_available(filename, mode);
|
97
104
|
if (file == NULL) {
|
98
105
|
OPENSSL_PUT_SYSTEM_ERROR();
|
99
106
|
|
@@ -214,7 +221,7 @@ static long file_ctrl(BIO *b, int cmd, long num, void *ptr) {
|
|
214
221
|
ret = 0;
|
215
222
|
break;
|
216
223
|
}
|
217
|
-
fp =
|
224
|
+
fp = fopen_if_available(ptr, mode);
|
218
225
|
if (fp == NULL) {
|
219
226
|
OPENSSL_PUT_SYSTEM_ERROR();
|
220
227
|
ERR_add_error_data(5, "fopen('", ptr, "','", mode, "')");
|
@@ -310,5 +317,3 @@ long BIO_tell(BIO *bio) { return BIO_ctrl(bio, BIO_C_FILE_TELL, 0, NULL); }
|
|
310
317
|
long BIO_seek(BIO *bio, long offset) {
|
311
318
|
return BIO_ctrl(bio, BIO_C_FILE_SEEK, offset, NULL);
|
312
319
|
}
|
313
|
-
|
314
|
-
#endif // OPENSSL_TRUSTY
|
@@ -59,6 +59,7 @@
|
|
59
59
|
|
60
60
|
#include <openssl/base.h>
|
61
61
|
|
62
|
+
#if !defined(OPENSSL_NO_SOCK)
|
62
63
|
#if !defined(OPENSSL_WINDOWS)
|
63
64
|
#if defined(OPENSSL_PNACL)
|
64
65
|
// newlib uses u_short in socket.h without defining it.
|
@@ -72,13 +73,16 @@ OPENSSL_MSVC_PRAGMA(warning(push, 3))
|
|
72
73
|
OPENSSL_MSVC_PRAGMA(warning(pop))
|
73
74
|
typedef int socklen_t;
|
74
75
|
#endif
|
76
|
+
#endif // !OPENSSL_NO_SOCK
|
75
77
|
|
76
78
|
#if defined(__cplusplus)
|
77
79
|
extern "C" {
|
78
80
|
#endif
|
79
81
|
|
80
82
|
|
81
|
-
|
83
|
+
#if !defined(OPENSSL_NO_SOCK)
|
84
|
+
|
85
|
+
// bio_ip_and_port_to_socket_and_addr creates a socket and fills in |*out_addr|
|
82
86
|
// and |*out_addr_length| with the correct values for connecting to |hostname|
|
83
87
|
// on |port_str|. It returns one on success or zero on error.
|
84
88
|
int bio_ip_and_port_to_socket_and_addr(int *out_sock,
|
@@ -87,21 +91,27 @@ int bio_ip_and_port_to_socket_and_addr(int *out_sock,
|
|
87
91
|
const char *hostname,
|
88
92
|
const char *port_str);
|
89
93
|
|
90
|
-
//
|
94
|
+
// bio_socket_nbio sets whether |sock| is non-blocking. It returns one on
|
91
95
|
// success and zero otherwise.
|
92
96
|
int bio_socket_nbio(int sock, int on);
|
93
97
|
|
94
|
-
//
|
98
|
+
// bio_clear_socket_error clears the last system socket error.
|
95
99
|
//
|
96
100
|
// TODO(fork): remove all callers of this.
|
97
101
|
void bio_clear_socket_error(void);
|
98
102
|
|
99
|
-
//
|
103
|
+
// bio_sock_error returns the last socket error on |sock|.
|
100
104
|
int bio_sock_error(int sock);
|
101
105
|
|
102
|
-
//
|
106
|
+
// bio_socket_should_retry returns non-zero if |return_value| indicates an error
|
107
|
+
// and the last socket error indicates that it's non-fatal.
|
108
|
+
int bio_socket_should_retry(int return_value);
|
109
|
+
|
110
|
+
#endif // !OPENSSL_NO_SOCK
|
111
|
+
|
112
|
+
// bio_errno_should_retry returns non-zero if |return_value| indicates an error
|
103
113
|
// and |errno| indicates that it's non-fatal.
|
104
|
-
int
|
114
|
+
int bio_errno_should_retry(int return_value);
|
105
115
|
|
106
116
|
|
107
117
|
#if defined(__cplusplus)
|
@@ -104,7 +104,7 @@ static int sock_read(BIO *b, char *out, int outl) {
|
|
104
104
|
#endif
|
105
105
|
BIO_clear_retry_flags(b);
|
106
106
|
if (ret <= 0) {
|
107
|
-
if (
|
107
|
+
if (bio_socket_should_retry(ret)) {
|
108
108
|
BIO_set_retry_read(b);
|
109
109
|
}
|
110
110
|
}
|
@@ -120,7 +120,7 @@ static int sock_write(BIO *b, const char *in, int inl) {
|
|
120
120
|
#endif
|
121
121
|
BIO_clear_retry_flags(b);
|
122
122
|
if (ret <= 0) {
|
123
|
-
if (
|
123
|
+
if (bio_socket_should_retry(ret)) {
|
124
124
|
BIO_set_retry_write(b);
|
125
125
|
}
|
126
126
|
}
|
@@ -121,4 +121,13 @@ int bio_sock_error(int sock) {
|
|
121
121
|
return error;
|
122
122
|
}
|
123
123
|
|
124
|
+
int bio_socket_should_retry(int return_value) {
|
125
|
+
#if defined(OPENSSL_WINDOWS)
|
126
|
+
return return_value == -1 && WSAGetLastError() == WSAEWOULDBLOCK;
|
127
|
+
#else
|
128
|
+
// On POSIX platforms, sockets and fds are the same.
|
129
|
+
return bio_errno_should_retry(return_value);
|
130
|
+
#endif
|
131
|
+
}
|
132
|
+
|
124
133
|
#endif // OPENSSL_NO_SOCK
|
@@ -694,7 +694,7 @@ int CBS_is_unsigned_asn1_integer(const CBS *cbs) {
|
|
694
694
|
|
695
695
|
static int add_decimal(CBB *out, uint64_t v) {
|
696
696
|
char buf[DECIMAL_SIZE(uint64_t) + 1];
|
697
|
-
|
697
|
+
snprintf(buf, sizeof(buf), "%" PRIu64, v);
|
698
698
|
return CBB_add_bytes(out, (const uint8_t *)buf, strlen(buf));
|
699
699
|
}
|
700
700
|
|
@@ -387,7 +387,7 @@ static void clear_comments(CONF *conf, char *p) {
|
|
387
387
|
}
|
388
388
|
}
|
389
389
|
|
390
|
-
|
390
|
+
int NCONF_load_bio(CONF *conf, BIO *in, long *out_error_line) {
|
391
391
|
static const size_t CONFBUFSIZE = 512;
|
392
392
|
int bufnum = 0, i, ii;
|
393
393
|
BUF_MEM *buff = NULL;
|
@@ -574,7 +574,7 @@ err:
|
|
574
574
|
if (out_error_line != NULL) {
|
575
575
|
*out_error_line = eline;
|
576
576
|
}
|
577
|
-
|
577
|
+
snprintf(btmp, sizeof btmp, "%ld", eline);
|
578
578
|
ERR_add_error_data(2, "line ", btmp);
|
579
579
|
|
580
580
|
if (v != NULL) {
|
@@ -594,16 +594,12 @@ int NCONF_load(CONF *conf, const char *filename, long *out_error_line) {
|
|
594
594
|
return 0;
|
595
595
|
}
|
596
596
|
|
597
|
-
ret =
|
597
|
+
ret = NCONF_load_bio(conf, in, out_error_line);
|
598
598
|
BIO_free(in);
|
599
599
|
|
600
600
|
return ret;
|
601
601
|
}
|
602
602
|
|
603
|
-
int NCONF_load_bio(CONF *conf, BIO *bio, long *out_error_line) {
|
604
|
-
return def_load_bio(conf, bio, out_error_line);
|
605
|
-
}
|
606
|
-
|
607
603
|
int CONF_parse_list(const char *list, char sep, int remove_whitespace,
|
608
604
|
int (*list_cb)(const char *elem, size_t len, void *usr),
|
609
605
|
void *arg) {
|
@@ -0,0 +1,93 @@
|
|
1
|
+
/* Copyright (c) 2023, Google Inc.
|
2
|
+
*
|
3
|
+
* Permission to use, copy, modify, and/or distribute this software for any
|
4
|
+
* purpose with or without fee is hereby granted, provided that the above
|
5
|
+
* copyright notice and this permission notice appear in all copies.
|
6
|
+
*
|
7
|
+
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
8
|
+
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
9
|
+
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
|
10
|
+
* SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
11
|
+
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
|
12
|
+
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
|
13
|
+
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */
|
14
|
+
|
15
|
+
#include "internal.h"
|
16
|
+
|
17
|
+
// While Arm system registers are normally not available to userspace, FreeBSD
|
18
|
+
// expects userspace to simply read them. It traps the reads and fills in CPU
|
19
|
+
// capabilities.
|
20
|
+
#if defined(OPENSSL_AARCH64) && !defined(OPENSSL_STATIC_ARMCAP) && \
|
21
|
+
(defined(ANDROID_BAREMETAL) || defined(OPENSSL_FREEBSD))
|
22
|
+
|
23
|
+
#include <openssl/arm_arch.h>
|
24
|
+
|
25
|
+
#define ID_AA64PFR0_EL1_ADVSIMD 5
|
26
|
+
|
27
|
+
#define ID_AA64ISAR0_EL1_AES 1
|
28
|
+
#define ID_AA64ISAR0_EL1_SHA1 2
|
29
|
+
#define ID_AA64ISAR0_EL1_SHA2 3
|
30
|
+
|
31
|
+
#define NBITS_ID_FIELD 4
|
32
|
+
|
33
|
+
#define READ_SYSREG(name) \
|
34
|
+
({ \
|
35
|
+
uint64_t _r; \
|
36
|
+
__asm__("mrs %0, " name : "=r"(_r)); \
|
37
|
+
_r; \
|
38
|
+
})
|
39
|
+
|
40
|
+
static unsigned get_id_field(uint64_t reg, unsigned field) {
|
41
|
+
return (reg >> (field * NBITS_ID_FIELD)) & ((1 << NBITS_ID_FIELD) - 1);
|
42
|
+
}
|
43
|
+
|
44
|
+
static int get_signed_id_field(uint64_t reg, unsigned field) {
|
45
|
+
unsigned value = get_id_field(reg, field);
|
46
|
+
if (value & (1 << (NBITS_ID_FIELD - 1))) {
|
47
|
+
return (int)(value | (UINT64_MAX << NBITS_ID_FIELD));
|
48
|
+
} else {
|
49
|
+
return (int)value;
|
50
|
+
}
|
51
|
+
}
|
52
|
+
|
53
|
+
static uint32_t read_armcap(void) {
|
54
|
+
uint32_t armcap = ARMV7_NEON;
|
55
|
+
|
56
|
+
uint64_t id_aa64pfr0_el1 = READ_SYSREG("id_aa64pfr0_el1");
|
57
|
+
|
58
|
+
if (get_signed_id_field(id_aa64pfr0_el1, ID_AA64PFR0_EL1_ADVSIMD) < 0) {
|
59
|
+
// If AdvSIMD ("NEON") is missing, don't report other features either.
|
60
|
+
// This matches OpenSSL.
|
61
|
+
return 0;
|
62
|
+
}
|
63
|
+
|
64
|
+
uint64_t id_aa64isar0_el1 = READ_SYSREG("id_aa64isar0_el1");
|
65
|
+
|
66
|
+
unsigned aes = get_id_field(id_aa64isar0_el1, ID_AA64ISAR0_EL1_AES);
|
67
|
+
if (aes > 0) {
|
68
|
+
armcap |= ARMV8_AES;
|
69
|
+
}
|
70
|
+
if (aes > 1) {
|
71
|
+
armcap |= ARMV8_PMULL;
|
72
|
+
}
|
73
|
+
|
74
|
+
unsigned sha1 = get_id_field(id_aa64isar0_el1, ID_AA64ISAR0_EL1_SHA1);
|
75
|
+
if (sha1 > 0) {
|
76
|
+
armcap |= ARMV8_SHA1;
|
77
|
+
}
|
78
|
+
|
79
|
+
unsigned sha2 = get_id_field(id_aa64isar0_el1, ID_AA64ISAR0_EL1_SHA2);
|
80
|
+
if (sha2 > 0) {
|
81
|
+
armcap |= ARMV8_SHA256;
|
82
|
+
}
|
83
|
+
if (sha2 > 1) {
|
84
|
+
armcap |= ARMV8_SHA512;
|
85
|
+
}
|
86
|
+
|
87
|
+
return armcap;
|
88
|
+
}
|
89
|
+
|
90
|
+
void OPENSSL_cpuid_setup(void) { OPENSSL_armcap_P |= read_armcap(); }
|
91
|
+
|
92
|
+
#endif // OPENSSL_AARCH64 && !OPENSSL_STATIC_ARMCAP &&
|
93
|
+
// (ANDROID_BAREMETAL || OPENSSL_FREEBSD)
|
@@ -337,6 +337,11 @@ int DH_generate_parameters_ex(DH *dh, int prime_bits, int generator,
|
|
337
337
|
// It's just as OK (and in some sense better) to use a generator of the
|
338
338
|
// order-q subgroup.
|
339
339
|
|
340
|
+
if (prime_bits <= 0 || prime_bits > OPENSSL_DH_MAX_MODULUS_BITS) {
|
341
|
+
OPENSSL_PUT_ERROR(DH, DH_R_MODULUS_TOO_LARGE);
|
342
|
+
return 0;
|
343
|
+
}
|
344
|
+
|
340
345
|
BIGNUM *t1, *t2;
|
341
346
|
int g, ok = 0;
|
342
347
|
BN_CTX *ctx = NULL;
|