无法将文件描述符设置为阻止模式

时间:2019-09-26 14:03:40

标签: c linux file-descriptor termios

我正试图编写最短的代码以具有阻止文件描述符。

我先设定:O_NONBLOCK
第二个:ICANON,[VMIN],[VTIME]作为我的文件描述符...

要设置阻止文件描述符,我还需要设置哪些其他选项?

(sample.txt为空,并且使用不同模式的open()不会出现任何情况)


#include <fcntl.h>
#include <stdio.h>
#include <unistd.h>
#include <termios.h>


void set_blocking(int fd, int blocking) {

    int flags = fcntl(fd, F_GETFL, 0);

    if (blocking)
        flags &= ~O_NONBLOCK;
    else
        flags |= O_NONBLOCK;

    fcntl(fd, F_SETFL, flags);

    return;
}

int main(){

        int fd;
        char buff[100];
        struct termios options;

        options.c_lflag &= ~ICANON;

        options.c_cc[VMIN] = 2;
        options.c_cc[VTIME] = 0;

        fd = open("sample.txt",O_RDWR);

        tcsetattr(fd, TCSANOW, &options);

        set_blocking(fd,1);

        read(fd,buff,2);

        printf("%s\n",buff);

        return 0;
}

1 个答案:

答案 0 :(得分:0)

您的代码仅修改未初始化的struct termios options变量的一部分。当您的代码调用tcsetattr时,大多数options变量将被设置为随机位,因此tcsetattr可能会返回错误或将伪造的设置应用于终端。

由于您的代码仅显式修改某些终端设置,所以初始化options变量的最佳方法是使用对tcgetattr的调用将旧设置读入其中:

    ret = tcgetattr(fd, &options);
    if (ret < 0) {
        perror("tcgetattr");
        exit(1);
    }

    options.c_lflag &= ~ICANON;

    options.c_cc[VMIN] = 2;
    options.c_cc[VTIME] = 0;

    ret = tcsetattr(fd, TCSANOW, &options);
    if (ret < 0) {
        perror("tcsetattr");
        exit(1);
    }

上面的代码示例假定文件描述符fd链接到终端,因此isatty(fd)返回1。fd链接到普通链接时根本不适用文件。

在您发布的代码中,fd链接到当前目录中的一个名为“ sample.txt”的文件,该文件不太可能是终端。在这种情况下,tcgetattrtcsetattr调用将返回-1并将errno设置为ENOTTY