netfiler/iptables 深碍√TFBOYSˉ_ 2022-03-30 17:10 179阅读 0赞 ## 一. 什么是netfilter ## netfilter is a set of hooks inside the Linux kernel that allows kernel modules to register callback functions with the network stack. A registered callback function is then called back for every packet that traverses the respective hook within the network stack. iptables is a generic table structure for the definition of rulesets. Each rule within an IP table consists of a number of classifiers (iptables matches) and one connected action (iptables target). netfilter, ip\_tables, connection tracking (ip\_conntrack, nf\_conntrack) and the NAT subsystem together build the major parts of the packet filtering framework. Software inside this framework enables packet filtering, network address \[and port\] translation (NA\[P\]T) and other packet mangling. linux防火墙通常包含两部分,分别为iptables和netfilter。iptables是linux管理防火墙规则的命令行工具,处于用户空间。netfilter执行报文过滤,处于linux内核空间。有时也将iptables统称linux防火墙。 Netfilter提供了过滤网络数据报的底层机制。Netfilter提供了基于其上的一整套工具集合,即其各个子系统,包括:连接跟踪、NAT、xtables、iptables/iptables6、nftables、arptables。 在netfilter的官网www.netfilter.org上,可以看到netfilter的一个子项目patch-o-matic,其中收录了大量的各种定制kernel modules,这些modules给我们展示了很多使用例程。 netfilter的优势不仅包含防火墙的实现,还包括各种报文的处理工作(如报文的加密、统计等)。用户可以方便地利用netfilter提供的接口实现内核层的报文处理。 ## 二. netfilter框架 ## netfilter在linux内核中的IPv4、IPv6和DECnet等网络协议栈中都有相应的实现。以常用的IPv4协议栈上netfilter的实现为例说明。 IPv4协议栈为了实现对netfilter架构的支持,在IP包的IPv4协议栈上的传递过程之中,选择了5个检查点。在这5个检查点上,各引入了一行对NF\_HOOK()宏函数的一个相应的调用: PREROUTING、LOCAL-IN、FORWARD、LOCAL-OUT和POSTROUTING。 **利用netfilter中的5个参考点,查阅用户注册的回调函数,根据用户定义的回调函数来监视进出的网络数据包,是netfilter的基本实现框架。** netfilter核心代码位于linux/net/netfilter目录下。 ### 1. 如何切入协议栈 ### 在IPv4协议栈中,netfilter在IP数据包的路线上选取了5个挂节点(HOOK)。这5个点,在合适的位置对NF\_HOOK()宏函数进行了调用。 ![791475-20180616230506547-2010441767.png][] ![791475-20180616232048331-406410486.png][] static inline int NF_HOOK(uint8_t pf, unsigned int hook, struct sk_buff *skb, struct net_device *in, struct net_device *out, int (*okfn)(struct sk_buff *)) { return NF_HOOK_THRESH(pf, hook, skb, in, out, okfn, INT_MIN); } pf:协议族,如PF\_INET、PF\_INET6、PF\_DECnet等 hook:HOOK点,如:PRE\_ROUTING、LOCAL\_IN、FORWARD、LOCAL\_OUT、POST\_ROUTING skb:sk\_buff indev:数据包入站的设备(某些情况下为空值) outdev:数据包出站的设备(某些情况下为空值) okfn: 函数指针,指向协议栈下一步的处理函数,当Netfilter该HOOK点流程结束时调用该函数。 示例: int ip_forward(struct sk_buff *skb) { /* protocol stack processing */ return NF_HOOK(NFPROTO_IPV4, NF_INET_FORWARD, skb, skb->dev, rt->dst.dev, ip_forward_finish); } ### 2. 回调函数 ### netfilter定义了一个全局变量来存储用户的回调函数: struct list_head nf_hooks[NFPROTO_NUMPROTO][NF_MAX_HOOKS] __read_mostly; EXPORT_SYMBOL(nf_hooks); NFPROTO\_NUMPROTO是协议类型,可以是TCP、UDP或IP协议。NF\_MAX\_HOOKS是挂接的钩子的最大数量。 ![791475-20180616231613626-444124321.png][] 用户可以挂接回调函数到netfilter架构上,函数为nf\_register\_hook()。 int nf_register_hook(struct nf_hook_ops *reg) { struct nf_hook_ops *elem; int err; err = mutex_lock_interruptible(&nf_hook_mutex); if (err < 0) return err; list_for_each_entry(elem, &nf_hooks[reg->pf][reg->hooknum], list) { if (reg->priority < elem->priority) break; } list_add_rcu(®->list, elem->list.prev); mutex_unlock(&nf_hook_mutex); #if defined(CONFIG_JUMP_LABEL) static_key_slow_inc(&nf_hooks_needed[reg->pf][reg->hooknum]); #endif return 0; } EXPORT_SYMBOL(nf_register_hook); 可以看出注册函数根据优先级,将用户的回调函数放到全局变量nf\_hooks中。 回调函数用结构体struct nf\_hook\_ops存储: struct nf_hook_ops; typedef unsigned int nf_hookfn(const struct nf_hook_ops *ops, struct sk_buff *skb, const struct net_device *in, const struct net_device *out, int (*okfn)(struct sk_buff *)); struct nf_hook_ops { struct list_head list; /* User fills in from here down. */ nf_hookfn *hook; struct module *owner; void *priv; u_int8_t pf; unsigned int hooknum; /* Hooks are ordered in ascending priority. */ int priority; }; 回调函数的返回值: NF\_ACCEPT 继续正常传输数据报 NF\_DROP 丢弃该数据报,不再传输 NF\_STOLEN 模块接管该数据报,告诉Netfilter“忘掉”该数据报 NF\_QUEUE 对该数据报进行排队,等待用户空间的进程处理 NF\_REPEAT 再次调用该回调函数 NF\_STOP 终止Netfilter的后续处理,将数据报交还给协议栈 实现注册回调函数步骤: 1. 实现自己的HOOK函数; 2. 初始化一个struct nf\_hook\_ops的对象; 3.调用nf\_register\_hook注册HOOK函数,注销时调用nf\_unregister\_hook;也可以调用nf\_register\_hooks和nf\_unregister\_hooks一次注册注销多个HOOK函数; ## 三. iptables ## Iptables是基于netfilter实现的有状态防火墙,Iptables包括用户层工具和内核中的HOOK函数集合。Iptables rule的要素: Chain:PREROUTING、INPUT、OUTPUT、FORWARD、POSTROUTING,对应Netfilter的五个HOOK点 Tables:filter,nat,mangle,raw Match:各种匹配条件,包括标准匹配和扩展匹配 Target:匹配后的目标Action,一条rule可以有多个match,但只能有一个target ![791475-20180616231629719-1158074904.png][] 参考: 1. [http://www.netfilter.org/][http_www.netfilter.org] 2. linux网络编程 宋敬彬 [791475-20180616230506547-2010441767.png]: /images/20220330/c62bd576e53b4fa9b400f624a14f10e0.png [791475-20180616232048331-406410486.png]: /images/20220330/1f48985c762d46d58e4d357792c93e9d.png [791475-20180616231613626-444124321.png]: /images/20220330/0455794e2c8447b999a5d4d419fb4c40.png [791475-20180616231629719-1158074904.png]: /images/20220330/93217f63cbef43f0861481986121f038.png [http_www.netfilter.org]: http://www.netfilter.org/
还没有评论,来说两句吧...