我正在尝试从套接字接收原始数据包并失败。消息仅在服务器站点上发送数据包时打印。当没有数据包被传输时 - 程序在 recv 中挂起(同步模式下的套接字)。
问题是打印消息是“缓冲区”但没有收到数据。
#include <sys/socket.h>
#include <linux/if_packet.h>
#include <linux/if_ether.h>
#include <linux/if_arp.h>
#define ETH_FRAME_LEN 1400
int main(){
int s; /*socketdescriptor*/
s = socket(PF_PACKET, SOCK_RAW, htons(0x88b5));
if (s == -1) { perror("socket"); }
struct sockaddr_ll socket_address;
int r;
char ifName[IFNAMSIZ] = "eth0";
struct ifreq ifr;
strncpy((char *)ifr.ifr_name ,device , IFNAMSIZ);
/* Get the index of the interface to send on */
memset(&if_idx, 0, sizeof(struct ifreq));
strncpy(if_idx.ifr_name, ifName, IFNAMSIZ-1);
if (ioctl(sockfd, SIOCGIFINDEX, &if_idx) < 0)
perror("SIOCGIFINDEX");
/* Get the MAC address of the interface to send on */
memset(&if_mac, 0, sizeof(struct ifreq));
strncpy(if_mac.ifr_name, ifName, IFNAMSIZ-1);
if (ioctl(sockfd, SIOCGIFHWADDR, &if_mac) < 0)
perror("SIOCGIFHWADDR");
memset(&socket_address, 0, sizeof(socket_address));
socket_address.sll_ifindex = ifr.if_idx;
socket_address.sll_protocol = htons(0x88b5);
socket_address.sll_family = PF_PACKET;
socket_address.sll_pkttype = PACKET_OUTGOING;
r = bind(s, (struct sockaddr*)&socket_address,
sizeof(socket_address));
if ( r < 0) { perror("bind")};
void* buffer = (void*)malloc(ETH_FRAME_LEN); /*Buffer for ethernet frame*/
int length = 0; /*length of the received frame*/
length = recv(s, buffer, ETH_FRAME_LEN, 0,);
if (length == -1) { perror("recvfrom"); }
printf ("buffer %s\n", buffer);
}