gpt4 book ai didi

c - select 只检查 fds 直到 255 直到 FD_SETSIZE

转载 作者:IT王子 更新时间:2023-10-29 00:54:27 32 4
gpt4 key购买 nike

选择高于 255 的 fds 不检查 fd 是否打开。这是我的示例代码:

#include <stdio.h>
#include <errno.h>
#include <unistd.h>
#include <sys/select.h>

int main()
{
fd_set set;
for(int i = 5;i<FD_SETSIZE;i++)
{
printf("--> i is %d\n", i);
FD_ZERO(&set);
FD_SET(i, &set);
close(i);

int retval = select(FD_SETSIZE, &set, NULL, NULL, NULL);
if(-1 == retval)
{
perror("select");
}
}
}

这导致:

--> i is 5
select: Bad file descriptor
...
--> i is 255
select: Bad file descriptor
--> i is 256

然后应用程序阻塞。为什么这不会在 256 直到 FD_SETSIZE 上创建一个 EBADF

从评论中请求的信息:

prlimit 的结果是:

NOFILE     max number of open files                1024   1048576

这是 strace ./test_select 的结果:

select(1024, [127], NULL, NULL, NULL)   = -1 EBADF (Bad file descriptor)
dup(2) = 3
fcntl(3, F_GETFL) = 0x8402 (flags O_RDWR|O_APPEND|O_LARGEFILE)
fstat(3, {st_mode=S_IFCHR|0620, st_rdev=makedev(136, 2), ...}) = 0
write(3, "select: Bad file descriptor\n", 28select: Bad file descriptor
) = 28
close(3) = 0
write(1, "--> i is 128\n", 13--> i is 128
) = 13
close(128) = -1 EBADF (Bad file descriptor)
select(1024, [128], NULL, NULL, NULL

从评论中揭穿想法:

#include <stdio.h>
#include <errno.h>
#include <unistd.h>
#include <sys/select.h>
#include <fcntl.h>

int main()
{
char filename[80];
int fd;
for(int i = 5;i<500;i++)
{
snprintf(filename, 80, "/tmp/file%d", i);
fd = open(filename, O_RDWR | O_APPEND | O_CREAT);
}
printf("--> fd is %d, FD_SETSIZE is %d\n", fd, FD_SETSIZE);
fd_set set;
FD_ZERO(&set);
FD_SET(fd, &set);
int retval = select(FD_SETSIZE, NULL, &set, NULL, NULL);
if(-1 == retval)
{
perror("select");
}
}

结果:

$ ./test_select
--> fd is 523, FD_SETSIZE is 1024

进程正常退出,无阻塞。

最佳答案

这里发生了一些非常奇怪的事情。您可能发现了 Linux 内核中的错误。

我修改了你的测试程序以使其更精确并且在遇到问题时不会卡住:

#include <stdio.h>
#include <errno.h>
#include <string.h>
#include <unistd.h>
#include <sys/select.h>
#include <sys/time.h>

int main(void)
{
fd_set set;
struct timeval tv;
int i;

for(i = 5; i < FD_SETSIZE; i++)
{
FD_ZERO(&set);
FD_SET(i, &set);

tv.tv_sec = 0;
tv.tv_usec = 1000;

close(i);
int retval = select(FD_SETSIZE, &set, 0, 0, &tv);
if (retval == -1 && errno == EBADF)
;
else
{
if (retval > 0)
printf("fd %d: select returned success (%d)\n", i, retval);
else if (retval == 0)
printf("fd %d: select timed out\n", i);
else
printf("fd %d: select failed (%d; %s)\n", i, retval, strerror(errno));
return 1;
}
}
return 0;
}

我对 POSIX 的理解是,无论 FD_SETSIZE 是什么,该程序都不应产生任何输出并成功退出。这就是它在 FreeBSD 11.1 和 NetBSD 7.1 上所做的(两者都运行在某种描述的 x86 处理器上)。但在 Linux(x86-64,内核 4.13)上,它会打印

fd 256: select timed out

退出失败。更奇怪的是,如果我在 strace 下运行相同的二进制文件,会改变输出:

$ strace -o /dev/null ./a.out
fd 64: select timed out

如果我在 gdb 下运行它,即使我没有告诉 gdb 除了运行之外的任何事情,也会发生同样的事情程序。

Reading symbols from ./a.out...done.
(gdb) r
Starting program: /tmp/a.out
fd 64: select timed out
[Inferior 1 (process 8209) exited with code 01]

所以某些事情正在发生变化,因为该过程受到 ptrace 监控。这只能由内核引起。

我已经提交了 bug report on the Linux kernel并将报告他们对此的看法。

关于c - select 只检查 fds 直到 255 直到 FD_SETSIZE,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47098097/

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