blob: a1d5d58a58bf904b25115fe8dff4397e4d541a29 [file] [log] [blame]
Jozsef Kadlecsik55a73322006-12-02 22:07:44 -08001/* FTP extension for TCP NAT alteration. */
2
3/* (C) 1999-2001 Paul `Rusty' Russell
4 * (C) 2002-2006 Netfilter Core Team <coreteam@netfilter.org>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10
11#include <linux/module.h>
12#include <linux/moduleparam.h>
13#include <linux/ip.h>
14#include <linux/tcp.h>
15#include <linux/netfilter_ipv4.h>
16#include <net/netfilter/nf_nat.h>
17#include <net/netfilter/nf_nat_helper.h>
18#include <net/netfilter/nf_nat_rule.h>
19#include <net/netfilter/nf_conntrack_helper.h>
20#include <net/netfilter/nf_conntrack_expect.h>
21#include <linux/netfilter/nf_conntrack_ftp.h>
22
23MODULE_LICENSE("GPL");
24MODULE_AUTHOR("Rusty Russell <rusty@rustcorp.com.au>");
25MODULE_DESCRIPTION("ftp NAT helper");
26MODULE_ALIAS("ip_nat_ftp");
27
Jozsef Kadlecsik55a73322006-12-02 22:07:44 -080028/* FIXME: Time out? --RR */
29
30static int
Herbert Xu3db05fea2007-10-15 00:53:15 -070031mangle_rfc959_packet(struct sk_buff *skb,
Jozsef Kadlecsik55a73322006-12-02 22:07:44 -080032 __be32 newip,
33 u_int16_t port,
34 unsigned int matchoff,
35 unsigned int matchlen,
36 struct nf_conn *ct,
Patrick McHardy25b86e02007-05-24 16:41:50 -070037 enum ip_conntrack_info ctinfo)
Jozsef Kadlecsik55a73322006-12-02 22:07:44 -080038{
39 char buffer[sizeof("nnn,nnn,nnn,nnn,nnn,nnn")];
40
41 sprintf(buffer, "%u,%u,%u,%u,%u,%u",
42 NIPQUAD(newip), port>>8, port&0xFF);
43
Patrick McHardy0d537782007-07-07 22:39:38 -070044 pr_debug("calling nf_nat_mangle_tcp_packet\n");
Jozsef Kadlecsik55a73322006-12-02 22:07:44 -080045
Herbert Xu3db05fea2007-10-15 00:53:15 -070046 return nf_nat_mangle_tcp_packet(skb, ct, ctinfo, matchoff,
Jozsef Kadlecsik55a73322006-12-02 22:07:44 -080047 matchlen, buffer, strlen(buffer));
48}
49
50/* |1|132.235.1.2|6275| */
51static int
Herbert Xu3db05fea2007-10-15 00:53:15 -070052mangle_eprt_packet(struct sk_buff *skb,
Jozsef Kadlecsik55a73322006-12-02 22:07:44 -080053 __be32 newip,
54 u_int16_t port,
55 unsigned int matchoff,
56 unsigned int matchlen,
57 struct nf_conn *ct,
Patrick McHardy25b86e02007-05-24 16:41:50 -070058 enum ip_conntrack_info ctinfo)
Jozsef Kadlecsik55a73322006-12-02 22:07:44 -080059{
60 char buffer[sizeof("|1|255.255.255.255|65535|")];
61
62 sprintf(buffer, "|1|%u.%u.%u.%u|%u|", NIPQUAD(newip), port);
63
Patrick McHardy0d537782007-07-07 22:39:38 -070064 pr_debug("calling nf_nat_mangle_tcp_packet\n");
Jozsef Kadlecsik55a73322006-12-02 22:07:44 -080065
Herbert Xu3db05fea2007-10-15 00:53:15 -070066 return nf_nat_mangle_tcp_packet(skb, ct, ctinfo, matchoff,
Jozsef Kadlecsik55a73322006-12-02 22:07:44 -080067 matchlen, buffer, strlen(buffer));
68}
69
70/* |1|132.235.1.2|6275| */
71static int
Herbert Xu3db05fea2007-10-15 00:53:15 -070072mangle_epsv_packet(struct sk_buff *skb,
Jozsef Kadlecsik55a73322006-12-02 22:07:44 -080073 __be32 newip,
74 u_int16_t port,
75 unsigned int matchoff,
76 unsigned int matchlen,
77 struct nf_conn *ct,
Patrick McHardy25b86e02007-05-24 16:41:50 -070078 enum ip_conntrack_info ctinfo)
Jozsef Kadlecsik55a73322006-12-02 22:07:44 -080079{
80 char buffer[sizeof("|||65535|")];
81
82 sprintf(buffer, "|||%u|", port);
83
Patrick McHardy0d537782007-07-07 22:39:38 -070084 pr_debug("calling nf_nat_mangle_tcp_packet\n");
Jozsef Kadlecsik55a73322006-12-02 22:07:44 -080085
Herbert Xu3db05fea2007-10-15 00:53:15 -070086 return nf_nat_mangle_tcp_packet(skb, ct, ctinfo, matchoff,
Jozsef Kadlecsik55a73322006-12-02 22:07:44 -080087 matchlen, buffer, strlen(buffer));
88}
89
Herbert Xu3db05fea2007-10-15 00:53:15 -070090static int (*mangle[])(struct sk_buff *, __be32, u_int16_t,
Jozsef Kadlecsik55a73322006-12-02 22:07:44 -080091 unsigned int, unsigned int, struct nf_conn *,
Patrick McHardy25b86e02007-05-24 16:41:50 -070092 enum ip_conntrack_info)
Jozsef Kadlecsik55a73322006-12-02 22:07:44 -080093= {
94 [NF_CT_FTP_PORT] = mangle_rfc959_packet,
95 [NF_CT_FTP_PASV] = mangle_rfc959_packet,
96 [NF_CT_FTP_EPRT] = mangle_eprt_packet,
97 [NF_CT_FTP_EPSV] = mangle_epsv_packet
98};
99
100/* So, this packet has hit the connection tracking matching code.
101 Mangle it, and change the expectation to match the new version. */
Herbert Xu3db05fea2007-10-15 00:53:15 -0700102static unsigned int nf_nat_ftp(struct sk_buff *skb,
Jozsef Kadlecsik55a73322006-12-02 22:07:44 -0800103 enum ip_conntrack_info ctinfo,
104 enum nf_ct_ftp_type type,
105 unsigned int matchoff,
106 unsigned int matchlen,
Patrick McHardy25b86e02007-05-24 16:41:50 -0700107 struct nf_conntrack_expect *exp)
Jozsef Kadlecsik55a73322006-12-02 22:07:44 -0800108{
109 __be32 newip;
110 u_int16_t port;
111 int dir = CTINFO2DIR(ctinfo);
112 struct nf_conn *ct = exp->master;
113
Patrick McHardy0d537782007-07-07 22:39:38 -0700114 pr_debug("FTP_NAT: type %i, off %u len %u\n", type, matchoff, matchlen);
Jozsef Kadlecsik55a73322006-12-02 22:07:44 -0800115
116 /* Connection will come from wherever this packet goes, hence !dir */
117 newip = ct->tuplehash[!dir].tuple.dst.u3.ip;
118 exp->saved_proto.tcp.port = exp->tuple.dst.u.tcp.port;
119 exp->dir = !dir;
120
121 /* When you see the packet, we need to NAT it the same as the
122 * this one. */
123 exp->expectfn = nf_nat_follow_master;
124
125 /* Try to get same port: if not, try to change it. */
126 for (port = ntohs(exp->saved_proto.tcp.port); port != 0; port++) {
127 exp->tuple.dst.u.tcp.port = htons(port);
Patrick McHardy68236452007-07-07 22:30:49 -0700128 if (nf_ct_expect_related(exp) == 0)
Jozsef Kadlecsik55a73322006-12-02 22:07:44 -0800129 break;
130 }
131
132 if (port == 0)
133 return NF_DROP;
134
Herbert Xu3db05fea2007-10-15 00:53:15 -0700135 if (!mangle[type](skb, newip, port, matchoff, matchlen, ct, ctinfo)) {
Patrick McHardy68236452007-07-07 22:30:49 -0700136 nf_ct_unexpect_related(exp);
Jozsef Kadlecsik55a73322006-12-02 22:07:44 -0800137 return NF_DROP;
138 }
139 return NF_ACCEPT;
140}
141
142static void __exit nf_nat_ftp_fini(void)
143{
144 rcu_assign_pointer(nf_nat_ftp_hook, NULL);
145 synchronize_rcu();
146}
147
148static int __init nf_nat_ftp_init(void)
149{
Patrick McHardyd1332e02007-11-05 20:43:30 -0800150 BUG_ON(nf_nat_ftp_hook != NULL);
Jozsef Kadlecsik55a73322006-12-02 22:07:44 -0800151 rcu_assign_pointer(nf_nat_ftp_hook, nf_nat_ftp);
152 return 0;
153}
154
155/* Prior to 2.6.11, we had a ports param. No longer, but don't break users. */
156static int warn_set(const char *val, struct kernel_param *kp)
157{
158 printk(KERN_INFO KBUILD_MODNAME
159 ": kernel >= 2.6.10 only uses 'ports' for conntrack modules\n");
160 return 0;
161}
162module_param_call(ports, warn_set, NULL, NULL, 0);
163
164module_init(nf_nat_ftp_init);
165module_exit(nf_nat_ftp_fini);