gpt4 book ai didi

c - pcap_compile() 表达式

转载 作者:太空宇宙 更新时间:2023-11-04 02:12:55 27 4
gpt4 key购买 nike

我在“wlan”接口(interface)上使用 libpcap 库编写一个 pcaket 嗅探器程序。我想过滤捕获的数据包,以便只处理 Beacon 帧。因此,我为此编写了以下代码:

const char *str = "wlan subtype beacon";
printf("debug stmt1\n");

struct bpf_program *fp;
printf("debug stmt2\n");

if((pcap_compile(pkt_handle, fp, str, 1, PCAP_NETMASK_UNKNOWN)==-1)
{
pcap_perror(pkt_handle, "Compile");
}
printf("debug stmt3\n"):

但是在编译时,我在 pcap_compile() 语句中遇到了段错误:

debug stmt1
debug stmt2
Segmentation fault

那么,可能是什么问题?

操作系统:Ubuntu 10.10

更新:

我在 pcap_activate() 语句之前移动了 pcap_compile() 语句。该程序运行良好,仅捕获 Beacon 帧。但是,pcap_compile() 似乎仍在返回 -1,我在输出中得到以下语句:

Compile: 802.11 link-layer types supported only on 802.11

可能是什么问题?我正在使用 Netgear USB 无线网卡。
更新2:

根据 nos 的建议,我做了以下更改:

struct bpf_program *fp = (struct bpf_program *)malloc(sizeof(struct bpf_program));

但是,我仍然收到相同的消息:

Compile: 802.11 link-layer types supported only on 802.11

知道这条消息是什么意思吗?

更新 3:
我还包括以下代码以确保我的 pcap 句柄指向正确的接口(interface):

int *dlt_buf;
int n;
n = pcap_list_datalinks(pkt_handle, &dlt_buf);
printf("n = %d\n",n);
if(n == -1)
{
pcap_perror(pkt_handle, "Datalink_list");
}
else
{
printf("The list of datalinks supported are\n");
int i;
for(i=0; i<n; i++)
printf("%d\n",dlt_buf[i]);
const char *str1 = pcap_datalink_val_to_name(dlt_buf[0]);
const char *str2 = pcap_datalink_val_to_description(dlt_buf[0]);
printf("str1 = %s\n",str1);
printf("str2 = %s\n",str2);
pcap_free_datalinks(dlt_buf);
}


这是我得到的输出:

n = 1
The list of datalinks supported are
127
str1 = IEEE802_11_RADIO
str2 = 802.11 plus radiotap header


因此,我的 pcap 句柄指向正确的接口(interface)。但我仍然收到该错误消息。

最佳答案

如前所述,崩溃是因为 fp 没有指向某物。如果一个函数接受类型为“{something} *”的参数,这并不意味着您需要,甚至应该,将类型为“{something} *”的变量传递给它;您应该向它传递一个该类型的指针

在这种情况下,例如:

struct bpf_program *fp;
if((pcap_compile(pkt_handle, fp, str, 1, PCAP_NETMASK_UNKNOWN)==-1)

{

是错误的,并且

struct bpf_program pgm;
if((pcap_compile(pkt_handle, &pgm, str, 1, PCAP_NETMASK_UNKNOWN)==-1)

{

是正确的。

至于在pcap_activate() 之前调用pcap_compile(),这是不正确的。您必须在调用 pcap_activate() 之后 调用它,否则 pcap_t 没有链路层 header 类型,并且 pcap_compile () 不知道它应该为其生成代码的链路层报头的类型。 (我检查了 libpcap 的修复程序,以禁止在尚未激活的 pcap_t 上调用 pcap_compile()。)

关于c - pcap_compile() 表达式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11448369/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com