raw_socket用mac地址进行通信实例(C语言)

1 篇文章 0 订阅
1 篇文章 0 订阅

因为实验室项目的需求需求是需要用socket写出一个用mac地址通信的链接,因为不是很了解socket在网络上找了一些相关代码进行修改,自该成下列代码,里面又很多代码被我注释掉并且又一些代码没有用到也没删掉主要用于之后可能进行的修改,因为目前这个代码是否符合要求不是很有信心,写本篇博客主要是因为相关要求的代码实例很少。

需求:

系统linux,相互通信的双方必定直接连接,本人是将两台电脑网口经过双绞线直接接起来的,集线器应该也可以,但是路由器不知行不行。

代码:C

代码需求:希望可以使用mac地址来进行通信,尤其是广播通信,但是又希望没有多余的头部,所以有了这么一个奇怪的要求

代码简单分为client和server:

server代码:

//捕获二层包,并把数据输出
#include <unistd.h>
#include <stdio.h>
#include <sys/socket.h>
#include <netinet/ip.h>
#include <netinet/udp.h>
#include<memory.h>
#include<stdlib.h>
#include <linux/if_ether.h>
#include <linux/if_packet.h> // sockaddr_ll
#include<arpa/inet.h>
#include<netinet/if_ether.h>
//#include<iomanip>
#include<errno.h>
#include<netinet/ether.h>
#include<net/if.h>
#include<string.h>
//#include<iostream>
//using namespace std;
int main(int argc, char **argv) {
	int sock, n;
	char buffer[1024];


	if ((sock = socket(PF_PACKET, SOCK_RAW, htons(ETH_P_ALL))) < 0)
	{
		perror("socket");
		exit(1);
	}

	struct sockaddr_ll client;
	socklen_t addr_length = sizeof(struct sockaddr_ll);
	uint8_t sendbuffer[1024];

	while (1) {
		n = recvfrom(sock, buffer,1024,0, (struct sockaddr *)&client, &addr_length);
		if (n < 14) {
			continue;
		}
		//cout << AF_PACKET << "   " << client.sll_family << endl;
		//cout << htons(6) << "    " << client.sll_halen << endl;

		printf("受到消息%d个\n",n-14);
		int num = n-14;
		memcpy(sendbuffer, buffer, n);
		char data[1024];data[24]='\0';
                memcpy(data,sendbuffer+14,num);
		printf("%s\n",data);
       		//printf("masg is %x,%x,%x,%x,%x,%x to %x,%x,%x,%x,%x,%x\n",buffer[0],buffer[1],buffer[2],buffer[3],buffer[4],buffer[5],buffer[6],buffer[7],buffer[8],buffer[9],buffer[10],buffer[11]);
		
		/*memcpy(sendbuffer, buffer + 6, 6);
		memcpy(sendbuffer + 6, buffer, 6);

		memcpy(sendbuffer + 14 + 12, buffer + 14 + 16, 4);
		memcpy(sendbuffer + 14 + 16, buffer + 14 + 12, 4);

		//memset(sendbuffer + 14 + 20, 0, n - 14 - 20);

		n = sendto(sock, sendbuffer, n, 0, (struct sockaddr *) &client, sizeof(client));
		cout << n << endl;*/

	}

}

client代码:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <net/if.h>				//struct ifreq
#include <sys/ioctl.h>			//ioctl、SIOCGIFADDR
#include <sys/socket.h>
#include <netinet/ether.h>		//ETH_P_ALL
#include <netpacket/packet.h>	//struct sockaddr_ll
 #include <arpa/inet.h>
  #include <sys/types.h>
