linux基础编程 链路层socket 摆脱winPcap 夸网段socket通信 可夸平台移植

在linux环境中要从链路层(MAC)直接收发数据帧,可以通过libpcap与libnet两个动态库来分别完成收与发的工作。虽然它已被广泛使用,但在要求进行跨平台移植的软件中使用就很难办到了。。

这是一种更为直接地、无须安装其它库的从MAC层收发数据帧的方式,即通过定义链路层的套接字来完成。

下面的代码也是我做的项目中的代码(夸网段访问网络中的嵌入式设备),去掉了敏感部分,和大家共享!

但是得尊重别人的劳动成果,转载注明出处,谢谢!

#include          
#include           
#include 
#include 
#include  
#include 		
#include       
#include       
#include        
#include          
#include 
#include 


/*链路层socket接收端口*/
#define RAW_PROTOCOL 0x0909
#define ETH_NAME "eth0"

#define __DEBUG
#ifdef __DEBUG
#define DBG(fmt,args...) fprintf(stdout,  fmt,  ##args)
#else
#define DBG(fmt,args...)
#endif
#define ERR(fmt,args...) fprintf(stderr,  fmt,  ##args)

static int raw_fd;
static int if_index;
static int isSearchQuit = 0;
unsigned char my_mac[6];	/*用于本机保存网卡地址*/

/*接收链路层数据包*/
int GetPacket(unsigned char *buf, int *len)
{
	int length = 0;

	length = recvfrom( raw_fd, buf, 2000, 0, NULL, NULL );
	if ( length < 0 )	{
		ERR("failed to receive buf!");
		return -1;
	}else	{
		*len = length;
		return 0;
	}
}

/*发送链路层数据包*/
int SendPacket(unsigned char *buf, int len)
{
	struct sockaddr_ll link;
	link.sll_ifindex = if_index;

	memcpy( link.sll_addr, buf, link.sll_halen );

	if ( sendto( raw_fd, buf, len, 0, (struct sockaddr *)&link, sizeof(link) ) < 0 )	{
		ERR( "failed to send to RAW socket!\r\n" );
		return -1;
	}
	return 0;
}

void ShowData(unsigned char *d1,int len)
{
	int i;
	for(i=0;i

运行结果,接收自网络中的完整数据包:

[root@localhost src]# ./RawSocket
ff ff ff ff ff ff 1c 6f 65 dc fa fb 09 09 00 00 00 00 06 04 01 00 00 00 00 00 00 00 c0 a8 01 dc ff ff ff ff ff ff c0 a8 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 



你可能感兴趣的:(linux系统编程,ipnc产品设计)