libpcap库基本使用教程(python、C语言)

[TOC]

读取网络接口

安装和环境搭建

// 待补充

常用函数讲解

note:C语言编译时要加上-lpcap参数链接libpcap库。

pcap_lookupdev(errbuf)

作用

返回第一个适合的网络接口名称,没有找到的话返回-1。

参数详解
  • errbuf

C语言字符串缓存区用于缓冲错误信息。

C语言代码示例

char *pcap_lookupdev(char *errbuf);

#include <stdio.h>
#include <pcap.h>

int main()
{
    char errBuf[PCAP_ERRBUF_SIZE], * device;
    device = pcap_lookupdev(errBuf);
    if (device)
    {
        printf("device: %s\n", device);
    }
    else
    {
        printf("errbuf: %s\n", errBuf);
    }
    return 0;
}
python 代码示例
#!/usr/bin/env python3
import libpcap as pcap
import ctypes as ct # 需要用到一些c的数据类型,故引入ctypes

errbuf = ct.create_string_buffer(pcap.PCAP_ERRBUF_SIZE + 1)
print(pcap.lookupdev(errbuf))

pcap_findalldevs(alldevs, errbuf)

作用

返回所有的网络接口名称。

参数详解
  • alldevs

pcap_if_t结构体指针,用于存储查找到的所有网络设备信息。

  • errbuf

C语言字符串缓存区用于缓冲错误信息。

C语言代码示例

int pcap_findalldevs(pcap_if_t **alldevsp, char *errbuf)

#include <stdio.h>
#include <pcap.h>

int main()
{
    char errbuf[PCAP_ERRBUF_SIZE];
    pcap_if_t *alldevs;
    pcap_findalldevs(&alldevs, errbuf);
    for (pcap_if_t *pdev = alldevs; pdev; pdev=pdev->next)
    {
        printf("%s %s\n", pdev->name, pdev->description? pdev->description:"");
    }
    pcap_freealldevs(alldevs);
    return 0;
}
python 代码示例
#!/usr/bin/env python3
import libpcap as pcap
import ctypes as ct

alldevs = ct.POINTER(pcap.pcap_if_t)()
errbuf = ct.create_string_buffer(pcap.PCAP_ERRBUF_SIZE + 1)
pcap.findalldevs(ct.byref(alldevs), errbuf)
print(alldevs[0].name)
pcap.freealldevs(alldevs)

pcap_open_live(device, snaplen, promisc, to_ms, errbuf)

作用

打开监听的设备, 返回一个可供操作的捕获句柄。

参数详解
  • device

网络接口设备名称,可通过pcap_lookupdev和pcap_findalldevs获取。

  • snaplen

捕获数据包时的缓冲区大小。

  • promisc

是否使用混杂模式,0为非混杂模式,其他值混杂模式。

  • to_ms

数据从内核态复制到用户态等待的时间。由于从内核态切换到用户态,需要比较大的性能消耗。 越低的值,性能消耗越大。如果是0,则会一直等待到有足够的数据,才能复制到用户态。tcpdump使用了1000。

  • errbuf

C语言字符串缓存区用于缓冲错误信息。

C语言代码示例

pcap_t *pcap_open_live(char *device, int snaplen, int promisc, int to_ms, char *errbuf);

#include <stdio.h>
#include <pcap.h>
#define BUFSIZ 65535

int main()
{
    char errbuf[PCAP_ERRBUF_SIZE];
    pcap_t *handle;
    char device[] = "rl0";
    device = pcap_lookupdev(errBuf);
    if (device)
    {
        handle = pcap_open_live(device, BUFSIZ, 1, 1000, errbuf);
        if (handle == NULL)
        {
            printf("Couldn't open device %s: %s\n", device, errbuf);
            return 2;
        }
    }
    else
    {
        printf("errbuf: %s\n", errBuf);
        return 1;
    }
    return 0;
}
python 代码示例
#!/usr/bin/env python3
import libpcap as pcap
import ctypes as ct

errbuf = ct.create_string_buffer(pcap.PCAP_ERRBUF_SIZE + 1)
device = pcap.lookupdev(errbuf)
pd = pcap.open_live(device, 65535, 1, 1000, errbuf)
if not pd:
    print(f"p  cap.open_live failed: {errbuf.value.decode('utf-8')}")
print(pd)

pcap_setnonblock(p, nonblock, errbuf)

作用

将捕获句柄设置为“非阻塞”或者“阻塞”模式,具体取决于nonblock参数为非零或零。另外pcap_getnonblock(p, errbuf)函数可用于获取当前模式状态。

参数详解
  • p

捕获句柄,可以由pcap_open_live或者pcap_create返回得到。

  • nonblock

设置为“非阻塞”或者“阻塞”模式,零和非零。

  • errbuf

