我正在研究原始套接字。我使用IP_HDRINCL选项来构建自己的IP头。在IP标头之后,我正在构建UDP标头。然后我将数据包发送到我系统的环回地址。我有另一个程序正在运行,它将捕获UDP数据包。为了检查数据包是否正确形成和接收,我正在运行另一个正在读取原始IP数据报的进程。我的问题是虽然第二个进程(读取原始数据报)运行良好(所有IP和UDP字段似乎都没问题),但第一个进程(接收UDP)没有收到我创建的任何数据包。 IP头中的协议字段没问题,端口也匹配...... 我使用的是Linux 2.6.35-22。 我想知道新内核中这是否正常?请检查下面的代码是否有任何错误。应该接收数据包的UDP进程正在侦听绑定到同一台机器上的端口50000的套接字...
unsigned short in_cksum(unsigned short *addr, int len)
{
int nleft = len;
int sum = 0;
unsigned short *w = addr;
unsigned short answer = 0;
while (nleft > 1) {
sum += *w++;
nleft -= 2;
}
if (nleft == 1) {
*(unsigned char *) (&answer) = *(unsigned char *) w;
sum += answer;
}
sum = (sum >> 16) + (sum & 0xFFFF);
sum += (sum >> 16);
answer = ~sum;
return (answer);
}
main()
{
int fd=socket(AF_INET,SOCK_RAW,IPPROTO_UDP);
int val=1;
int ret=setsockopt(fd,IPPROTO_IP,IP_HDRINCL,&val,sizeof(val));
char buf[8192];
/* create a IP header */
struct iphdr* ip=(struct iphdr*)buf;//(struct iphdr*) malloc(sizeof(struct iphdr));
ip->version=4;
ip->ihl=5;
ip->tos=0;
ip->id=0;
ip->frag_off=0;
ip->ttl=255;
ip->protocol=IPPROTO_UDP;
ip->check=0;
ip->saddr=inet_addr("1.2.3.4");
ip->daddr=inet_addr("127.0.0.1");
struct udphdr* udp=(struct udphdr*)(buf+sizeof(struct iphdr));//(struct udphdr*) malloc(sizeof(struct udphdr));
udp->source=htons(40000);
udp->dest=htons(50000);
udp->check=0;
char* data=(char*)buf+sizeof(struct iphdr)+sizeof(struct udphdr);strcpy(data,"Harry Potter and the Philosopher's Stone");
udp->len=htons(sizeof(struct udphdr)+strlen(data));
udp->check=in_cksum((unsigned short*) udp,8+strlen(data));
ip->tot_len=htons(sizeof(struct iphdr)+sizeof(struct udphdr)+strlen(data));
struct sockaddr_in d;
bzero(&d,sizeof(d));
d.sin_family=AF_INET;
d.sin_port=htons(50000);
inet_pton(AF_INET,"localhost",&d.sin_addr.s_addr);
while(1)
sendto(fd,buf,sizeof(struct iphdr)+sizeof(struct udphdr)+strlen(data),0,(struct sockaddr*) &d,sizeof(d));
}
答案 0 :(得分:3)
UDP校验和的计算似乎存在问题。
udp->check=in_cksum((unsigned short*) udp,8+strlen(data));
UDP check-sum必须在UDP标头之前包含称为“Pseudo-Header”的东西。该代码仅计算UDP报头和有效负载的校验和。由于错误的校验和,UDP接收进程可能没有收到数据包。
在Wireshark中启用校验和验证,并检查UDP数据包的校验和字段是否正确。
请参阅以下内容:
答案 1 :(得分:0)
我尝试过非常相似的东西。问题是套接字API和扩展程序使用它们的任何程序都不会返回由接口写入WRITTEN的数据,这与诸如wiresharks / tcpdump之类的嗅探器使用的原始套接字不同。因此,即使您的数据包形成正确,UDP应用程序也不会读取它们。 如果网络上有另一台计算机,请使用一台计算机生成流量,另一台计算机读取计算机。或者,如果你有两个接口,你可以在每个接口上打开一个原始套接字...一个用于写入,另一个用于读取。