我正在尝试伪造IGMPv2成员资格请求数据包并将其发送到RAW套接字。
RFC 3376声明:
IGMP消息封装在IPv4数据报中,IP协议编号为2.本文档中描述的每个IGMP消息都以IP生存时间1,网络控制的IP优先级(例如,服务类型)发送0xc0),并在其IP报头中携带IP路由器警报选项[RFC-2113]
因此必须设置IP_ROUTER_ALERT标志。
我正在尝试伪造数据包的严格必要性(例如只有IGMP头和有效负载),因此我使用setsockopt来编辑IP选项。
一些有用的变量:
#define C_IP_MULTICAST_TTL 1
#define C_IP_ROUTER_ALERT 1
int sockfd = 0;
int ecsockopt = 0;
int bytes_num = 0;
int ip_multicast_ttl = C_IP_MULTICAST_TTL;
int ip_router_alert = C_IP_ROUTER_ALERT;
以下是我打开RAW套接字的方法:
sock_domain = AF_INET;
sock_type = SOCK_RAW;
sock_proto = IPPROTO_IGMP;
if ((ecsockopt = socket(sock_domain,sock_type,sock_proto)) < 0) {
printf("Error %d: Can't open socket.\n", errno);
return 1;
} else {
printf("** Socket opened.\n");
}
sockfd = ecsockopt;
然后我设置TTL和Router Alert选项:
// Set the sent packets TTL
if((ecsockopt = setsockopt(sockfd, IPPROTO_IP, IP_MULTICAST_TTL, &ip_multicast_ttl, sizeof(ip_multicast_ttl))) < 0) {
printf("Error %d: Can't set TTL.\n", ecsockopt);
return 1;
} else {
printf("** TTL set.\n");
}
// Set the Router Alert
if((ecsockopt = setsockopt(sockfd, IPPROTO_IP, IP_ROUTER_ALERT, &ip_router_alert, sizeof(ip_router_alert))) < 0) {
printf("Error %d: Can't set Router Alert.\n", ecsockopt);
return 1;
} else {
printf("** Router Alert set.\n");
}
IP_ROUTER_ALERT的setsockopt返回0.伪造数据包后,我用sendto以这种方式发送它:
// Send the packet
if((bytes_num = sendto(sockfd, packet, packet_size, 0, (struct sockaddr*) &mgroup1_addr, sizeof(mgroup1_addr))) < 0) {
printf("Error %d: Can't send Membership report message.\n", bytes_num);
return 1;
} else {
printf("** Membership report message sent. (bytes=%d)\n",bytes_num);
}
发送数据包,但缺少IP_ROUTER_ALERT选项(使用wireshark检查)。 难道我做错了什么?是否有其他方法来设置IP_ROUTER_ALERT选项?
提前致谢。
答案 0 :(得分:2)
最后我发现必须由Linux内核设置IP_ROUTER_ALERT
。 IP_ADD_MEMBERSHIP
完成后发送IGMP成员资格请求,内核负责设置IP_ROUTER_ALERT
标志。
答案 1 :(得分:1)
我不知道为什么你的代码不起作用(对我来说看起来很好),但我可以建议一个解决方法:在原始套接字上再放一层并构建以太网帧。您可能还想查看Libnet,它会为您处理这样的数据包。
答案 2 :(得分:0)
传递所有要转发的数据包 IP路由器警报选项设置为此 插座。仅对原始套接字有效。 例如,这对用户来说很有用 空间RSVP守护进程。窃听的数据包 它不是由内核转发的 用户有责任发送它们 再来一次。套接字绑定被忽略, 此类数据包仅通过过滤 协议。期待一个整数标志。
这听起来好像该选项仅在在套接字上接收数据包时才重要,而不是在发送时。如果您要发送原始数据包,那么您自己只能在IP标头中set the required option吗?
答案 3 :(得分:0)
作为参考,我会推荐其中许多IGMP感知程序之一。
一个例子是igmpproxy
:
https://github.com/ViToni/igmpproxy/blob/logging/src/igmp.c#L54
/*
* Open and initialize the igmp socket, and fill in the non-changing
* IP header fields in the output packet buffer.
*/
void initIgmp(void) {
struct ip *ip;
recv_buf = malloc(RECV_BUF_SIZE);
send_buf = malloc(RECV_BUF_SIZE);
k_hdr_include(true); /* include IP header when sending */
k_set_rcvbuf(256*1024,48*1024); /* lots of input buffering */
k_set_ttl(1); /* restrict multicasts to one hop */
k_set_loop(false); /* disable multicast loopback */
ip = (struct ip *)send_buf;
memset(ip, 0, sizeof(struct ip));
/*
* Fields zeroed that aren't filled in later:
* - IP ID (let the kernel fill it in)
* - Offset (we don't send fragments)
* - Checksum (let the kernel fill it in)
*/
ip->ip_v = IPVERSION;
ip->ip_hl = (sizeof(struct ip) + 4) >> 2; /* +4 for Router Alert option */
ip->ip_tos = 0xc0; /* Internet Control */
ip->ip_ttl = MAXTTL; /* applies to unicasts only */
ip->ip_p = IPPROTO_IGMP;
allhosts_group = htonl(INADDR_ALLHOSTS_GROUP);
allrouters_group = htonl(INADDR_ALLRTRS_GROUP);
alligmp3_group = htonl(INADDR_ALLIGMPV3_GROUP);
}
和https://github.com/ViToni/igmpproxy/blob/logging/src/igmp.c#L271
/*
* Construct an IGMP message in the output packet buffer. The caller may
* have already placed data in that buffer, of length 'datalen'.
*/
static void buildIgmp(uint32_t src, uint32_t dst, int type, int code, uint32_t group, int datalen) {
struct ip *ip;
struct igmp *igmp;
extern int curttl;
ip = (struct ip *)send_buf;
ip->ip_src.s_addr = src;
ip->ip_dst.s_addr = dst;
ip_set_len(ip, IP_HEADER_RAOPT_LEN + IGMP_MINLEN + datalen);
if (IN_MULTICAST(ntohl(dst))) {
ip->ip_ttl = curttl;
} else {
ip->ip_ttl = MAXTTL;
}
/* Add Router Alert option */
((unsigned char*)send_buf+MIN_IP_HEADER_LEN)[0] = IPOPT_RA;
((unsigned char*)send_buf+MIN_IP_HEADER_LEN)[1] = 0x04;
((unsigned char*)send_buf+MIN_IP_HEADER_LEN)[2] = 0x00;
((unsigned char*)send_buf+MIN_IP_HEADER_LEN)[3] = 0x00;
igmp = (struct igmp *)(send_buf + IP_HEADER_RAOPT_LEN);
igmp->igmp_type = type;
igmp->igmp_code = code;
igmp->igmp_group.s_addr = group;
igmp->igmp_cksum = 0;
igmp->igmp_cksum = inetChksum((unsigned short *)igmp,
IP_HEADER_RAOPT_LEN + datalen);
}