2 * Stateless NAT actions
4 * Copyright (c) 2007 Herbert Xu <herbert@gondor.apana.org.au>
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the Free
8 * Software Foundation; either version 2 of the License, or (at your option)
12 #include <linux/errno.h>
13 #include <linux/init.h>
14 #include <linux/kernel.h>
15 #include <linux/module.h>
16 #include <linux/netfilter.h>
17 #include <linux/rtnetlink.h>
18 #include <linux/skbuff.h>
19 #include <linux/slab.h>
20 #include <linux/spinlock.h>
21 #include <linux/string.h>
22 #include <linux/tc_act/tc_nat.h>
23 #include <net/act_api.h>
26 #include <net/netlink.h>
27 #include <net/tc_act/tc_nat.h>
32 #define NAT_TAB_MASK 15
33 static struct tcf_common
*tcf_nat_ht
[NAT_TAB_MASK
+ 1];
34 static u32 nat_idx_gen
;
35 static DEFINE_RWLOCK(nat_lock
);
37 static struct tcf_hashinfo nat_hash_info
= {
39 .hmask
= NAT_TAB_MASK
,
43 static int tcf_nat_init(struct rtattr
*rta
, struct rtattr
*est
,
44 struct tc_action
*a
, int ovr
, int bind
)
46 struct rtattr
*tb
[TCA_NAT_MAX
];
50 struct tcf_common
*pc
;
52 if (rta
== NULL
|| rtattr_parse_nested(tb
, TCA_NAT_MAX
, rta
) < 0)
55 if (tb
[TCA_NAT_PARMS
- 1] == NULL
||
56 RTA_PAYLOAD(tb
[TCA_NAT_PARMS
- 1]) < sizeof(*parm
))
58 parm
= RTA_DATA(tb
[TCA_NAT_PARMS
- 1]);
60 pc
= tcf_hash_check(parm
->index
, a
, bind
, &nat_hash_info
);
62 pc
= tcf_hash_create(parm
->index
, est
, a
, sizeof(*p
), bind
,
63 &nat_idx_gen
, &nat_hash_info
);
71 tcf_hash_release(pc
, bind
, &nat_hash_info
);
76 spin_lock_bh(&p
->tcf_lock
);
77 p
->old_addr
= parm
->old_addr
;
78 p
->new_addr
= parm
->new_addr
;
80 p
->flags
= parm
->flags
;
82 p
->tcf_action
= parm
->action
;
83 spin_unlock_bh(&p
->tcf_lock
);
85 if (ret
== ACT_P_CREATED
)
86 tcf_hash_insert(pc
, &nat_hash_info
);
91 static int tcf_nat_cleanup(struct tc_action
*a
, int bind
)
93 struct tcf_nat
*p
= a
->priv
;
95 return tcf_hash_release(&p
->common
, bind
, &nat_hash_info
);
98 static int tcf_nat(struct sk_buff
*skb
, struct tc_action
*a
,
99 struct tcf_result
*res
)
101 struct tcf_nat
*p
= a
->priv
;
111 spin_lock(&p
->tcf_lock
);
113 p
->tcf_tm
.lastuse
= jiffies
;
114 old_addr
= p
->old_addr
;
115 new_addr
= p
->new_addr
;
117 egress
= p
->flags
& TCA_NAT_FLAG_EGRESS
;
118 action
= p
->tcf_action
;
120 p
->tcf_bstats
.bytes
+= skb
->len
;
121 p
->tcf_bstats
.packets
++;
123 spin_unlock(&p
->tcf_lock
);
125 if (unlikely(action
== TC_ACT_SHOT
))
128 if (!pskb_may_pull(skb
, sizeof(*iph
)))
138 if (!((old_addr
^ addr
) & mask
)) {
139 if (skb_cloned(skb
) &&
140 !skb_clone_writable(skb
, sizeof(*iph
)) &&
141 pskb_expand_head(skb
, 0, 0, GFP_ATOMIC
))
145 new_addr
|= addr
& ~mask
;
147 /* Rewrite IP header */
150 iph
->saddr
= new_addr
;
152 iph
->daddr
= new_addr
;
154 csum_replace4(&iph
->check
, addr
, new_addr
);
159 /* It would be nice to share code with stateful NAT. */
160 switch (iph
->frag_off
& htons(IP_OFFSET
) ? 0 : iph
->protocol
) {
165 if (!pskb_may_pull(skb
, ihl
+ sizeof(*tcph
)) ||
167 !skb_clone_writable(skb
, ihl
+ sizeof(*tcph
)) &&
168 pskb_expand_head(skb
, 0, 0, GFP_ATOMIC
)))
171 tcph
= (void *)(skb_network_header(skb
) + ihl
);
172 inet_proto_csum_replace4(&tcph
->check
, skb
, addr
, new_addr
, 1);
179 if (!pskb_may_pull(skb
, ihl
+ sizeof(*udph
)) ||
181 !skb_clone_writable(skb
, ihl
+ sizeof(*udph
)) &&
182 pskb_expand_head(skb
, 0, 0, GFP_ATOMIC
)))
185 udph
= (void *)(skb_network_header(skb
) + ihl
);
186 if (udph
->check
|| skb
->ip_summed
== CHECKSUM_PARTIAL
) {
187 inet_proto_csum_replace4(&udph
->check
, skb
, addr
,
190 udph
->check
= CSUM_MANGLED_0
;
196 struct icmphdr
*icmph
;
198 if (!pskb_may_pull(skb
, ihl
+ sizeof(*icmph
) + sizeof(*iph
)))
201 icmph
= (void *)(skb_network_header(skb
) + ihl
);
203 if ((icmph
->type
!= ICMP_DEST_UNREACH
) &&
204 (icmph
->type
!= ICMP_TIME_EXCEEDED
) &&
205 (icmph
->type
!= ICMP_PARAMETERPROB
))
208 iph
= (void *)(icmph
+ 1);
214 if ((old_addr
^ addr
) & mask
)
217 if (skb_cloned(skb
) &&
218 !skb_clone_writable(skb
,
219 ihl
+ sizeof(*icmph
) + sizeof(*iph
)) &&
220 pskb_expand_head(skb
, 0, 0, GFP_ATOMIC
))
223 icmph
= (void *)(skb_network_header(skb
) + ihl
);
224 iph
= (void *)(icmph
+ 1);
227 new_addr
|= addr
& ~mask
;
229 /* XXX Fix up the inner checksums. */
231 iph
->daddr
= new_addr
;
233 iph
->saddr
= new_addr
;
235 inet_proto_csum_replace4(&icmph
->checksum
, skb
, addr
, new_addr
,
246 spin_lock(&p
->tcf_lock
);
247 p
->tcf_qstats
.drops
++;
248 spin_unlock(&p
->tcf_lock
);
252 static int tcf_nat_dump(struct sk_buff
*skb
, struct tc_action
*a
,
255 unsigned char *b
= skb_tail_pointer(skb
);
256 struct tcf_nat
*p
= a
->priv
;
263 /* netlink spinlocks held above us - must use ATOMIC */
264 opt
= kzalloc(s
, GFP_ATOMIC
);
268 opt
->old_addr
= p
->old_addr
;
269 opt
->new_addr
= p
->new_addr
;
271 opt
->flags
= p
->flags
;
273 opt
->index
= p
->tcf_index
;
274 opt
->action
= p
->tcf_action
;
275 opt
->refcnt
= p
->tcf_refcnt
- ref
;
276 opt
->bindcnt
= p
->tcf_bindcnt
- bind
;
278 RTA_PUT(skb
, TCA_NAT_PARMS
, s
, opt
);
279 t
.install
= jiffies_to_clock_t(jiffies
- p
->tcf_tm
.install
);
280 t
.lastuse
= jiffies_to_clock_t(jiffies
- p
->tcf_tm
.lastuse
);
281 t
.expires
= jiffies_to_clock_t(p
->tcf_tm
.expires
);
282 RTA_PUT(skb
, TCA_NAT_TM
, sizeof(t
), &t
);
294 static struct tc_action_ops act_nat_ops
= {
296 .hinfo
= &nat_hash_info
,
298 .capab
= TCA_CAP_NONE
,
299 .owner
= THIS_MODULE
,
301 .dump
= tcf_nat_dump
,
302 .cleanup
= tcf_nat_cleanup
,
303 .lookup
= tcf_hash_search
,
304 .init
= tcf_nat_init
,
305 .walk
= tcf_generic_walker
308 MODULE_DESCRIPTION("Stateless NAT actions");
309 MODULE_LICENSE("GPL");
311 static int __init
nat_init_module(void)
313 return tcf_register_action(&act_nat_ops
);
316 static void __exit
nat_cleanup_module(void)
318 tcf_unregister_action(&act_nat_ops
);
321 module_init(nat_init_module
);
322 module_exit(nat_cleanup_module
);