网络嗅探函数库Libpcap

1.简介

  libpcap即Packet Capture Library,是一个Linux常用的数据包捕获函数库。该库全部由C语言编写,为不同的系统提供了统一的编程接口,一共提供了20多个API函数。使用libpcap的API能够轻易地捕获数据包,并且能够进行自定义的过滤,存储以分析等。

2. 工作原理

  libpcap由两部分组成,分别是网络分接口和数据过滤器。网络分接口负责从监听网络设备驱动程序,拷贝一份其收到的数据帧,数据过滤器则是根据过滤规则决定是否丢弃该数据帧。
 

3. 开发流程

  1. 决定从哪个网络端口进行嗅探。可以硬编码,也可以使用pcap的API来寻找。
  2. 进行初始化,告诉pcap你要监听哪些网络端口。
  3. 告诉pcap的过滤规则,过滤出你想要的数据帧。
  4. 循环,每次抓到数据帧后会调用用户定义的回调函数进行处理。
  5. 关闭网络端口,结束嗅探。

4. API

  1. 网络端口相关

    /***********************
    *功能:用于自动寻找网络设备
    *参数:errbuf,用于存储出错信息
    *返回值:网络设备名
    ***********************/
    char *pcap_lookupdev(char *errbuf)
  2. 初始化相关

    /***********************
    *功能:用于打开网络端口
    *参数:device,用来指定网络设备
    *参数:snaplen,指定捕获的最大字节数
    *参数:promisc,指定是否将网络接口置于混杂模式
    *参数:to_ms,参数指定超时时间
    *参数:errbuf,用于存储出错信息
    *返回值:用于捕获网络数据包的描述字
    ***********************/
    pcap_t *pcap_open_live(char *device, int snaplen, int promisc, int to_ms, char *errbuf)
  3. 过滤规则相关

    /***********************
    *功能:用于将用户输入的字符串的编译成bpf
    *参数:p,捕获网络数据包的描述字
    *参数:fp,用来存放编译完的bpf
    *参数:str,指定用户输入的过滤表达式
    *参数:optimize,指定是否优化
    *参数:netmask,指定本地网络的网络掩码
    *返回值:用于捕获网络数据包的描述字
    ***********************/
    int pcap_compile(pcap_t *p, struct bpf_program *fp,char *str, int optimize, bpf_u_int32 netmask)
    
    /***********************
    *功能:将bpf应用到对应端口上
    *参数:p,捕获网络数据包的描述字
    *参数:fp,bpf
    *返回值:出错时返回-1
    ***********************/
    int pcap_setfilter(pcap_t *p, struct bpf_program *fp)

      BPF是目前linux内核进行过滤的机制,libpcap提供的这个API使得我们不用关注BPF的语法,只需要使用libpcap的过滤表达式的简单语法即可。关于libpcap过滤表达式的语法,请参考TCPDUMP官网的文档

  4. 循环抓包相关

    /***********************
    *功能:捕获并处理数据包
    *参数:p,即捕获网络数据包的描述字
    *参数:callback,每次捕获到数据包会调用该函数
    *参数:user,用户自定义的附加数据
    *返回值:出错时返回-1
    ***********************/
    int pcap_dispatch(pcap_t *p, int cnt,pcap_handler callback, u_char *user) 
    
    /***********************
    *额外描述:该函数与pcap_dispatch不同的是不会受到pacp_open_live的to_ms影响,会一直循环
    *功能:捕获并处理数据包
    *参数:p,即捕获网络数据包的描述字
    *参数:cnt,表示在该函数返回前最多能处理的数据包数
    *参数:callback,每次捕获到数据包会调用该函数
    *参数:user,用户自定义的附加数据
    *返回值:出错时返回-1
    ***********************/
    int pcap_loop(pcap_t *p, int cnt, pcap_handler callback, u_char *user)
    
    /***********************
    *额外描述:该函数与上面两个不同,只能抓取一个包,抓到会立即返回
    *功能:捕获数据包
    *参数:p,即捕获网络数据包的描述字
    *参数:h是一个数据包类型的指针
    *返回值:出错时返回-1
    ***********************/
    u_char * pcap_next(pcap_t *p, struct pcap_pkthdr *h)
  5. 关闭相关

    /***********************
    *功能:关闭相应的网络描述字相应的文件,并释放资源
    *参数:p,即捕获网络数据包的描述字
    ***********************/
    void pcap_close(pcap_t *p) 
