Merge branch 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / net / netfilter / nf_nat_amanda.c
CommitLineData
16958900
PM
1/* Amanda extension for TCP NAT alteration.
2 * (C) 2002 by Brian J. Murrell <netfilter@interlinx.bc.ca>
3 * based on a copy of HW's ip_nat_irc.c as well as other modules
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version
8 * 2 of the License, or (at your option) any later version.
9 */
10
11#include <linux/kernel.h>
12#include <linux/module.h>
13#include <linux/skbuff.h>
14#include <linux/udp.h>
15
16958900
PM
16#include <net/netfilter/nf_conntrack_helper.h>
17#include <net/netfilter/nf_conntrack_expect.h>
1afc5679 18#include <net/netfilter/nf_nat_helper.h>
16958900
PM
19#include <linux/netfilter/nf_conntrack_amanda.h>
20
21MODULE_AUTHOR("Brian J. Murrell <netfilter@interlinx.bc.ca>");
22MODULE_DESCRIPTION("Amanda NAT helper");
23MODULE_LICENSE("GPL");
24MODULE_ALIAS("ip_nat_amanda");
25
3db05fea 26static unsigned int help(struct sk_buff *skb,
16958900 27 enum ip_conntrack_info ctinfo,
051966c0 28 unsigned int protoff,
16958900
PM
29 unsigned int matchoff,
30 unsigned int matchlen,
31 struct nf_conntrack_expect *exp)
32{
33 char buffer[sizeof("65535")];
34 u_int16_t port;
35 unsigned int ret;
36
37 /* Connection comes from client. */
38 exp->saved_proto.tcp.port = exp->tuple.dst.u.tcp.port;
39 exp->dir = IP_CT_DIR_ORIGINAL;
40
41 /* When you see the packet, we need to NAT it the same as the
42 * this one (ie. same IP: it will be TCP and master is UDP). */
43 exp->expectfn = nf_nat_follow_master;
44
45 /* Try to get same port: if not, try to change it. */
46 for (port = ntohs(exp->saved_proto.tcp.port); port != 0; port++) {
ab0cba25 47 int res;
5b92b61f 48
16958900 49 exp->tuple.dst.u.tcp.port = htons(port);
ab0cba25
ED
50 res = nf_ct_expect_related(exp);
51 if (res == 0)
5b92b61f 52 break;
ab0cba25 53 else if (res != -EBUSY) {
5b92b61f 54 port = 0;
16958900 55 break;
5b92b61f 56 }
16958900
PM
57 }
58
b20ab9cc
PNA
59 if (port == 0) {
60 nf_ct_helper_log(skb, exp->master, "all ports in use");
16958900 61 return NF_DROP;
b20ab9cc 62 }
16958900
PM
63
64 sprintf(buffer, "%u", port);
3db05fea 65 ret = nf_nat_mangle_udp_packet(skb, exp->master, ctinfo,
051966c0 66 protoff, matchoff, matchlen,
16958900 67 buffer, strlen(buffer));
b20ab9cc
PNA
68 if (ret != NF_ACCEPT) {
69 nf_ct_helper_log(skb, exp->master, "cannot mangle packet");
6823645d 70 nf_ct_unexpect_related(exp);
b20ab9cc 71 }
16958900
PM
72 return ret;
73}
74
75static void __exit nf_nat_amanda_fini(void)
76{
a9b3cd7f 77 RCU_INIT_POINTER(nf_nat_amanda_hook, NULL);
16958900
PM
78 synchronize_rcu();
79}
80
81static int __init nf_nat_amanda_init(void)
82{
d1332e0a 83 BUG_ON(nf_nat_amanda_hook != NULL);
a9b3cd7f 84 RCU_INIT_POINTER(nf_nat_amanda_hook, help);
16958900
PM
85 return 0;
86}
87
88module_init(nf_nat_amanda_init);
89module_exit(nf_nat_amanda_fini);