gpt4 book ai didi

php - PHP套接字脚本导致许多长期的CLOSE_WAIT套接字连接

转载 作者:行者123 更新时间:2023-12-03 11:58:15 25 4
gpt4 key购买 nike

我有一个PHP脚本(可以在网上找到),该脚本可以无限监听某个端口,如果对该端口进行了连接,它将建立一个TCP connection。但是,当我运行此脚本并且有很多连接(大约500个)时,CLOSE_WAIT连接的数量增加了。在这种状态下连接的远程设备无法再次连接,因为CLOSE_WAIT没有终止。

// port info
$host = "0.0.0.0";
$port = 10260;
$pos = 1;

// don't timeout!
set_time_limit(0);
record("START");

$sock = socket_create(AF_INET, SOCK_STREAM, 0);
$timeout = array('sec'=>3000,'usec'=>0);
$try = socket_set_option($sock,SOL_SOCKET,SO_RCVTIMEO,$timeout);

// Bind the socket to the address/port
if(!socket_bind($sock, $host, $port))
{
echo socket_last_error() ;
die('Could not bind to address');
}
record("SOCKET BIND OK");

// start listening for connections
$result = socket_listen($sock, 1024) or die("Could not set up socket listener\n");
record("SOCKET LISTEN OK");
$clients = array($sock);


// infinite while loop
while(1)
{

// Setup clients listen socket for reading
$read = $clients;

$e = NULL;

if (socket_select($read, $write = NULL, $except = NULL, 0,0) < 1)
{
continue;
}

/* if a new read ready is being made add it to the client array */

if (in_array($sock, $read)) {
record("NEW CONNECTION");
$clients[$pos] = $newsock = socket_accept($sock);
$curpos = $pos;
$pos++;
socket_getpeername($newsock, $ip,$port);
record("Incoming IP: {$ip} PORT: {$port}");
// remove the listening socket from the clients-with-data array
$key = array_search($sock, $read);
unset($read[$key]);

} // end if in_array

// loop through all the clients that have data to read from
foreach ($read as $read_key => $read_sock) {
// read until newline or 1024 bytes
// socket_read while show errors when the client is disconnected, so silence the error messages
$key = $read_key;
$fulldata = $data = @socket_read($read_sock, 1024);

// check if the client is disconnected
if ($data === false) {
// remove client for $clients array
$key = array_search($read_sock, $clients);
socket_close($read_sock);
unset($clients[$key]);

record("NO DATA");

// continue to the next client to read from, if any
continue;
}


// .. do something with $data ...

}


}

socket_close($sock);
record("END");
die("DONE");

我尝试在代码中使用 socket_close(),但无济于事。 CLOSE_WAIT似乎需要更长的时间才能移至下一个状态。

最佳答案

我在您的代码中发现了两个问题:

首先,socket_select的第四个参数(tv_sec)应该为NULL而不是0。如Manual中所述,0会在无用的无穷循环中导致较高的CPU负载,而NULL将阻塞直到发生任何事情:

tv_sec may be zero , causing socket_select() to return immediately. This is useful for polling. If tv_sec is NULL (no timeout), socket_select() can block indefinitely.



第二个,我认为这是$ _false为false时CLOSE_WAIT的原因。这仅适用于gracefull闭合连接,但是正如 here的评论所言,您还将测试保留在空字符串上。
因此,将一行更改为:
if (socket_select($read, $write = NULL, $except = NULL, NULL, 0) < 1) 

另一个是:
// check if the client is disconnected
if ($data === false || $data === '') {

你应该没事的

关于php - PHP套接字脚本导致许多长期的CLOSE_WAIT套接字连接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19091319/

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