0

我在调试为什么 client.c 中 read_from_fifo 函数中的 n_bytes 与写入 fifo 的值不对应时遇到问题。它应该只写入 25 个字节,但它会尝试读取更多(准确地说是 1836020505 个字节(!))。知道为什么会这样吗?

服务器.c:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/wait.h>
#include <signal.h>
#include <pthread.h>
#include <sys/stat.h>

typedef enum { false, true } bool;

//first read the int with the number of bytes the data will have
//then read that number of bytes
bool read_from_fifo(int fd, char* var)
{
    int n_bytes;
    if (read(fd, &n_bytes, sizeof(int)))
    {
        printf("going to read %d bytes\n", n_bytes);
        if (read(fd, var, n_bytes))
            printf("read var\n");
        else {
            printf("error in read var. errno: %d\n", errno);
            exit(-1);
        }
    }

    return true;
}

int main()
{
    mkfifo("/tmp/foo", 0660);
    int fd = open("/tmp/foo", O_RDONLY);
    char var[100];
    read_from_fifo(fd, var);
    printf("var: %s\n", var);
    return 0;
}

客户端.c:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <unistd.h>
#include <fcntl.h>

typedef enum { false, true } bool;

//first write to fd a int with the number of bytes that will be written afterwards
bool write_to_fifo(int fd, char* data)
{
    int n_bytes = (strlen(data)) * sizeof(char);
    printf("going to write %d bytes\n", n_bytes);
    if (write(fd, &n_bytes, sizeof(int) != -1))
        if (write(fd, data, n_bytes) != -1)
            return true;
    return false;
}


int main()
{
    int fd = open("/tmp/foo", O_WRONLY);
    char data[] = "some random string abcdef";
    write_to_fifo(fd, data);
    return 0;
}

非常感谢您的帮助。提前致谢。

4

3 回答 3

0

The return value for an error from read(2) is -1, not 0. So your if statement for the first 4-byte read, at least, is wrong.

于 2010-05-30T01:07:57.133 回答
0

您是否验证了 read_from_fifo() 函数打印的 nbytes 是否显示了正确的值?请注意,在 write(fd, data, n_bytes) 时,您没有写入字符串 char '\0' 的结尾,并且每当您通过 read(fd, var, n_bytes) 读取它时,您都没有添加 '\0'到刚刚读取的字符串的末尾,所以 printf("var: %s\n", var); 可能会显示一个非 \0 结尾的字符串,从而导致无法预料的结果。

于 2010-05-30T01:28:05.267 回答
0

我自己找到了解决方案。

问题是')'信不信由你。n_bytes 变量是正确的,问题是我没有将它写入 fifo。

这个(write(fd, &n_bytes, sizeof(int) != -1))

应该是这个(write(fd, &n_bytes, sizeof(int)) != -1)

无论如何感谢您的回答。

于 2010-05-30T11:39:23.013 回答