C语言字符串缓存区用于缓冲错误信息。

C语言代码示例

int pcap_setnonblock(pcap_t *p, int nonblock, char *errbuf);

#include <stdio.h>
#include <pcap.h>
#define BUFSIZ 65535

int main()
{

    char errbuf [PCAP_ERRBUF_SIZE];
    pcap_t *handle;
    char device[] = "rl0";
    device = pcap_lookupdev(errBuf);
    if (device)
    {
        handle = pcap_open_live(device, BUFSIZ, 1, 1000, errbuf);
        printf("%d", pcap_getnonblock(handle, errbuf));
        pcap_setnonblock(handle, 1, errbuf);
    }
    return 0;
}
python 代码示例
#!/usr/bin/env python3
import libpcap as pcap
import ctypes as ct

errbuf = ct.create_string_buffer(pcap.PCAP_ERRBUF_SIZE + 1)
device = pcap.lookupdev(errbuf)
pd = pcap.open_live(device, 65535, 1, 1000, errbuf)
if not pd:
    if pcap.setnonblock(pd, 1, errbuf) == -1:
            error(f"pcap.setnonblock failed: {errbuf.value.decode('utf-8')}")

pcap_lookupnet(device, net, mask, errbuf)

作用

获取设备的网络掩码。

参数详解
  • device

网络接口设备名称,可通过pcap_lookupdev和pcap_findalldevs获取。

  • net

缓冲返回的网络码

  • mask

缓冲返回的掩码信息

  • errbuf

C语言字符串缓存区用于缓冲错误信息。

C语言代码示例

int pcap_lookupnet(const char *device, bpf_u_int32 *net, bpf_u_int32 *mask, char *errbuf);

#include <stdio.h>
#include <pcap.h>

int main()
{
    char errbuf[PCAP_ERRBUF_SIZE];
    bpf_u_int32 *net; 
    bpf_u_int32 *mask;
    char device[] = "rl0";
    device = pcap_lookupdev(errBuf);
    if (device)
    {
        pcap_lookupnet(device, net, mask, errbuf);
    }
    else
    {
        printf("errbuf: %s\n", errBuf);
        return 1;
    }
    return 0;
}
python 代码示例
#!/usr/bin/env python3
import libpcap as pcap
import ctypes as ct

errbuf = ct.create_string_buffer(pcap.PCAP_ERRBUF_SIZE + 1)
device = pcap.lookupdev(errbuf)
localnet = pcap.bpf_u_int32()
netmask = pcap.bpf_u_int32()
if pcap.lookupnet(device, ct.byref(localnet), ct.byref(netmask), errbuf) < 0:
    return
print(localnet)
print(netmask)

pcap_compile(p, fp, str, optimize, netmask)

作用

用于将字符串str编译为过滤器程序。

参数详解
  • p

捕获句柄,可以由pcap_open_live或者pcap_create返回得到。

  • fp

过滤条件句柄,过滤条件编译出来的结果。我们不太需要关心其具体的结构内容,只需要把它传给下一步的调用即可。

  • str

过滤条件表达式。

  • optimize

是否优化表达式。

  • netmask

指定网络的掩码。

C语言代码示例

int pcap_compile(pcap_t *p, struct bpf_program *fp, char *str, int optimize, bpf_u_int32 netmask);

#include <stdio.h>
#include <pcap.h>

int main()
{
    char errbuf[PCAP_ERRBUF_SIZE];
    bpf_u_int32 net; 
    bpf_u_int32 mask;
    pcap_t *handle;
    device = pcap_lookupdev(errBuf);
    struct bpf_program filter;
    char filter_app[] = "port 23";
    pcap_lookupnet(device, &net, &mask, errbuf);
    handle = pcap_open_live(device, BUFSIZ, 1, 0, errbuf);
    pcap_compile(handle, &filter, filter_app, 0, net);
    pcap_setfilter(handle, &filter);
    return 0;
}
python 代码示例
#!/usr/bin/env python3
import libpcap as pcap
import ctypes as ct

expression = 'port 23'
errbuf = ct.create_string_buffer(pcap.PCAP_ERRBUF_SIZE + 1)
device = pcap.lookupdev(errbuf)
localnet = pcap.bpf_u_int32()
netmask = pcap.bpf_u_int32()
if pcap.lookupnet(device, ct.byref(localnet), ct.byref(netmask), errbuf) < 0:
    return
fcode = pcap.bpf_program()
cmdbuf = " ".join(expression).encode("utf-8")
if pcap.compile(pd, ct.byref(fcode), cmdbuf, 1, netmask) < 0:
    print(pcap.geterr(pd).decode("utf-8", "ignore"))
if pcap.setfilter(pd, ct.byref(fcode)) < 0:
    print(pcap.geterr(pd).decode("utf-8", "ignore"))