关于嗅探器的源代码#include #include #include #include #include #pragma comment(lib,"ws2_32.lib") #define MAX_HOSTNAME_LAN 255 #define SIO_RCVALL _WSAIOW(IOC_VENDOR,1) #define MAX_ADDR_LEN 16 struct ipheader { unsigned char ip_hl:4; unsigned char ip_v:4; unsigned char ip_tos; unsigned short int ip_len; unsigned short int ip_id; unsigned short int ip_off; unsigned char ip_ttl; unsigned char ip_p; unsigned short int ip_sum; unsigned int ip_src; unsigned int ip_dst; }; typedef struct tcpheader { unsigned short int sport; unsigned short int dport; unsigned int th_seq; unsigned int th_ack; unsigned char th_x:4; unsigned char th_off:4; unsigned char Flags; unsigned short int th_win; unsigned short int th_sum; unsigned short int th_urp; }TCP_HDR; typedef struct udphdr { unsigned short sport; unsigned short dport; unsigned short len; unsigned short cksum; }UDP_HDR; void main(){ SOCKET sock; WSADATA wsd; DWORD dwBytesRet; unsigned int optval = 1; unsigned char *dataudp,*datatcp; int i,pCount=0,lentcp, lenudp; SOCKADDR_IN sa,saSource, saDest; struct hostent FAR * pHostent; char FAR name[MAX_HOSTNAME_LAN]; char szSourceIP[MAX_ADDR_LEN], szDestIP[MAX_ADDR_LEN],RecvBuf[65535] = {0}; struct udphdr *pUdpheader; struct ipheader *pIpheader; struct tcpheader *pTcpheader; WSAStartup(MAKEWORD(2,1),&wsd); if ((sock = socket(AF_INET, SOCK_RAW, IPPROTO_IP))==SOCKET_ERROR) exit(1); gethostname(name, MAX_HOSTNAME_LAN); pHostent = gethostbyname(name); sa.sin_family = AF_INET; sa.sin_port = htons(6000); memcpy(&sa.sin_addr.S_un.S_addr, pHostent->h_addr_list[0], pHostent->h_length); bind(sock, (SOCKADDR *)&sa, sizeof(sa)); if ((WSAGetLastError())==10013) exit(1); WSAIoctl(sock, SIO_RCVALL, &optval, sizeof(optval), NULL, 0, &dwBytesRet, NULL, NULL); pIpheader = (struct ipheader *)RecvBuf; pTcpheader = (struct tcpheader *)(RecvBuf+ sizeof(struct ipheader )); pUdpheader = (struct udphdr *) (RecvBuf+ sizeof(struct ipheader )); while (1){ memset(RecvBuf, 0, sizeof(RecvBuf)); recv(sock, RecvBuf, sizeof(RecvBuf), 0); saSource.sin_addr.s_addr = pIpheader->ip_src; strncpy(szSourceIP, inet_ntoa(saSource.sin_addr), MAX_ADDR_LEN); saDest.sin_addr.s_addr = pIpheader->ip_dst; strncpy(szDestIP, inet_ntoa(saDest.sin_addr), MAX_ADDR_LEN); lentcp =(ntohs(pIpheader->ip_len)-(sizeof(struct ipheader)+sizeof(struct tcpheader))); lenudp =(ntohs(pIpheader->ip_len)-(sizeof(struct ipheader)+sizeof(struct udphdr))); if((pIpheader->ip_p)==IPPROTO_TCP&&lentcp!=0){ printf("*******************************************\n"); pCount++; datatcp=(unsigned char *) RecvBuf+sizeof(struct ipheader)+sizeof(struct tcpheader); printf("-TCP-\n"); printf("\n%s\n",szDestIP); printf("\n%i\n",ntohs(pTcpheader->dport)); printf("datatcp address->%x\n",datatcp); printf("size of ipheader->%i\n",sizeof(struct ipheader)); printf("size of tcpheader->%i\n",sizeof(struct tcpheader)); printf("size of the hole packet->%i\n",ntohs(pIpheader->ip_len)); printf("\nchar Packet%i [%i]=\"",pCount,lentcp-1); for (i=0;i<lentcp;i++){ printf("\\x%.2x",*(datatcp+i)); if (i==0) printf("\"\n\""); } printf("\";\n\n\n"); for (i=0;i<lentcp;i++){ if( *(datatcp+i)=20) printf("%c",*(datatcp+i)); else printf("."); } printf("\n\n*******************************************\n"); } if((pIpheader->ip_p)==IPPROTO_UDP&&lentcp!=0){ pCount++; dataudp=(unsigned char *) RecvBuf+sizeof(struct ipheader)+sizeof(struct udphdr); printf("-UDP-\n"); printf("\n%s\n",szDestIP); printf("\n%d\n",ntohs(pTcpheader->dport)); printf("UDP%x\n",dataudp); printf("IP%i\n",sizeof(struct ipheader)); printf("UDP%i\n",sizeof(struct udphdr)); printf("%i\n",ntohs(pIpheader->ip_len)); printf("\nchar Packet%i [%i]=\"",pCount,lenudp-1); for (i=0;i<lenudp;i++){ printf("\\x%.2x",*(dataudp+i)); if (i==0) printf("\"\n\""); } printf("\";\n\n\n"); for (i=0;i<lenudp;i++){ if( *(dataudp+i)=20) printf("%c",*(dataudp+i)); else printf("."); } printf("\n\n*******************************************\n"); } } }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值