尝试发送char时的EFAULT

时间:2016-12-18 06:06:13

标签: c++ linux debian send raw-sockets

我正在尝试使用send发送单个1字节值,但是当我尝试失败并将errno设置为EFAULT时。我不确定为什么这是因为我将buf参数设置为char的地址。

#include <stdio.h>
#include <sys/socket.h>
#include <arpa/inet.h>
#include <errno.h>
#include <stdlib.h>
#include <string.h>
#include <netinet/ip.h>
#include <netinet/tcp.h>
#include <unistd.h>

#define INVALID_SOCKET ~0

int main()
{
    int s = socket(AF_INET, SOCK_RAW, IPPROTO_RAW);
    struct sockaddr_in sin = {0};
    char C0 = 3;

    if(s == INVALID_SOCKET){exit(1);}

    sin.sin_addr.s_addr = inet_addr(/*ip*/);
    sin.sin_port        = htons(1935);
    sin.sin_family      = AF_INET;

    printf("Destination IP: %s\n", inet_ntoa(sin.sin_addr));
    printf("Destination Port: %u\n", ntohs(sin.sin_port));

    if(connect(s, (struct sockaddr*)&sin, sizeof(sin)) == -1){printf("Errno: %d\n", errno);exit(2);}

    if(send(s, &C0, 1, 0) == -1)
    {
        switch(errno)
        {
            case EFAULT:
            {
                printf("Error: Invalid memory address\nExiting\n");
                close(s);
                exit(3);
                break;
            }
            default:
            {
                printf("Error: %d\nExiting\n", errno);
                close(s);
                exit(3);
                break;
            }
        }
    }

    return 0;
}

1 个答案:

答案 0 :(得分:0)

问题是您正在创建原始套接字。这意味着你必须从头开始创建完整的IP数据包,你不需要这样做。

现在发生的事情是未定义的行为作为send调用,并且底层网络堆栈超出了您提供的单个字节之外读取数据的范围。