#include<unistd.h>    //close
unsigned short checksum(unsigned short *buf, int nword);//校验和函数
int main(int argc, char *argv[])
{
	//1.创建通信用的原始套接字
	int sock_raw_fd = socket(PF_PACKET, SOCK_RAW, htons(ETH_P_ALL));
	
	//2.根据各种协议首部格式构建发送数据报
	unsigned char send_msg[1024] = {
		//--------------组MAC--------14------
		0x8c, 0xec, 0x4b, 0x73, 0xae, 0x04, //dst_mac: E8-6A-64-17-CB-5C目的地址
		0x8c, 0xec, 0x4b, 0x73, 0x79, 0xb5, //src_mac: 8c:ec:4b:73:79:b5源mac地址
		0x08, 0x00,                         //类型:0x0800 IP协议
	/*	//--------------组IP---------20------
		0x45, 0x00, 0x00, 0x00,             //版本号:4, 首部长度:20字节, TOS:0, --总长度--:
		0x00, 0x00, 0x00, 0x00,				//16位标识、3位标志、13位片偏移都设置0
		0x80, 17,   0x00, 0x00,				//TTL:128、协议:UDP(17)、16位首部校验和
		10,  221,   20,  11,				//src_ip: 10.221.20.11
		10,  221,   20,  10,				//dst_ip: 10.221.20.10
		//--------------组UDP--------8+78=86------
		0x1f, 0x90, 0x1f, 0x90,             //src_port:0x1f90(8080), dst_port:0x1f90(8080)
		0x00, 0x00, 0x00, 0x00,               //#--16位UDP长度--30个字节、#16位校验和*/
	};
	
	int len = sprintf(send_msg+14, "%s", "this is for the udp test");
/*	if(len % 2 == 1)//判断len是否为奇数
	{
		len++;//如果是奇数,len就应该加1(因为UDP的数据部分如果不为偶数需要用0填补)
	}
	
	*((unsigned short *)&send_msg[16]) = htons(20+8+len);//IP总长度 = 20 + 8 + len
	*((unsigned short *)&send_msg[14+20+4]) = htons(8+len);//udp总长度 = 8 + len
	//3.UDP伪头部
	unsigned char pseudo_head[1024] = {
		//------------UDP伪头部--------12--
		192,  168,   0,  1,				//src_ip: 10.221.20.11
		192,  168,   0,  255,				//dst_ip: 10.221.20.10
		0x00, 17,   0x00, 0x00,             	//0,17,#--16位UDP长度--20个字节
	};
	
	*((unsigned short *)&pseudo_head[10]) = htons(8 + len);//为头部中的udp长度(和真实udp长度是同一个值)
	//4.构建udp校验和需要的数据报 = udp伪头部 + udp数据报
	memcpy(pseudo_head+12, send_msg+34, 8+len);//--计算udp校验和时需要加上伪头部--
	//5.对IP首部进行校验
	*((unsigned short *)&send_msg[24]) = htons(checksum((unsigned short *)(send_msg+14),20/2));
	//6.--对UDP数据进行校验--
	*((unsigned short *)&send_msg[40]) = htons(checksum((unsigned short *)pseudo_head,(12+8+len)/2));
	
	*/
	//发送数据
	struct sockaddr_ll sll;					//原始套接字地址结构
	struct ifreq req;					//网络接口地址
	
	strncpy(req.ifr_name, "enp0s31f6", IFNAMSIZ);			//指定网卡名称
	if(-1 == ioctl(sock_raw_fd, SIOCGIFINDEX, &req))	//获取网络接口
	{
		perror("ioctl");
		close(sock_raw_fd);
		exit(-1);
	}
	
	/*将网络接口赋值给原始套接字地址结构*/
	bzero(&sll, sizeof(sll));
	sll.sll_ifindex = req.ifr_ifindex;
	len = sendto(sock_raw_fd, send_msg, 14+len, 0 , (struct sockaddr *)&sll, sizeof(sll));
	if(len == -1)
	{
		perror("sendto");
	}
	return 0;
}
 
unsigned short checksum(unsigned short *buf, int nword)
{
	unsigned long sum;
	for(sum = 0; nword > 0; nword--)
	{
		sum += htons(*buf);
		buf++;
	}
	sum = (sum>>16) + (sum&0xffff);
	sum += (sum>>16);
	return ~sum;
}

最终达到可以输出传输数据的效果,但是接收端会接收很多的无关消息而且因为一些电脑机制的问题,长度最小是60,大家有什么建议可以提出来。

评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值