grpc 1.74.1 → 1.75.0.pre1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Makefile +83 -41
- data/include/grpc/credentials.h +7 -1
- data/src/core/call/client_call.cc +4 -4
- data/src/core/call/filter_fusion.h +1230 -0
- data/src/core/call/metadata.cc +22 -0
- data/src/core/call/metadata.h +24 -2
- data/src/core/channelz/channelz.cc +10 -17
- data/src/core/channelz/channelz.h +58 -19
- data/src/core/channelz/channelz_registry.cc +0 -162
- data/src/core/channelz/channelz_registry.h +14 -7
- data/src/core/channelz/property_list.cc +19 -23
- data/src/core/channelz/property_list.h +3 -1
- data/src/core/channelz/v2tov1/convert.cc +683 -0
- data/src/core/channelz/v2tov1/convert.h +58 -0
- data/src/core/channelz/v2tov1/legacy_api.cc +425 -0
- data/src/core/channelz/v2tov1/legacy_api.h +32 -0
- data/src/core/channelz/v2tov1/property_list.cc +118 -0
- data/src/core/channelz/v2tov1/property_list.h +52 -0
- data/src/core/client_channel/client_channel_filter.cc +5 -4
- data/src/core/client_channel/client_channel_filter.h +2 -2
- data/src/core/client_channel/client_channel_internal.h +2 -1
- data/src/core/client_channel/load_balanced_call_destination.cc +6 -5
- data/src/core/client_channel/subchannel.cc +14 -6
- data/src/core/client_channel/subchannel.h +2 -0
- data/src/core/config/core_configuration.cc +3 -1
- data/src/core/config/core_configuration.h +12 -0
- data/src/core/credentials/transport/alts/alts_credentials.cc +5 -0
- data/src/core/credentials/transport/alts/check_gcp_environment_windows.cc +2 -0
- data/src/core/credentials/transport/channel_creds_registry_init.cc +3 -1
- data/src/core/credentials/transport/ssl/ssl_credentials.cc +1 -1
- data/src/core/credentials/transport/ssl/ssl_security_connector.cc +8 -3
- data/src/core/credentials/transport/tls/grpc_tls_certificate_distributor.cc +29 -24
- data/src/core/credentials/transport/tls/grpc_tls_certificate_distributor.h +19 -8
- data/src/core/credentials/transport/tls/grpc_tls_certificate_provider.cc +96 -54
- data/src/core/credentials/transport/tls/grpc_tls_certificate_provider.h +15 -2
- data/src/core/credentials/transport/tls/spiffe_utils.cc +371 -0
- data/src/core/credentials/transport/tls/spiffe_utils.h +171 -0
- data/src/core/credentials/transport/tls/ssl_utils.cc +11 -10
- data/src/core/credentials/transport/tls/ssl_utils.h +4 -2
- data/src/core/credentials/transport/tls/tls_credentials.cc +2 -0
- data/src/core/credentials/transport/tls/tls_security_connector.cc +11 -26
- data/src/core/credentials/transport/tls/tls_security_connector.h +12 -12
- data/src/core/ext/filters/backend_metrics/backend_metric_filter.cc +1 -2
- data/src/core/ext/filters/http/client/http_client_filter.cc +3 -6
- data/src/core/ext/filters/http/client_authority_filter.cc +1 -2
- data/src/core/ext/filters/http/message_compress/compression_filter.cc +8 -8
- data/src/core/ext/filters/http/server/http_server_filter.cc +3 -6
- data/src/core/ext/filters/message_size/message_size_filter.cc +4 -4
- data/src/core/ext/filters/rbac/rbac_filter.cc +1 -1
- data/src/core/ext/filters/stateful_session/stateful_session_filter.cc +3 -5
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +3 -2
- data/src/core/ext/transport/chttp2/transport/flow_control.cc +1 -0
- data/src/core/ext/transport/chttp2/transport/flow_control.h +1 -0
- data/src/core/ext/transport/chttp2/transport/frame.cc +89 -6
- data/src/core/ext/transport/chttp2/transport/frame.h +38 -0
- data/src/core/ext/transport/chttp2/transport/header_assembler.h +5 -14
- data/src/core/ext/transport/chttp2/transport/hpack_parser.h +4 -1
- data/src/core/ext/transport/chttp2/transport/http2_client_transport.cc +294 -78
- data/src/core/ext/transport/chttp2/transport/http2_client_transport.h +128 -9
- data/src/core/ext/transport/chttp2/transport/http2_settings.cc +11 -38
- data/src/core/ext/transport/chttp2/transport/http2_settings.h +52 -35
- data/src/core/ext/transport/chttp2/transport/http2_settings_manager.cc +61 -0
- data/src/core/ext/transport/chttp2/transport/http2_settings_manager.h +142 -0
- data/src/core/ext/transport/chttp2/transport/http2_transport.cc +81 -3
- data/src/core/ext/transport/chttp2/transport/http2_transport.h +12 -1
- data/src/core/ext/transport/chttp2/transport/message_assembler.h +2 -2
- data/src/core/ext/transport/chttp2/transport/parsing.cc +2 -1
- data/src/core/ext/transport/chttp2/transport/ping_promise.cc +2 -1
- data/src/core/ext/transport/chttp2/transport/ping_promise.h +22 -5
- data/src/core/ext/transport/chttp2/transport/stream_data_queue.h +607 -0
- data/src/core/ext/transport/chttp2/transport/writable_streams.h +254 -0
- data/src/core/ext/transport/chttp2/transport/writing.cc +6 -4
- data/src/core/ext/upb-gen/src/proto/grpc/channelz/channelz.upb.h +4959 -0
- data/src/core/ext/upb-gen/src/proto/grpc/channelz/channelz.upb_minitable.c +1111 -0
- data/src/core/ext/upb-gen/src/proto/grpc/channelz/channelz.upb_minitable.h +108 -0
- data/src/core/ext/upb-gen/src/proto/grpc/channelz/v2/property_list.upb.h +142 -54
- data/src/core/ext/upb-gen/src/proto/grpc/channelz/v2/property_list.upb_minitable.c +18 -14
- data/src/core/ext/upb-gen/src/proto/grpc/channelz/v2/property_list.upb_minitable.h +2 -2
- data/src/core/ext/upbdefs-gen/src/proto/grpc/channelz/channelz.upbdefs.c +716 -0
- data/src/core/ext/upbdefs-gen/src/proto/grpc/channelz/channelz.upbdefs.h +227 -0
- data/src/core/ext/upbdefs-gen/src/proto/grpc/channelz/v2/property_list.upbdefs.c +86 -88
- data/src/core/ext/upbdefs-gen/src/proto/grpc/channelz/v2/property_list.upbdefs.h +2 -2
- data/src/core/filter/auth/auth_filters.h +2 -2
- data/src/core/filter/fused_filters.cc +154 -0
- data/src/core/handshaker/security/legacy_secure_endpoint.cc +1 -1
- data/src/core/handshaker/security/pipelined_secure_endpoint.cc +965 -0
- data/src/core/handshaker/security/secure_endpoint.cc +28 -13
- data/src/core/handshaker/security/secure_endpoint.h +8 -0
- data/src/core/lib/channel/promise_based_filter.cc +15 -25
- data/src/core/lib/channel/promise_based_filter.h +6 -5
- data/src/core/lib/event_engine/ares_resolver.h +3 -1
- data/src/core/lib/event_engine/cf_engine/cf_engine.cc +9 -5
- data/src/core/lib/event_engine/cf_engine/cf_engine.h +2 -1
- data/src/core/lib/event_engine/cf_engine/cfsocket_listener.cc +263 -0
- data/src/core/lib/event_engine/cf_engine/cfsocket_listener.h +107 -0
- data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.cc +31 -3
- data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.h +12 -0
- data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.cc +12 -10
- data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.h +6 -4
- data/src/core/lib/event_engine/posix_engine/ev_poll_posix.cc +15 -14
- data/src/core/lib/event_engine/posix_engine/ev_poll_posix.h +7 -5
- data/src/core/lib/event_engine/posix_engine/event_poller.h +0 -8
- data/src/core/lib/event_engine/posix_engine/event_poller_posix_default.cc +11 -5
- data/src/core/lib/event_engine/posix_engine/event_poller_posix_default.h +3 -2
- data/src/core/lib/event_engine/posix_engine/grpc_polled_fd_posix.h +1 -0
- data/src/core/lib/event_engine/posix_engine/lockfree_event.cc +4 -4
- data/src/core/lib/event_engine/posix_engine/lockfree_event.h +3 -4
- data/src/core/lib/event_engine/posix_engine/posix_endpoint.cc +2 -2
- data/src/core/lib/event_engine/posix_engine/posix_engine.cc +188 -199
- data/src/core/lib/event_engine/posix_engine/posix_engine.h +30 -45
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener.cc +1 -1
- data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.h +1 -1
- data/src/core/lib/event_engine/windows/grpc_polled_fd_windows.cc +2 -1
- data/src/core/lib/experiments/experiments.cc +120 -6
- data/src/core/lib/experiments/experiments.h +46 -3
- data/src/core/lib/iomgr/combiner.cc +1 -1
- data/src/core/lib/iomgr/exec_ctx.h +3 -9
- data/src/core/lib/iomgr/socket_mutator.cc +1 -1
- data/src/core/lib/iomgr/socket_utils_posix.cc +1 -1
- data/src/core/lib/iomgr/socket_utils_posix.h +1 -1
- data/src/core/lib/iomgr/tcp_client_posix.cc +1 -1
- data/src/core/lib/iomgr/tcp_posix.cc +3 -3
- data/src/core/lib/promise/activity.h +2 -2
- data/src/core/lib/promise/mpsc.cc +8 -8
- data/src/core/lib/promise/party.cc +7 -7
- data/src/core/lib/promise/party.h +4 -4
- data/src/core/lib/promise/poll.h +10 -0
- data/src/core/lib/resource_quota/memory_quota.cc +90 -3
- data/src/core/lib/resource_quota/memory_quota.h +20 -9
- data/src/core/lib/resource_quota/periodic_update.cc +14 -0
- data/src/core/lib/resource_quota/periodic_update.h +8 -0
- data/src/core/lib/resource_quota/resource_quota.cc +15 -4
- data/src/core/lib/resource_quota/resource_quota.h +3 -0
- data/src/core/lib/security/authorization/grpc_server_authz_filter.cc +1 -2
- data/src/core/lib/surface/call.cc +5 -5
- data/src/core/lib/surface/call.h +6 -5
- data/src/core/lib/surface/completion_queue.cc +2 -4
- data/src/core/lib/surface/filter_stack_call.cc +1 -1
- data/src/core/lib/surface/version.cc +2 -2
- data/src/core/lib/transport/promise_endpoint.cc +2 -2
- data/src/core/lib/transport/promise_endpoint.h +3 -3
- data/src/core/load_balancing/endpoint_list.cc +29 -2
- data/src/core/load_balancing/grpclb/client_load_reporting_filter.cc +3 -3
- data/src/core/load_balancing/grpclb/client_load_reporting_filter.h +1 -1
- data/src/core/load_balancing/pick_first/pick_first.cc +12 -5
- data/src/core/load_balancing/xds/xds_cluster_impl.cc +5 -3
- data/src/core/net/socket_mutator.cc +19 -0
- data/src/core/net/socket_mutator.h +25 -0
- data/src/core/plugin_registry/grpc_plugin_registry.cc +6 -0
- data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver.h +6 -1
- data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +2 -1
- data/src/core/resolver/dns/c_ares/grpc_ares_wrapper.cc +8 -5
- data/src/core/resolver/dns/c_ares/grpc_ares_wrapper.h +2 -1
- data/src/core/resolver/xds/xds_dependency_manager.cc +1 -1
- data/src/core/server/server.cc +1 -1
- data/src/core/server/server_call_tracer_filter.cc +0 -66
- data/src/core/server/server_call_tracer_filter.h +64 -0
- data/src/core/server/server_config_selector_filter.cc +1 -1
- data/src/core/service_config/service_config_channel_arg_filter.cc +3 -60
- data/src/core/service_config/service_config_channel_arg_filter.h +82 -0
- data/src/core/telemetry/call_tracer.cc +20 -14
- data/src/core/telemetry/call_tracer.h +22 -17
- data/src/core/telemetry/metrics.h +8 -8
- data/src/core/telemetry/stats_data.cc +151 -151
- data/src/core/telemetry/stats_data.h +87 -87
- data/src/core/transport/auth_context.cc +20 -0
- data/src/core/transport/auth_context.h +4 -0
- data/src/core/transport/auth_context_comparator_registry.h +69 -0
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +2 -3
- data/src/core/tsi/ssl_transport_security.cc +202 -32
- data/src/core/tsi/ssl_transport_security.h +19 -10
- data/src/core/tsi/ssl_transport_security_utils.cc +21 -0
- data/src/core/tsi/ssl_transport_security_utils.h +4 -0
- data/src/core/util/http_client/httpcli_security_connector.cc +3 -1
- data/src/core/util/latent_see.cc +178 -146
- data/src/core/util/latent_see.h +245 -188
- data/src/core/util/single_set_ptr.h +5 -2
- data/src/core/util/useful.h +91 -0
- data/src/core/util/windows/directory_reader.cc +1 -0
- data/src/core/util/windows/thd.cc +1 -3
- data/src/core/util/work_serializer.cc +1 -1
- data/src/core/xds/grpc/file_watcher_certificate_provider_factory.cc +32 -5
- data/src/core/xds/grpc/file_watcher_certificate_provider_factory.h +5 -0
- data/src/core/xds/grpc/xds_certificate_provider.cc +5 -6
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +1 -1
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/third_party/cares/cares/include/ares.h +925 -460
- data/third_party/cares/cares/include/ares_dns.h +86 -71
- data/third_party/cares/cares/include/ares_dns_record.h +1118 -0
- data/third_party/cares/cares/include/ares_nameser.h +215 -189
- data/third_party/cares/cares/include/ares_version.h +37 -14
- data/third_party/cares/cares/src/lib/ares_addrinfo2hostent.c +305 -0
- data/third_party/cares/cares/src/lib/ares_addrinfo_localhost.c +245 -0
- data/third_party/cares/cares/src/lib/ares_android.c +216 -164
- data/third_party/cares/cares/src/lib/ares_android.h +25 -14
- data/third_party/cares/cares/src/lib/ares_cancel.c +68 -44
- data/third_party/cares/cares/src/lib/ares_close_sockets.c +137 -0
- data/third_party/cares/cares/src/lib/ares_conn.c +511 -0
- data/third_party/cares/cares/src/lib/ares_conn.h +196 -0
- data/third_party/cares/cares/src/lib/ares_cookie.c +461 -0
- data/third_party/cares/cares/src/lib/ares_data.c +93 -181
- data/third_party/cares/cares/src/lib/ares_data.h +50 -39
- data/third_party/cares/cares/src/lib/ares_destroy.c +127 -89
- data/third_party/cares/cares/src/lib/ares_free_hostent.c +35 -24
- data/third_party/cares/cares/src/lib/ares_free_string.c +24 -16
- data/third_party/cares/cares/src/lib/ares_freeaddrinfo.c +45 -38
- data/third_party/cares/cares/src/lib/ares_getaddrinfo.c +549 -663
- data/third_party/cares/cares/src/lib/ares_getenv.c +25 -15
- data/third_party/cares/cares/src/lib/ares_getenv.h +26 -18
- data/third_party/cares/cares/src/lib/ares_gethostbyaddr.c +163 -221
- data/third_party/cares/cares/src/lib/ares_gethostbyname.c +222 -223
- data/third_party/cares/cares/src/lib/ares_getnameinfo.c +328 -338
- data/third_party/cares/cares/src/lib/ares_hosts_file.c +952 -0
- data/third_party/cares/cares/src/lib/ares_inet_net_pton.h +25 -19
- data/third_party/cares/cares/src/lib/ares_init.c +425 -2091
- data/third_party/cares/cares/src/lib/ares_ipv6.h +63 -33
- data/third_party/cares/cares/src/lib/ares_library_init.c +110 -54
- data/third_party/cares/cares/src/lib/ares_metrics.c +261 -0
- data/third_party/cares/cares/src/lib/ares_options.c +418 -332
- data/third_party/cares/cares/src/lib/ares_parse_into_addrinfo.c +179 -0
- data/third_party/cares/cares/src/lib/ares_private.h +558 -356
- data/third_party/cares/cares/src/lib/ares_process.c +1224 -1369
- data/third_party/cares/cares/src/lib/ares_qcache.c +430 -0
- data/third_party/cares/cares/src/lib/ares_query.c +126 -121
- data/third_party/cares/cares/src/lib/ares_search.c +564 -262
- data/third_party/cares/cares/src/lib/ares_send.c +264 -93
- data/third_party/cares/cares/src/lib/ares_set_socket_functions.c +588 -0
- data/third_party/cares/cares/src/lib/ares_setup.h +115 -111
- data/third_party/cares/cares/src/lib/ares_socket.c +425 -0
- data/third_party/cares/cares/src/lib/ares_socket.h +163 -0
- data/third_party/cares/cares/src/lib/ares_sortaddrinfo.c +447 -0
- data/third_party/cares/cares/src/lib/ares_strerror.c +83 -48
- data/third_party/cares/cares/src/lib/ares_sysconfig.c +639 -0
- data/third_party/cares/cares/src/lib/ares_sysconfig_files.c +839 -0
- data/third_party/cares/cares/src/lib/ares_sysconfig_mac.c +373 -0
- data/third_party/cares/cares/src/lib/ares_sysconfig_win.c +621 -0
- data/third_party/cares/cares/src/lib/ares_timeout.c +136 -73
- data/third_party/cares/cares/src/lib/ares_update_servers.c +1362 -0
- data/third_party/cares/cares/src/lib/ares_version.c +29 -4
- data/third_party/cares/cares/src/lib/config-dos.h +88 -89
- data/third_party/cares/cares/src/lib/config-win32.h +122 -77
- data/third_party/cares/cares/src/lib/dsa/ares_array.c +394 -0
- data/third_party/cares/cares/src/lib/dsa/ares_htable.c +447 -0
- data/third_party/cares/cares/src/lib/dsa/ares_htable.h +174 -0
- data/third_party/cares/cares/src/lib/dsa/ares_htable_asvp.c +224 -0
- data/third_party/cares/cares/src/lib/dsa/ares_htable_dict.c +228 -0
- data/third_party/cares/cares/src/lib/dsa/ares_htable_strvp.c +210 -0
- data/third_party/cares/cares/src/lib/dsa/ares_htable_szvp.c +188 -0
- data/third_party/cares/cares/src/lib/dsa/ares_htable_vpstr.c +186 -0
- data/third_party/cares/cares/src/lib/dsa/ares_htable_vpvp.c +194 -0
- data/third_party/cares/cares/src/lib/dsa/ares_llist.c +382 -0
- data/third_party/cares/cares/src/lib/dsa/ares_slist.c +479 -0
- data/third_party/cares/cares/src/lib/dsa/ares_slist.h +207 -0
- data/third_party/cares/cares/src/lib/event/ares_event.h +191 -0
- data/third_party/cares/cares/src/lib/event/ares_event_configchg.c +743 -0
- data/third_party/cares/cares/src/lib/event/ares_event_epoll.c +192 -0
- data/third_party/cares/cares/src/lib/event/ares_event_kqueue.c +248 -0
- data/third_party/cares/cares/src/lib/event/ares_event_poll.c +140 -0
- data/third_party/cares/cares/src/lib/event/ares_event_select.c +159 -0
- data/third_party/cares/cares/src/lib/event/ares_event_thread.c +567 -0
- data/third_party/cares/cares/src/lib/event/ares_event_wake_pipe.c +166 -0
- data/third_party/cares/cares/src/lib/event/ares_event_win32.c +978 -0
- data/third_party/cares/cares/src/lib/event/ares_event_win32.h +161 -0
- data/third_party/cares/cares/src/lib/include/ares_array.h +276 -0
- data/third_party/cares/cares/src/lib/include/ares_buf.h +732 -0
- data/third_party/cares/cares/src/lib/include/ares_htable_asvp.h +130 -0
- data/third_party/cares/cares/src/lib/include/ares_htable_dict.h +123 -0
- data/third_party/cares/cares/src/lib/include/ares_htable_strvp.h +130 -0
- data/third_party/cares/cares/src/lib/include/ares_htable_szvp.h +118 -0
- data/third_party/cares/cares/src/lib/include/ares_htable_vpstr.h +111 -0
- data/third_party/cares/cares/src/lib/include/ares_htable_vpvp.h +128 -0
- data/third_party/cares/cares/src/lib/include/ares_llist.h +239 -0
- data/third_party/cares/cares/src/lib/include/ares_mem.h +38 -0
- data/third_party/cares/cares/src/lib/include/ares_str.h +244 -0
- data/third_party/cares/cares/src/lib/inet_net_pton.c +202 -157
- data/third_party/cares/cares/src/lib/inet_ntop.c +87 -69
- data/third_party/cares/cares/src/lib/legacy/ares_create_query.c +78 -0
- data/third_party/cares/cares/src/lib/legacy/ares_expand_name.c +99 -0
- data/third_party/cares/cares/src/lib/legacy/ares_expand_string.c +107 -0
- data/third_party/cares/cares/src/lib/legacy/ares_fds.c +80 -0
- data/third_party/cares/cares/src/lib/legacy/ares_getsock.c +85 -0
- data/third_party/cares/cares/src/lib/legacy/ares_parse_a_reply.c +107 -0
- data/third_party/cares/cares/src/lib/legacy/ares_parse_aaaa_reply.c +109 -0
- data/third_party/cares/cares/src/lib/legacy/ares_parse_caa_reply.c +137 -0
- data/third_party/cares/cares/src/lib/legacy/ares_parse_mx_reply.c +110 -0
- data/third_party/cares/cares/src/lib/legacy/ares_parse_naptr_reply.c +132 -0
- data/third_party/cares/cares/src/lib/legacy/ares_parse_ns_reply.c +154 -0
- data/third_party/cares/cares/src/lib/legacy/ares_parse_ptr_reply.c +213 -0
- data/third_party/cares/cares/src/lib/legacy/ares_parse_soa_reply.c +115 -0
- data/third_party/cares/cares/src/lib/legacy/ares_parse_srv_reply.c +114 -0
- data/third_party/cares/cares/src/lib/legacy/ares_parse_txt_reply.c +144 -0
- data/third_party/cares/cares/src/lib/legacy/ares_parse_uri_reply.c +113 -0
- data/third_party/cares/cares/src/lib/record/ares_dns_mapping.c +982 -0
- data/third_party/cares/cares/src/lib/record/ares_dns_multistring.c +307 -0
- data/third_party/cares/cares/src/lib/record/ares_dns_multistring.h +72 -0
- data/third_party/cares/cares/src/lib/record/ares_dns_name.c +673 -0
- data/third_party/cares/cares/src/lib/record/ares_dns_parse.c +1329 -0
- data/third_party/cares/cares/src/lib/record/ares_dns_private.h +273 -0
- data/third_party/cares/cares/src/lib/record/ares_dns_record.c +1661 -0
- data/third_party/cares/cares/src/lib/record/ares_dns_write.c +1229 -0
- data/third_party/cares/cares/src/lib/str/ares_buf.c +1498 -0
- data/third_party/cares/cares/src/lib/str/ares_str.c +508 -0
- data/third_party/cares/cares/src/lib/str/ares_strsplit.c +90 -0
- data/third_party/cares/cares/src/lib/str/ares_strsplit.h +51 -0
- data/third_party/cares/cares/src/lib/thirdparty/apple/dnsinfo.h +122 -0
- data/third_party/cares/cares/src/lib/util/ares_iface_ips.c +628 -0
- data/third_party/cares/cares/src/lib/util/ares_iface_ips.h +139 -0
- data/third_party/cares/cares/src/lib/util/ares_math.c +158 -0
- data/third_party/cares/cares/src/lib/util/ares_math.h +45 -0
- data/third_party/cares/cares/src/lib/util/ares_rand.c +389 -0
- data/third_party/cares/cares/src/lib/util/ares_rand.h +36 -0
- data/third_party/cares/cares/src/lib/util/ares_threads.c +614 -0
- data/third_party/cares/cares/src/lib/util/ares_threads.h +60 -0
- data/third_party/cares/cares/src/lib/util/ares_time.h +48 -0
- data/third_party/cares/cares/src/lib/util/ares_timeval.c +95 -0
- data/third_party/cares/cares/src/lib/util/ares_uri.c +1626 -0
- data/third_party/cares/cares/src/lib/util/ares_uri.h +252 -0
- data/third_party/cares/cares/src/lib/windows_port.c +16 -9
- metadata +121 -49
- data/src/core/util/ring_buffer.h +0 -122
- data/third_party/cares/cares/include/ares_rules.h +0 -125
- data/third_party/cares/cares/src/lib/ares__addrinfo2hostent.c +0 -266
- data/third_party/cares/cares/src/lib/ares__addrinfo_localhost.c +0 -240
- data/third_party/cares/cares/src/lib/ares__close_sockets.c +0 -61
- data/third_party/cares/cares/src/lib/ares__get_hostent.c +0 -260
- data/third_party/cares/cares/src/lib/ares__parse_into_addrinfo.c +0 -229
- data/third_party/cares/cares/src/lib/ares__read_line.c +0 -73
- data/third_party/cares/cares/src/lib/ares__readaddrinfo.c +0 -258
- data/third_party/cares/cares/src/lib/ares__sortaddrinfo.c +0 -507
- data/third_party/cares/cares/src/lib/ares__timeval.c +0 -111
- data/third_party/cares/cares/src/lib/ares_create_query.c +0 -197
- data/third_party/cares/cares/src/lib/ares_expand_name.c +0 -311
- data/third_party/cares/cares/src/lib/ares_expand_string.c +0 -67
- data/third_party/cares/cares/src/lib/ares_fds.c +0 -59
- data/third_party/cares/cares/src/lib/ares_getsock.c +0 -66
- data/third_party/cares/cares/src/lib/ares_iphlpapi.h +0 -221
- data/third_party/cares/cares/src/lib/ares_llist.c +0 -63
- data/third_party/cares/cares/src/lib/ares_llist.h +0 -39
- data/third_party/cares/cares/src/lib/ares_mkquery.c +0 -24
- data/third_party/cares/cares/src/lib/ares_nowarn.c +0 -260
- data/third_party/cares/cares/src/lib/ares_nowarn.h +0 -61
- data/third_party/cares/cares/src/lib/ares_parse_a_reply.c +0 -90
- data/third_party/cares/cares/src/lib/ares_parse_aaaa_reply.c +0 -92
- data/third_party/cares/cares/src/lib/ares_parse_caa_reply.c +0 -199
- data/third_party/cares/cares/src/lib/ares_parse_mx_reply.c +0 -164
- data/third_party/cares/cares/src/lib/ares_parse_naptr_reply.c +0 -183
- data/third_party/cares/cares/src/lib/ares_parse_ns_reply.c +0 -177
- data/third_party/cares/cares/src/lib/ares_parse_ptr_reply.c +0 -228
- data/third_party/cares/cares/src/lib/ares_parse_soa_reply.c +0 -179
- data/third_party/cares/cares/src/lib/ares_parse_srv_reply.c +0 -168
- data/third_party/cares/cares/src/lib/ares_parse_txt_reply.c +0 -214
- data/third_party/cares/cares/src/lib/ares_parse_uri_reply.c +0 -184
- data/third_party/cares/cares/src/lib/ares_platform.c +0 -11042
- data/third_party/cares/cares/src/lib/ares_platform.h +0 -43
- data/third_party/cares/cares/src/lib/ares_rand.c +0 -279
- data/third_party/cares/cares/src/lib/ares_strcasecmp.c +0 -66
- data/third_party/cares/cares/src/lib/ares_strcasecmp.h +0 -30
- data/third_party/cares/cares/src/lib/ares_strdup.c +0 -42
- data/third_party/cares/cares/src/lib/ares_strdup.h +0 -24
- data/third_party/cares/cares/src/lib/ares_strsplit.c +0 -94
- data/third_party/cares/cares/src/lib/ares_strsplit.h +0 -42
- data/third_party/cares/cares/src/lib/ares_writev.c +0 -79
- data/third_party/cares/cares/src/lib/ares_writev.h +0 -36
- data/third_party/cares/cares/src/lib/bitncmp.c +0 -59
- data/third_party/cares/cares/src/lib/bitncmp.h +0 -26
- data/third_party/cares/cares/src/lib/setup_once.h +0 -554
- data/third_party/cares/cares/src/tools/ares_getopt.h +0 -53
@@ -1,21 +1,31 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
1
|
+
/* MIT License
|
2
|
+
*
|
3
|
+
* Copyright (c) 1998 Massachusetts Institute of Technology
|
4
|
+
* Copyright (c) The c-ares project and its contributors
|
5
|
+
*
|
6
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
7
|
+
* of this software and associated documentation files (the "Software"), to deal
|
8
|
+
* in the Software without restriction, including without limitation the rights
|
9
|
+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
10
|
+
* copies of the Software, and to permit persons to whom the Software is
|
11
|
+
* furnished to do so, subject to the following conditions:
|
12
|
+
*
|
13
|
+
* The above copyright notice and this permission notice (including the next
|
14
|
+
* paragraph) shall be included in all copies or substantial portions of the
|
15
|
+
* Software.
|
16
|
+
*
|
17
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
18
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
19
|
+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
20
|
+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
21
|
+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
22
|
+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
23
|
+
* SOFTWARE.
|
4
24
|
*
|
5
|
-
*
|
6
|
-
* software and its documentation for any purpose and without
|
7
|
-
* fee is hereby granted, provided that the above copyright
|
8
|
-
* notice appear in all copies and that both that copyright
|
9
|
-
* notice and this permission notice appear in supporting
|
10
|
-
* documentation, and that the name of M.I.T. not be used in
|
11
|
-
* advertising or publicity pertaining to distribution of the
|
12
|
-
* software without specific, written prior permission.
|
13
|
-
* M.I.T. makes no representations about the suitability of
|
14
|
-
* this software for any purpose. It is provided "as is"
|
15
|
-
* without express or implied warranty.
|
25
|
+
* SPDX-License-Identifier: MIT
|
16
26
|
*/
|
17
27
|
|
18
|
-
#include "
|
28
|
+
#include "ares_private.h"
|
19
29
|
#include "ares_getenv.h"
|
20
30
|
|
21
31
|
#ifndef HAVE_GETENV
|
@@ -1,23 +1,31 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
1
|
+
/* MIT License
|
2
|
+
*
|
3
|
+
* Copyright (c) 1998 Massachusetts Institute of Technology
|
4
|
+
* Copyright (c) The c-ares project and its contributors
|
5
|
+
*
|
6
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
7
|
+
* of this software and associated documentation files (the "Software"), to deal
|
8
|
+
* in the Software without restriction, including without limitation the rights
|
9
|
+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
10
|
+
* copies of the Software, and to permit persons to whom the Software is
|
11
|
+
* furnished to do so, subject to the following conditions:
|
6
12
|
*
|
7
|
-
*
|
8
|
-
*
|
9
|
-
*
|
10
|
-
*
|
11
|
-
*
|
12
|
-
*
|
13
|
-
*
|
14
|
-
*
|
15
|
-
*
|
16
|
-
*
|
17
|
-
*
|
13
|
+
* The above copyright notice and this permission notice (including the next
|
14
|
+
* paragraph) shall be included in all copies or substantial portions of the
|
15
|
+
* Software.
|
16
|
+
*
|
17
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
18
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
19
|
+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
20
|
+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
21
|
+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
22
|
+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
23
|
+
* SOFTWARE.
|
24
|
+
*
|
25
|
+
* SPDX-License-Identifier: MIT
|
18
26
|
*/
|
19
|
-
|
20
|
-
#
|
27
|
+
#ifndef HEADER_CARES_GETENV_H
|
28
|
+
#define HEADER_CARES_GETENV_H
|
21
29
|
|
22
30
|
#ifndef HAVE_GETENV
|
23
31
|
extern char *ares_getenv(const char *name);
|
@@ -1,19 +1,31 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
/* MIT License
|
2
|
+
*
|
3
|
+
* Copyright (c) 1998 Massachusetts Institute of Technology
|
4
|
+
* Copyright (c) The c-ares project and its contributors
|
5
|
+
*
|
6
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
7
|
+
* of this software and associated documentation files (the "Software"), to deal
|
8
|
+
* in the Software without restriction, including without limitation the rights
|
9
|
+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
10
|
+
* copies of the Software, and to permit persons to whom the Software is
|
11
|
+
* furnished to do so, subject to the following conditions:
|
12
|
+
*
|
13
|
+
* The above copyright notice and this permission notice (including the next
|
14
|
+
* paragraph) shall be included in all copies or substantial portions of the
|
15
|
+
* Software.
|
3
16
|
*
|
4
|
-
*
|
5
|
-
*
|
6
|
-
*
|
7
|
-
*
|
8
|
-
*
|
9
|
-
*
|
10
|
-
*
|
11
|
-
*
|
12
|
-
*
|
13
|
-
* this software for any purpose. It is provided "as is"
|
14
|
-
* without express or implied warranty.
|
17
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
18
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
19
|
+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
20
|
+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
21
|
+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
22
|
+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
23
|
+
* SOFTWARE.
|
24
|
+
*
|
25
|
+
* SPDX-License-Identifier: MIT
|
15
26
|
*/
|
16
|
-
|
27
|
+
|
28
|
+
#include "ares_private.h"
|
17
29
|
|
18
30
|
#ifdef HAVE_NETINET_IN_H
|
19
31
|
# include <netinet/in.h>
|
@@ -26,262 +38,192 @@
|
|
26
38
|
#endif
|
27
39
|
|
28
40
|
#include "ares_nameser.h"
|
29
|
-
|
30
|
-
#include "ares.h"
|
31
41
|
#include "ares_inet_net_pton.h"
|
32
|
-
#include "ares_platform.h"
|
33
|
-
#include "ares_private.h"
|
34
|
-
|
35
|
-
#ifdef WATT32
|
36
|
-
#undef WIN32
|
37
|
-
#endif
|
38
42
|
|
39
43
|
struct addr_query {
|
40
44
|
/* Arguments passed to ares_gethostbyaddr() */
|
41
|
-
|
42
|
-
struct ares_addr
|
45
|
+
ares_channel_t *channel;
|
46
|
+
struct ares_addr addr;
|
43
47
|
ares_host_callback callback;
|
44
|
-
void
|
45
|
-
|
48
|
+
void *arg;
|
49
|
+
char *lookups; /* duplicate memory from channel for ares_reinit() */
|
46
50
|
const char *remaining_lookups;
|
47
|
-
|
51
|
+
size_t timeouts;
|
48
52
|
};
|
49
53
|
|
50
54
|
static void next_lookup(struct addr_query *aquery);
|
51
|
-
static void addr_callback(void *arg,
|
52
|
-
|
53
|
-
static void end_aquery(struct addr_query *aquery,
|
55
|
+
static void addr_callback(void *arg, ares_status_t status, size_t timeouts,
|
56
|
+
const ares_dns_record_t *dnsrec);
|
57
|
+
static void end_aquery(struct addr_query *aquery, ares_status_t status,
|
54
58
|
struct hostent *host);
|
55
|
-
static
|
56
|
-
|
59
|
+
static ares_status_t file_lookup(ares_channel_t *channel,
|
60
|
+
const struct ares_addr *addr,
|
61
|
+
struct hostent **host);
|
57
62
|
|
58
|
-
void
|
59
|
-
|
63
|
+
void ares_gethostbyaddr_nolock(ares_channel_t *channel, const void *addr,
|
64
|
+
int addrlen, int family,
|
65
|
+
ares_host_callback callback, void *arg)
|
60
66
|
{
|
61
67
|
struct addr_query *aquery;
|
62
68
|
|
63
|
-
if (family != AF_INET && family != AF_INET6)
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
}
|
69
|
+
if (family != AF_INET && family != AF_INET6) {
|
70
|
+
callback(arg, ARES_ENOTIMP, 0, NULL);
|
71
|
+
return;
|
72
|
+
}
|
68
73
|
|
69
|
-
if ((family == AF_INET && addrlen != sizeof(aquery->addr.
|
70
|
-
(family == AF_INET6 && addrlen != sizeof(aquery->addr.
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
}
|
74
|
+
if ((family == AF_INET && addrlen != sizeof(aquery->addr.addr.addr4)) ||
|
75
|
+
(family == AF_INET6 && addrlen != sizeof(aquery->addr.addr.addr6))) {
|
76
|
+
callback(arg, ARES_ENOTIMP, 0, NULL);
|
77
|
+
return;
|
78
|
+
}
|
75
79
|
|
76
80
|
aquery = ares_malloc(sizeof(struct addr_query));
|
77
|
-
if (!aquery)
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
81
|
+
if (!aquery) {
|
82
|
+
callback(arg, ARES_ENOMEM, 0, NULL);
|
83
|
+
return;
|
84
|
+
}
|
85
|
+
aquery->lookups = ares_strdup(channel->lookups);
|
86
|
+
if (aquery->lookups == NULL) {
|
87
|
+
/* LCOV_EXCL_START: OutOfMemory */
|
88
|
+
ares_free(aquery);
|
89
|
+
callback(arg, ARES_ENOMEM, 0, NULL);
|
90
|
+
return;
|
91
|
+
/* LCOV_EXCL_STOP */
|
92
|
+
}
|
82
93
|
aquery->channel = channel;
|
83
|
-
if (family == AF_INET)
|
84
|
-
memcpy(&aquery->addr.
|
85
|
-
else
|
86
|
-
memcpy(&aquery->addr.
|
87
|
-
|
88
|
-
aquery->
|
89
|
-
aquery->
|
90
|
-
aquery->
|
91
|
-
aquery->
|
94
|
+
if (family == AF_INET) {
|
95
|
+
memcpy(&aquery->addr.addr.addr4, addr, sizeof(aquery->addr.addr.addr4));
|
96
|
+
} else {
|
97
|
+
memcpy(&aquery->addr.addr.addr6, addr, sizeof(aquery->addr.addr.addr6));
|
98
|
+
}
|
99
|
+
aquery->addr.family = family;
|
100
|
+
aquery->callback = callback;
|
101
|
+
aquery->arg = arg;
|
102
|
+
aquery->remaining_lookups = aquery->lookups;
|
103
|
+
aquery->timeouts = 0;
|
92
104
|
|
93
105
|
next_lookup(aquery);
|
94
106
|
}
|
95
107
|
|
96
|
-
|
108
|
+
void ares_gethostbyaddr(ares_channel_t *channel, const void *addr, int addrlen,
|
109
|
+
int family, ares_host_callback callback, void *arg)
|
97
110
|
{
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
111
|
+
if (channel == NULL) {
|
112
|
+
return;
|
113
|
+
}
|
114
|
+
ares_channel_lock(channel);
|
115
|
+
ares_gethostbyaddr_nolock(channel, addr, addrlen, family, callback, arg);
|
116
|
+
ares_channel_unlock(channel);
|
117
|
+
}
|
102
118
|
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
119
|
+
static void next_lookup(struct addr_query *aquery)
|
120
|
+
{
|
121
|
+
const char *p;
|
122
|
+
ares_status_t status;
|
123
|
+
struct hostent *host = NULL;
|
124
|
+
char *name;
|
125
|
+
|
126
|
+
for (p = aquery->remaining_lookups; *p; p++) {
|
127
|
+
switch (*p) {
|
128
|
+
case 'b':
|
129
|
+
name = ares_dns_addr_to_ptr(&aquery->addr);
|
130
|
+
if (name == NULL) {
|
131
|
+
end_aquery(aquery, ARES_ENOMEM,
|
132
|
+
NULL); /* LCOV_EXCL_LINE: OutOfMemory */
|
133
|
+
return; /* LCOV_EXCL_LINE: OutOfMemory */
|
134
|
+
}
|
135
|
+
aquery->remaining_lookups = p + 1;
|
136
|
+
ares_query_nolock(aquery->channel, name, ARES_CLASS_IN,
|
137
|
+
ARES_REC_TYPE_PTR, addr_callback, aquery, NULL);
|
138
|
+
ares_free(name);
|
139
|
+
return;
|
140
|
+
case 'f':
|
141
|
+
status = file_lookup(aquery->channel, &aquery->addr, &host);
|
142
|
+
|
143
|
+
/* this status check below previously checked for !ARES_ENOTFOUND,
|
144
|
+
but we should not assume that this single error code is the one
|
145
|
+
that can occur, as that is in fact no longer the case */
|
146
|
+
if (status == ARES_SUCCESS) {
|
147
|
+
end_aquery(aquery, status, host);
|
112
148
|
return;
|
113
|
-
case 'f':
|
114
|
-
status = file_lookup(&aquery->addr, &host);
|
115
|
-
|
116
|
-
/* this status check below previously checked for !ARES_ENOTFOUND,
|
117
|
-
but we should not assume that this single error code is the one
|
118
|
-
that can occur, as that is in fact no longer the case */
|
119
|
-
if (status == ARES_SUCCESS)
|
120
|
-
{
|
121
|
-
end_aquery(aquery, status, host);
|
122
|
-
return;
|
123
|
-
}
|
124
|
-
break;
|
125
149
|
}
|
150
|
+
break;
|
151
|
+
default:
|
152
|
+
break;
|
126
153
|
}
|
154
|
+
}
|
127
155
|
end_aquery(aquery, ARES_ENOTFOUND, NULL);
|
128
156
|
}
|
129
157
|
|
130
|
-
static void addr_callback(void *arg,
|
131
|
-
|
158
|
+
static void addr_callback(void *arg, ares_status_t status, size_t timeouts,
|
159
|
+
const ares_dns_record_t *dnsrec)
|
132
160
|
{
|
133
|
-
struct addr_query *aquery = (struct addr_query *)
|
134
|
-
struct hostent
|
135
|
-
size_t
|
161
|
+
struct addr_query *aquery = (struct addr_query *)arg;
|
162
|
+
struct hostent *host;
|
163
|
+
size_t addrlen;
|
136
164
|
|
137
165
|
aquery->timeouts += timeouts;
|
138
|
-
if (status == ARES_SUCCESS)
|
139
|
-
{
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
{
|
148
|
-
addrlen = sizeof(aquery->addr.addrV6);
|
149
|
-
status = ares_parse_ptr_reply(abuf, alen, &aquery->addr.addrV6,
|
150
|
-
(int)addrlen, AF_INET6, &host);
|
151
|
-
}
|
152
|
-
end_aquery(aquery, status, host);
|
166
|
+
if (status == ARES_SUCCESS) {
|
167
|
+
if (aquery->addr.family == AF_INET) {
|
168
|
+
addrlen = sizeof(aquery->addr.addr.addr4);
|
169
|
+
status = ares_parse_ptr_reply_dnsrec(dnsrec, &aquery->addr.addr.addr4,
|
170
|
+
(int)addrlen, AF_INET, &host);
|
171
|
+
} else {
|
172
|
+
addrlen = sizeof(aquery->addr.addr.addr6);
|
173
|
+
status = ares_parse_ptr_reply_dnsrec(dnsrec, &aquery->addr.addr.addr6,
|
174
|
+
(int)addrlen, AF_INET6, &host);
|
153
175
|
}
|
154
|
-
|
176
|
+
end_aquery(aquery, status, host);
|
177
|
+
} else if (status == ARES_EDESTRUCTION || status == ARES_ECANCELLED) {
|
155
178
|
end_aquery(aquery, status, NULL);
|
156
|
-
else
|
179
|
+
} else {
|
157
180
|
next_lookup(aquery);
|
181
|
+
}
|
158
182
|
}
|
159
183
|
|
160
|
-
static void end_aquery(struct addr_query *aquery,
|
184
|
+
static void end_aquery(struct addr_query *aquery, ares_status_t status,
|
161
185
|
struct hostent *host)
|
162
186
|
{
|
163
|
-
aquery->callback(aquery->arg, status, aquery->timeouts, host);
|
164
|
-
if (host)
|
187
|
+
aquery->callback(aquery->arg, (int)status, (int)aquery->timeouts, host);
|
188
|
+
if (host) {
|
165
189
|
ares_free_hostent(host);
|
190
|
+
}
|
191
|
+
ares_free(aquery->lookups);
|
166
192
|
ares_free(aquery);
|
167
193
|
}
|
168
194
|
|
169
|
-
static
|
195
|
+
static ares_status_t file_lookup(ares_channel_t *channel,
|
196
|
+
const struct ares_addr *addr,
|
197
|
+
struct hostent **host)
|
170
198
|
{
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
platform = ares__getplatform();
|
182
|
-
|
183
|
-
if (platform == WIN_NT) {
|
184
|
-
char tmp[MAX_PATH];
|
185
|
-
HKEY hkeyHosts;
|
186
|
-
|
187
|
-
if (RegOpenKeyExA(HKEY_LOCAL_MACHINE, WIN_NS_NT_KEY, 0, KEY_READ,
|
188
|
-
&hkeyHosts) == ERROR_SUCCESS)
|
189
|
-
{
|
190
|
-
DWORD dwLength = MAX_PATH;
|
191
|
-
RegQueryValueExA(hkeyHosts, DATABASEPATH, NULL, NULL, (LPBYTE)tmp,
|
192
|
-
&dwLength);
|
193
|
-
ExpandEnvironmentStringsA(tmp, PATH_HOSTS, MAX_PATH);
|
194
|
-
RegCloseKey(hkeyHosts);
|
195
|
-
}
|
199
|
+
char ipaddr[INET6_ADDRSTRLEN];
|
200
|
+
const void *ptr = NULL;
|
201
|
+
const ares_hosts_entry_t *entry;
|
202
|
+
ares_status_t status;
|
203
|
+
|
204
|
+
if (addr->family == AF_INET) {
|
205
|
+
ptr = &addr->addr.addr4;
|
206
|
+
} else if (addr->family == AF_INET6) {
|
207
|
+
ptr = &addr->addr.addr6;
|
196
208
|
}
|
197
|
-
else if (platform == WIN_9X)
|
198
|
-
GetWindowsDirectoryA(PATH_HOSTS, MAX_PATH);
|
199
|
-
else
|
200
|
-
return ARES_ENOTFOUND;
|
201
|
-
|
202
|
-
strcat(PATH_HOSTS, WIN_PATH_HOSTS);
|
203
209
|
|
204
|
-
|
205
|
-
|
210
|
+
if (ptr == NULL) {
|
211
|
+
return ARES_ENOTFOUND;
|
212
|
+
}
|
206
213
|
|
207
|
-
if (!
|
214
|
+
if (!ares_inet_ntop(addr->family, ptr, ipaddr, sizeof(ipaddr))) {
|
208
215
|
return ARES_ENOTFOUND;
|
209
|
-
|
216
|
+
}
|
210
217
|
|
211
|
-
|
212
|
-
if (
|
213
|
-
|
214
|
-
|
215
|
-
switch(error)
|
216
|
-
{
|
217
|
-
case ENOENT:
|
218
|
-
case ESRCH:
|
219
|
-
return ARES_ENOTFOUND;
|
220
|
-
default:
|
221
|
-
DEBUGF(fprintf(stderr, "fopen() failed with error: %d %s\n",
|
222
|
-
error, strerror(error)));
|
223
|
-
DEBUGF(fprintf(stderr, "Error opening file: %s\n",
|
224
|
-
PATH_HOSTS));
|
225
|
-
*host = NULL;
|
226
|
-
return ARES_EFILE;
|
227
|
-
}
|
228
|
-
}
|
229
|
-
while ((status = ares__get_hostent(fp, addr->family, host)) == ARES_SUCCESS)
|
230
|
-
{
|
231
|
-
if (addr->family != (*host)->h_addrtype)
|
232
|
-
{
|
233
|
-
ares_free_hostent(*host);
|
234
|
-
continue;
|
235
|
-
}
|
236
|
-
if (addr->family == AF_INET)
|
237
|
-
{
|
238
|
-
if (memcmp((*host)->h_addr, &addr->addrV4,
|
239
|
-
sizeof(addr->addrV4)) == 0)
|
240
|
-
break;
|
241
|
-
}
|
242
|
-
else if (addr->family == AF_INET6)
|
243
|
-
{
|
244
|
-
if (memcmp((*host)->h_addr, &addr->addrV6,
|
245
|
-
sizeof(addr->addrV6)) == 0)
|
246
|
-
break;
|
247
|
-
}
|
248
|
-
ares_free_hostent(*host);
|
249
|
-
}
|
250
|
-
fclose(fp);
|
251
|
-
if (status == ARES_EOF)
|
252
|
-
status = ARES_ENOTFOUND;
|
253
|
-
if (status != ARES_SUCCESS)
|
254
|
-
*host = NULL;
|
255
|
-
return status;
|
256
|
-
}
|
218
|
+
status = ares_hosts_search_ipaddr(channel, ARES_FALSE, ipaddr, &entry);
|
219
|
+
if (status != ARES_SUCCESS) {
|
220
|
+
return status;
|
221
|
+
}
|
257
222
|
|
258
|
-
|
259
|
-
{
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
unsigned long a2 = (laddr >> 16UL) & 0xFFUL;
|
265
|
-
unsigned long a3 = (laddr >> 8UL) & 0xFFUL;
|
266
|
-
unsigned long a4 = laddr & 0xFFUL;
|
267
|
-
sprintf(name, "%lu.%lu.%lu.%lu.in-addr.arpa", a4, a3, a2, a1);
|
268
|
-
}
|
269
|
-
else
|
270
|
-
{
|
271
|
-
unsigned char *bytes = (unsigned char *)&addr->addrV6;
|
272
|
-
/* There are too many arguments to do this in one line using
|
273
|
-
* minimally C89-compliant compilers */
|
274
|
-
sprintf(name,
|
275
|
-
"%x.%x.%x.%x.%x.%x.%x.%x.%x.%x.%x.%x.%x.%x.%x.%x.",
|
276
|
-
bytes[15]&0xf, bytes[15] >> 4, bytes[14]&0xf, bytes[14] >> 4,
|
277
|
-
bytes[13]&0xf, bytes[13] >> 4, bytes[12]&0xf, bytes[12] >> 4,
|
278
|
-
bytes[11]&0xf, bytes[11] >> 4, bytes[10]&0xf, bytes[10] >> 4,
|
279
|
-
bytes[9]&0xf, bytes[9] >> 4, bytes[8]&0xf, bytes[8] >> 4);
|
280
|
-
sprintf(name+strlen(name),
|
281
|
-
"%x.%x.%x.%x.%x.%x.%x.%x.%x.%x.%x.%x.%x.%x.%x.%x.ip6.arpa",
|
282
|
-
bytes[7]&0xf, bytes[7] >> 4, bytes[6]&0xf, bytes[6] >> 4,
|
283
|
-
bytes[5]&0xf, bytes[5] >> 4, bytes[4]&0xf, bytes[4] >> 4,
|
284
|
-
bytes[3]&0xf, bytes[3] >> 4, bytes[2]&0xf, bytes[2] >> 4,
|
285
|
-
bytes[1]&0xf, bytes[1] >> 4, bytes[0]&0xf, bytes[0] >> 4);
|
286
|
-
}
|
223
|
+
status = ares_hosts_entry_to_hostent(entry, addr->family, host);
|
224
|
+
if (status != ARES_SUCCESS) {
|
225
|
+
return status; /* LCOV_EXCL_LINE: OutOfMemory */
|
226
|
+
}
|
227
|
+
|
228
|
+
return ARES_SUCCESS;
|
287
229
|
}
|