gpt4 book ai didi

php - 在 php 的哪个位置实现了 `socket_connect` 遍历为给定主机名返回的多个 IP 地址?

转载 作者:太空宇宙 更新时间:2023-11-03 23:22:23 25 4
gpt4 key购买 nike

我有这样的代码:

if (!socket_connect($this->sock, $this->host, $this->port)) {

其中 $this->host 是一个主机名,它被解析为 2 个 IP 地址。

如果我strace这段代码,我会看到类似的东西

1456868407.567615 socket(PF_INET, SOCK_STREAM, IPPROTO_IP) = 3
1456868407.567805 fcntl(3, F_GETFL) = 0x2 (flags O_RDWR)
1456868407.568081 fcntl(3, F_SETFL, O_RDWR|O_NONBLOCK) = 0
1456868407.568264 connect(3, {sa_family=AF_INET, sin_port=htons(5672), sin_addr=inet_addr("192.168.1.111")}, 16) = -1 EINPROGRESS (Operation now in progress)
1456868407.568763 poll([{fd=3, events=POLLIN|POLLOUT|POLLERR|POLLHUP}], 1, 3000) = 1 ([{fd=3, revents=POLLIN|POLLOUT|POLLERR|POLLHUP}])
1456868408.724034 getsockopt(3, SOL_SOCKET, SO_ERROR, [111], [4]) = 0
1456868408.724699 fcntl(3, F_SETFL, O_RDWR) = 0
1456868408.725414 close(3) = 0
1456868408.725901 socket(PF_INET, SOCK_STREAM, IPPROTO_IP) = 3
1456868408.726408 fcntl(3, F_GETFL) = 0x2 (flags O_RDWR)
1456868408.727032 fcntl(3, F_SETFL, O_RDWR|O_NONBLOCK) = 0
1456868408.727727 connect(3, {sa_family=AF_INET, sin_port=htons(5672), sin_addr=inet_addr("192.168.1.112")}, 16) = -1 EINPROGRESS (Operation now in progress)
1456868408.728484 poll([{fd=3, events=POLLIN|POLLOUT|POLLERR|POLLHUP}], 1, 1842) = 1 ([{fd=3, revents=POLLOUT}])
1456868408.729281 getsockopt(3, SOL_SOCKET, SO_ERROR, [0], [4]) = 0
1456868408.729590 fcntl(3, F_SETFL, O_RDWR) = 0

因此在第一个地址 192.168.1.111 为连接返回 ECONNREFUSED (111) 之后 - php 尝试下一个地址。

我检查了我正在处理的版本的相应 php 源代码:https://github.com/php/php-src/blob/php-5.5.9/ext/sockets/sockets.c#L1376 并没有找到它循环的任何地方:

  1. 通过if (!php_set_inet_addr(&sin, addr, php_sock TSRMLS_CC)) {

  2. 解析域名
  3. 这反过来只设置返回的 hostent 结构的第一个地址 memcpy(&(sin->sin_addr.s_addr), host_entry->h_addr_list[0], host_entry ->h_length);https://github.com/php/php-src/blob/php-5.5.9/ext%2Fsockets%2Fsockaddr_conv.c#L106

所以我的问题是:相应的代码在哪里实现?

或者不是 php 而不是 glibc?如果是这样 - 它在 glibc 源代码中的什么位置? (我也试图在那里找到但失败了)

最佳答案

找到它:https://github.com/php/php-src/blob/php-5.5.9/main/network.c#L797

for (sal = psal; !fatal && *sal != NULL; sal++) {
sa = *sal;

/* create a socket for this address */
sock = socket(sa->sa_family, socktype, 0);

if (sock == SOCK_ERR) {
continue;
}

// <skipped>

n = php_network_connect_socket(sock, sa, socklen, asynchronous,
timeout ? &working_timeout : NULL,
error_string, error_code);

if (n != -1) { // <-- here is the check
goto connected;
}

// skipped

}

在这里它遍历地址直到可以连接到一个地址。

关于php - 在 php 的哪个位置实现了 `socket_connect` 遍历为给定主机名返回的多个 IP 地址?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35735438/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com