免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1937 | 回复: 1
打印 上一主题 下一主题

基于netfilter的内核模块编程问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-03-09 21:07 |只看该作者 |倒序浏览
基于netfilter实现过滤TCP端口的内核模块编程 在加载模块后 电脑出现死机 强制关机也无法相应 代码如下:

#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/netfilter.h>
#include <linux/netfilter_ipv4.h>
#include <linux/ip.h>
#include <linux/skbuff.h>
#include <linux/tcp.h>
#include <linux/if.h>
#include <linux/in.h>

#define PERMIT_PORT 80

static struct nf_hook_ops nfho;

//static unsigned char *drop_ip = "\x7f\x00\x00\x01";
//static unsigned char *drop_ip = "\xCA\x6C\x16\x5";

//unsigned char* deny_port = "\x00\x19";

unsigned int hook_fund(unsigned int hooknum,struct sk_buff **skb,const struct net_device *in,const struct net_device *out,int(*okfn)(struct sk_buff*))
{
        /*struct sk_buff *sb = *skb;
               struct iphdr     *iph ;

               iph = ip_hdr(sb);
               pr_info("Packet from %d.%d.%d.%d\n",NIPQUAD(iph->saddr));
               if ( iph->saddr == *(__be32 *) drop_ip)
               {
                pr_info("Dropped packet from ... %d.%d.%d.%d\n",*drop_ip, *(drop_ip+1), *(drop_ip+2), *(drop_ip+3) );
                     return NF_DROP;
       }else {
                    return NF_ACCEPT;
       }*/
       
        struct tcphdr *tcph;
       
        struct sk_buff *sb = *skb;
       
        struct iphdr *iph;

        iph = ip_hdr(sb);

        if(iph->protocol == IPPROTO_TCP)
        {
//                tcph = skb_header_pointer(sb,sb->nh.iph->ihl*4,sizeof(*tcph),tcph)
//                tcph = sb->h.th;
                tcph = tcp_hdr(sb);
                if(tcph->dest == 80)
                {
                        printk("\n web service refused\n");
                        return NF_DROP;
                }
        }
        return NF_ACCEPT;

        /*struct sk_buff *sb = *skb;
        struct tcphdr *thead;

        if(!skb)
        {
                return NF_ACCEPT;       
        }
        if(!(skb->nh.iph))
        {
                return NF_ACCEPT;
        }
        if(skb->nh.iph->protocol != IPPOTO_TCP)
        {
                return NF_ACCEPT;
        }
        thead = (struct tcphdr *)(skb->data+(skb->nh.iph->ihl*4));

        if((thead->dest) == *(unsigned short *)deny_port)
        {
                return NF_DROP;
        }
        return NF_ACCEPT;*/
       
}
int init(void)
{
  nfho.hook=hook_fund;
  nfho.hooknum = 1;
  nfho.pf=PF_INET;
  nfho.priority = NF_IP_PRI_FIRST - 1;
  nf_register_hook(&nfho);
  return 0;
}

void exit(void)
{
    nf_unregister_hook(&nfho);
}

module_init(init);
module_exit(exit);

MODULE_LICENSE("GPL");

在网络区发帖子没人回我 只好到C++区发帖子询问 网版主手下留情

[ 本帖最后由 wxj120bw 于 2009-3-9 21:08 编辑 ]
where23 该用户已被删除
2 [报告]
发表于 2009-04-02 21:01 |只看该作者
提示: 作者被禁止或删除 内容自动屏蔽
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP