WinPcap編程(三),winpcap編程
1.過濾器設置
設置過濾器,得到你想要的哪種類型的包。Like WireShark。
過程:編譯過濾器,然後設置過濾器。直接上參考文檔的代碼:

![]()
if (d->addresses != NULL)
/* 獲取接口第一個地址的掩碼 */
netmask=((struct sockaddr_in *)(d->addresses->netmask))->sin_addr.S_un.S_addr;
else
/* 如果這個接口沒有地址,那麼我們假設這個接口在C類網絡中 */
netmask=0xffffff;
compile the filter
if (pcap_compile(adhandle, &fcode, "ip and tcp", 1, netmask) < 0)
{
fprintf(stderr,"\nUnable to compile the packet filter. Check the syntax.\n");
/* 釋放設備列表 */
pcap_freealldevs(alldevs);
return -1;
}
set the filter
if (pcap_setfilter(adhandle, &fcode) < 0)
{
fprintf(stderr,"\nError setting the filter.\n");
/* 釋放設備列表 */
pcap_freealldevs(alldevs);
return -1;
}
View Code
2.分析數據包
只需要知道怎麼構造,然後怎麼處理就可以了。
源碼:

![]()
#define WIN32
#include "pcap.h"
typedef struct mac{
u_char byte1;
u_char byte2;
u_char byte3;
u_char byte4;
u_char byte5;
u_char byte6;
}mac;
typedef struct eth_header{
mac dmac;
mac smac;
u_short type;
}eth_header;
/* 4字節的IP地址 */
typedef struct ip_address{
u_char byte1;
u_char byte2;
u_char byte3;
u_char byte4;
}ip_address;
/* IPv4 首部 */
typedef struct ip_header{
u_char ver_ihl; // 版本 (4 bits) + 首部長度 (4 bits)
u_char tos; // 服務類型(Type of service)
u_short tlen; // 總長(Total length)
u_short identification; // 標識(Identification)
u_short flags_fo; // 標志位(Flags) (3 bits) + 段偏移量(Fragment offset) (13 bits)
u_char ttl; // 存活時間(Time to live)
u_char proto; // 協議(Protocol)
u_short crc; // 首部校驗和(Header checksum)
ip_address saddr; // 源地址(Source address)
ip_address daddr; // 目的地址(Destination address)
u_int op_pad; // 選項與填充(Option + Padding)
}ip_header;
/* UDP 首部*/
typedef struct udp_header{
u_short sport; // 源端口(Source port)
u_short dport; // 目的端口(Destination port)
u_short len; // UDP數據包長度(Datagram length)
u_short crc; // 校驗和(Checksum)
}udp_header;
/* 回調函數原型 */
void packet_handler2(u_char *param, const struct pcap_pkthdr *header, const u_char *pkt_data);
int main()
{
pcap_if_t *alldevs;
pcap_if_t *d;
int inum;
int i = 0;
pcap_t *adhandle;
char errbuf[PCAP_ERRBUF_SIZE];
u_int netmask;
char packet_filter[] = "ip";
struct bpf_program fcode;
/* 獲得設備列表 */
if (pcap_findalldevs_ex(PCAP_SRC_IF_STRING, NULL, &alldevs, errbuf) == -1)
{
fprintf(stderr, "Error in pcap_findalldevs: %s\n", errbuf);
exit(1);
}
/* 打印列表 */
for (d = alldevs; d; d = d->next)
{
printf("%d. %s", ++i, d->name);
if (d->description)
printf(" (%s)\n", d->description);
else
printf(" (No description available)\n");
}
if (i == 0)
{
printf("\nNo interfaces found! Make sure WinPcap is installed.\n");
return -1;
}
printf("Enter the interface number (1-%d):", i);
scanf_s("%d", &inum);
if (inum < 1 || inum > i)
{
printf("\nInterface number out of range.\n");
/* 釋放設備列表 */
pcap_freealldevs(alldevs);
return -1;
}
/* 跳轉到已選設備 */
for (d = alldevs, i = 0; i< inum - 1; d = d->next, i++);
/* 打開適配器 */
//if ((adhandle = pcap_open(d->name, // 設備名
// 65536, // 要捕捉的數據包的部分
// // 65535保證能捕獲到不同數據鏈路層上的每個數據包的全部內容
// PCAP_OPENFLAG_PROMISCUOUS, // 混雜模式
// 0, // 讀取超時時間
// NULL, // 遠程機器驗證
// errbuf // 錯誤緩沖池
// )) == NULL)
if ((adhandle = pcap_open_live(d->name, 65536, PCAP_OPENFLAG_PROMISCUOUS,0,errbuf)) == NULL)
{
fprintf(stderr, "\nUnable to open the adapter. %s is not supported by WinPcap\n");
/* 釋放設備列表 */
pcap_freealldevs(alldevs);
return -1;
}
/* 檢查數據鏈路層,為了簡單,我們只考慮以太網 */
//if (pcap_datalink(adhandle) != DLT_EN10MB)
//{
// fprintf(stderr, "\nThis program works only on Ethernet networks.\n");
// /* 釋放設備列表 */
// pcap_freealldevs(alldevs);
// return -1;
//}
if (d->addresses != NULL)
/* 獲得接口第一個地址的掩碼 */
netmask = ((struct sockaddr_in *)(d->addresses->netmask))->sin_addr.S_un.S_addr;
else
/* 如果接口沒有地址,那麼我們假設一個C類的掩碼 */
netmask = 0xffffff;
//編譯過濾器
if (pcap_compile(adhandle, &fcode, packet_filter, 1, netmask) <0)
{
fprintf(stderr, "\nUnable to compile the packet filter. Check the syntax.\n");
/* 釋放設備列表 */
pcap_freealldevs(alldevs);
return -1;
}
//設置過濾器
if (pcap_setfilter(adhandle, &fcode)<0)
{
fprintf(stderr, "\nError setting the filter.\n");
/* 釋放設備列表 */
pcap_freealldevs(alldevs);
return -1;
}
printf("\nlistening on %s...\n", d->description);
/* 釋放設備列表 */
pcap_freealldevs(alldevs);
/* 開始捕捉 */
pcap_loop(adhandle, 0, packet_handler2, NULL);
system("pause");
return 0;
}
/* 回調函數,當收到每一個數據包時會被libpcap所調用 */
void packet_handler2(u_char *param, const struct pcap_pkthdr *header, const u_char *pkt_data)
{
struct tm ltime;
char timestr[16];
time_t local_tv_sec;
eth_header *eh;
ip_header *ih;
udp_header *uh;
u_int ip_len;
u_short sport=0, dport=0;
int i;
/* 將時間戳轉換成可識別的格式 */
local_tv_sec = header->ts.tv_sec;
localtime_s(<ime,&local_tv_sec);
strftime(timestr, sizeof timestr, "%H:%M:%S", <ime);
/* 打印數據包的時間戳和長度 */
printf("Time Stamp:%s.%.6d \nLength:%d \n", timestr, header->ts.tv_usec, header->len);
///*獲得以太網幀的首部*/
//eh = (eth_header *)(pkt_data);
///* 獲得IP數據包頭部的位置 */
//ih = (ip_header *)(pkt_data +
// 14); //以太網頭部長度
///* 獲得UDP首部的位置
//IP數據報頭部是4bits,單位是32bit(4個字節)
//一個IP包頭的長度最長為“1111”,即15*4=60個字節。IP包頭最小長度為20字節。
//*/
//ip_len = (ih->ver_ihl & 0xf) * 4;
//uh = (udp_header *)((u_char*)ih + ip_len);
///* 將網絡字節序列轉換成主機字節序列 */
//sport = ntohs(uh->sport);
//dport = ntohs(uh->dport);
/*打印數據包的數據*/
printf("\nDATA:");
for (i = 0; i< header->len; ++i)
{
printf(" %02x", pkt_data[i]);
if ((i + 1) % 16 == 0)
{
printf("\n");
}
}
/*打印MAC地址*/
//printf("\nDestination: %02x-%02x-%02x-%02x-%02x-%02x",
// eh->dmac.byte1,
// eh->dmac.byte2,
// eh->dmac.byte3,
// eh->dmac.byte4,
// eh->dmac.byte5,
// eh->dmac.byte6);
//printf("\nResources: %02x-%02x-%02x-%02x-%02x-%02x",
// eh->smac.byte1,
// eh->smac.byte2,
// eh->smac.byte3,
// eh->smac.byte4,
// eh->smac.byte5,
// eh->smac.byte6);
///* 打印IP地址和UDP端口 */
//printf("\nIP ADDRESS:%d.%d.%d.%d:%d -> %d.%d.%d.%d:%d\nUDP LENGTH:%d\n",
// ih->saddr.byte1,
// ih->saddr.byte2,
// ih->saddr.byte3,
// ih->saddr.byte4,
// sport,
// ih->daddr.byte1,
// ih->daddr.byte2,
// ih->daddr.byte3,
// ih->daddr.byte4,
// dport,
// ih->tlen);
}
View Code
3.發送包比較簡單,就不多說了。