pcap_setfilter(p, fp, str, optimize, netmask)

作用

设置过滤器程序。

参数详解
  • p

捕获句柄,可以由pcap_open_live或者pcap_create返回得到。

  • fp

过滤条件句柄,过滤条件编译出来的结果。

C语言代码示例

int pcap_setfilter(pcap_t *p, struct bpf_program *fp);

#include <stdio.h>
#include <pcap.h>

int main()
{
    char errbuf[PCAP_ERRBUF_SIZE];
    bpf_u_int32 net; 
    bpf_u_int32 mask;
    pcap_t *handle;
    device = pcap_lookupdev(errBuf);
    struct bpf_program filter;
    char filter_app[] = "port 23";
    pcap_lookupnet(device, &net, &mask, errbuf);
    handle = pcap_open_live(device, BUFSIZ, 1, 0, errbuf);
    pcap_compile(handle, &filter, filter_app, 0, net);
    pcap_setfilter(handle, &filter);
    return 0;
}
python 代码示例
#!/usr/bin/env python3
import libpcap as pcap
import ctypes as ct

expression = 'port 23'
errbuf = ct.create_string_buffer(pcap.PCAP_ERRBUF_SIZE + 1)
device = pcap.lookupdev(errbuf)
localnet = pcap.bpf_u_int32()
netmask = pcap.bpf_u_int32()
if pcap.lookupnet(device, ct.byref(localnet), ct.byref(netmask), errbuf) < 0:
    return
fcode = pcap.bpf_program()
cmdbuf = " ".join(expression).encode("utf-8")
if pcap.compile(pd, ct.byref(fcode), cmdbuf, 1, netmask) < 0:
    print(pcap.geterr(pd).decode("utf-8", "ignore"))
if pcap.setfilter(pd, ct.byref(fcode)) < 0:
    print(pcap.geterr(pd).decode("utf-8", "ignore"))

pcap_next(p, h)

作用

一次只抓取一个包。

参数详解
  • p

捕获句柄,可以由pcap_open_live或者pcap_create返回得到。

  • h

缓冲捕获数据包。

C语言代码示例
struct pcap_pkthdr { 
    struct timeval ts; /* time stamp */
    bpf_u_int32 caplen; /* length of portion present */
    bpf_u_int32 len; /* length this packet (off wire) */ 
};
u_char *pcap_next(pcap_t *p, struct pcap_pkthdr *h);

#include <pcap.h>
#include <stdio.h>
int main(int argc, char *argv[])
{
    pcap_t *handle;         /* session handle */
    char *dev;          /* the device to sniff on */
    char errbuf[pcap_errbuf_size];  /* error string */
    struct bpf_program fp;      /* the compiled filter */
    char filter_exp[] = "port 23";  /* the filter expression */
    bpf_u_int32 mask;       /* our netmask */
    bpf_u_int32 net;        /* our ip */
    struct pcap_pkthdr header;  /* the header that pcap gives us */
    const u_char *packet;       /* the actual packet */
    /* define the device */
    dev = pcap_lookupdev(errbuf);
    if (dev == null) {
        fprintf(stderr, "couldn't find default device: %s\n", errbuf);
        return(2);
    }
    /* find the properties for the device */
    if (pcap_lookupnet(dev, &net, &mask, errbuf) == -1) {
        fprintf(stderr, "couldn't get netmask for device %s: %s\n", dev, errbuf);
        net = 0;
        mask = 0;
    }
    /* open the session in promiscuous mode */
    handle = pcap_open_live(dev, bufsiz, 1, 1000, errbuf);
    if (handle == null) {
        fprintf(stderr, "couldn't open device %s: %s\n", dev, errbuf);
        return(2);
    }
    /* compile and apply the filter */
    if (pcap_compile(handle, &fp, filter_exp, 0, net) == -1) {
        fprintf(stderr, "couldn't parse filter %s: %s\n", filter_exp, pcap_geterr(handle));
        return(2);
    }
    if (pcap_setfilter(handle, &fp) == -1) {
        fprintf(stderr, "couldn't install filter %s: %s\n", filter_exp, pcap_geterr(handle));
        return(2);
    }
    /* grab a packet */
    packet = pcap_next(handle, &header);
    /* print its length */
    printf("jacked a packet with length of [%d]\n", header.len);
    /* and close the session */
    pcap_close(handle);
    return(0);
}
python 代码示例
#!/usr/bin/env python3
import libpcap as pcap
import ctypes as ct
...
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,053评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,527评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,779评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,685评论 1 276
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,699评论 5 366
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,609评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,989评论 3 396
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,654评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,890评论 1 298
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,634评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,716评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,394评论 4 319
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,976评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,950评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,191评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,849评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,458评论 2 342