当前位置: 技术问答>linux和unix
2.6.22下Netfilter的网络监听程序
来源: 互联网 发布时间:2016-03-15
本文导语: 在2.6.22中skbuff发生了变化,使得我以前的防火墙程序在新内核中无法使用了,主要是可以当作一个网络数据监视,当然还是不完善的。今天搞了一下,终于又可以了,下面是程序: /*This program is wrote by helight--Zhenwen Xu *ver...
在2.6.22中skbuff发生了变化,使得我以前的防火墙程序在新内核中无法使用了,主要是可以当作一个网络数据监视,当然还是不完善的。今天搞了一下,终于又可以了,下面是程序:
/*This program is wrote by helight--Zhenwen Xu
*version 0.1
*2008-04-13
*/
#define DRIVER_AUTHOR "Net4-Helight"
#define DRIVER_DESC "A sample test"
#include
#include
#include
#include
#include
#include
#include
MODULE_LICENSE("GPL");
/*regist the hooks*/
static struct nf_hook_ops nfho;
unsigned int hook_func(unsigned int hookunm,struct sk_buff **skb,const struct net_device *in,const struct net_device *out,int (*okfn)(struct sk_buff *))
{
int i=0;
struct tcphdr *tcph;
struct iphdr *iph;
struct sk_buff *pskb=*skb;
printk("n the pskb->protocol :%d",pskb->protocol);
printk("MAC--mark:%dn",(unsigned int)pskb->pkt_type);
iph=(struct iphdr*)pskb->network_header;
printk("IPHDR:%dn",(unsigned int)iph->protocol);
printk("IP: [%u.%u.%u.%u]-->[%u.%u.%u.%u]",NIPQUAD(iph->saddr),NIPQUAD(iph->daddr));
if(iph->protocol==6)
{
tcph=(struct tcphdr*)pskb->transport_header;
printk("TCP: [%u]-->[%u]",ntohs(tcph->source),ntohs(tcph->dest));
printk("n");
}
return NF_ACCEPT;
}
/*init the module*/
static int init_sniffer(void)
{
nfho.hook=hook_func;
nfho.hooknum=NF_IP_PRE_ROUTING;
nfho.pf=PF_INET;
nfho.priority=NF_IP_PRI_FIRST;
nf_register_hook(&nfho);
printk("This is helight's sniffern");
return 0;
}
/*Clear the module*/
void exit_sniffer(void)
{
printk("This is helight's sniffern");
nf_unregister_hook(&nfho);
}
module_init(init_sniffer);
module_exit(exit_sniffer);
|
请问在2.6.25中是不是又变了?
|
学习了
|
|
没遇到过这种情况.