netfilter: nf_conntrack: add direction support for zones
[deliverable/linux.git] / net / ipv4 / netfilter / nf_defrag_ipv4.c
CommitLineData
73e4022f
KK
1/* (C) 1999-2001 Paul `Rusty' Russell
2 * (C) 2002-2004 Netfilter Core Team <coreteam@netfilter.org>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 */
8
9#include <linux/types.h>
10#include <linux/ip.h>
11#include <linux/netfilter.h>
12#include <linux/module.h>
13#include <linux/skbuff.h>
14#include <net/route.h>
15#include <net/ip.h>
16
8fa9ff68 17#include <linux/netfilter_bridge.h>
73e4022f
KK
18#include <linux/netfilter_ipv4.h>
19#include <net/netfilter/ipv4/nf_defrag_ipv4.h>
24de3d37 20#if IS_ENABLED(CONFIG_NF_CONNTRACK)
76780373 21#include <net/netfilter/nf_conntrack.h>
37ee3d5b
PM
22#endif
23#include <net/netfilter/nf_conntrack_zones.h>
73e4022f 24
73e4022f
KK
25static int nf_ct_ipv4_gather_frags(struct sk_buff *skb, u_int32_t user)
26{
27 int err;
28
29 skb_orphan(skb);
30
31 local_bh_disable();
32 err = ip_defrag(skb, user);
33 local_bh_enable();
34
895162b1 35 if (!err) {
73e4022f 36 ip_send_check(ip_hdr(skb));
60ff7467 37 skb->ignore_df = 1;
895162b1 38 }
73e4022f
KK
39
40 return err;
41}
42
8fa9ff68
PM
43static enum ip_defrag_users nf_ct_defrag_user(unsigned int hooknum,
44 struct sk_buff *skb)
45{
308ac914 46 u16 zone_id = NF_CT_DEFAULT_ZONE_ID;
24de3d37 47#if IS_ENABLED(CONFIG_NF_CONNTRACK)
deedb590
DB
48 if (skb->nfct) {
49 enum ip_conntrack_info ctinfo;
50 const struct nf_conn *ct = nf_ct_get(skb, &ctinfo);
51
52 zone_id = nf_ct_zone_id(nf_ct_zone(ct), CTINFO2DIR(ctinfo));
53 }
37ee3d5b 54#endif
72b1e5e4 55 if (nf_bridge_in_prerouting(skb))
308ac914 56 return IP_DEFRAG_CONNTRACK_BRIDGE_IN + zone_id;
72b1e5e4 57
8fa9ff68 58 if (hooknum == NF_INET_PRE_ROUTING)
308ac914 59 return IP_DEFRAG_CONNTRACK_IN + zone_id;
8fa9ff68 60 else
308ac914 61 return IP_DEFRAG_CONNTRACK_OUT + zone_id;
8fa9ff68
PM
62}
63
795aa6ef 64static unsigned int ipv4_conntrack_defrag(const struct nf_hook_ops *ops,
73e4022f 65 struct sk_buff *skb,
238e54c9 66 const struct nf_hook_state *state)
73e4022f 67{
cbdd769a 68 struct sock *sk = skb->sk;
7b2ff18e
JO
69 struct inet_sock *inet = inet_sk(skb->sk);
70
cbdd769a
JO
71 if (sk && (sk->sk_family == PF_INET) &&
72 inet->nodefrag)
7b2ff18e
JO
73 return NF_ACCEPT;
74
24de3d37
DJ
75#if IS_ENABLED(CONFIG_NF_CONNTRACK)
76#if !IS_ENABLED(CONFIG_NF_NAT)
73e4022f
KK
77 /* Previously seen (loopback)? Ignore. Do this before
78 fragment check. */
b2a15a60 79 if (skb->nfct && !nf_ct_is_template((struct nf_conn *)skb->nfct))
73e4022f
KK
80 return NF_ACCEPT;
81#endif
38f7ac3e 82#endif
73e4022f 83 /* Gather fragments. */
56f8a75c 84 if (ip_is_fragment(ip_hdr(skb))) {
795aa6ef
PM
85 enum ip_defrag_users user =
86 nf_ct_defrag_user(ops->hooknum, skb);
87
8fa9ff68 88 if (nf_ct_ipv4_gather_frags(skb, user))
73e4022f
KK
89 return NF_STOLEN;
90 }
91 return NF_ACCEPT;
92}
93
94static struct nf_hook_ops ipv4_defrag_ops[] = {
95 {
96 .hook = ipv4_conntrack_defrag,
97 .owner = THIS_MODULE,
89a48e35 98 .pf = NFPROTO_IPV4,
73e4022f
KK
99 .hooknum = NF_INET_PRE_ROUTING,
100 .priority = NF_IP_PRI_CONNTRACK_DEFRAG,
101 },
102 {
103 .hook = ipv4_conntrack_defrag,
104 .owner = THIS_MODULE,
89a48e35 105 .pf = NFPROTO_IPV4,
73e4022f
KK
106 .hooknum = NF_INET_LOCAL_OUT,
107 .priority = NF_IP_PRI_CONNTRACK_DEFRAG,
108 },
109};
110
111static int __init nf_defrag_init(void)
112{
113 return nf_register_hooks(ipv4_defrag_ops, ARRAY_SIZE(ipv4_defrag_ops));
114}
115
116static void __exit nf_defrag_fini(void)
117{
118 nf_unregister_hooks(ipv4_defrag_ops, ARRAY_SIZE(ipv4_defrag_ops));
119}
120
121void nf_defrag_ipv4_enable(void)
122{
123}
124EXPORT_SYMBOL_GPL(nf_defrag_ipv4_enable);
125
126module_init(nf_defrag_init);
127module_exit(nf_defrag_fini);
128
129MODULE_LICENSE("GPL");
This page took 0.5665 seconds and 5 git commands to generate.