blob: eb772380a202f0037745a4357cf2c00658181bcd [file] [log] [blame]
Patrick McHardy16958902006-12-02 22:08:26 -08001/* 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
Patrick McHardyf229f6c2013-04-06 15:24:29 +02004 * (C) 2006-2012 Patrick McHardy <kaber@trash.net>
Patrick McHardy16958902006-12-02 22:08:26 -08005 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 */
11
12#include <linux/kernel.h>
13#include <linux/module.h>
14#include <linux/skbuff.h>
15#include <linux/udp.h>
16
Patrick McHardy16958902006-12-02 22:08:26 -080017#include <net/netfilter/nf_conntrack_helper.h>
18#include <net/netfilter/nf_conntrack_expect.h>
Pablo Neira Ayuso1afc5672012-06-07 12:11:50 +020019#include <net/netfilter/nf_nat_helper.h>
Patrick McHardy16958902006-12-02 22:08:26 -080020#include <linux/netfilter/nf_conntrack_amanda.h>
21
22MODULE_AUTHOR("Brian J. Murrell <netfilter@interlinx.bc.ca>");
23MODULE_DESCRIPTION("Amanda NAT helper");
24MODULE_LICENSE("GPL");
25MODULE_ALIAS("ip_nat_amanda");
26
Herbert Xu3db05fe2007-10-15 00:53:15 -070027static unsigned int help(struct sk_buff *skb,
Patrick McHardy16958902006-12-02 22:08:26 -080028 enum ip_conntrack_info ctinfo,
Patrick McHardy051966c2012-08-26 19:14:04 +020029 unsigned int protoff,
Patrick McHardy16958902006-12-02 22:08:26 -080030 unsigned int matchoff,
31 unsigned int matchlen,
32 struct nf_conntrack_expect *exp)
33{
34 char buffer[sizeof("65535")];
35 u_int16_t port;
36 unsigned int ret;
37
38 /* Connection comes from client. */
39 exp->saved_proto.tcp.port = exp->tuple.dst.u.tcp.port;
40 exp->dir = IP_CT_DIR_ORIGINAL;
41
42 /* When you see the packet, we need to NAT it the same as the
43 * this one (ie. same IP: it will be TCP and master is UDP). */
44 exp->expectfn = nf_nat_follow_master;
45
46 /* Try to get same port: if not, try to change it. */
47 for (port = ntohs(exp->saved_proto.tcp.port); port != 0; port++) {
Eric Dumazetab0cba22010-11-15 18:45:12 +010048 int res;
Pablo Neira Ayuso5b92b612010-09-22 08:34:12 +020049
Patrick McHardy16958902006-12-02 22:08:26 -080050 exp->tuple.dst.u.tcp.port = htons(port);
Eric Dumazetab0cba22010-11-15 18:45:12 +010051 res = nf_ct_expect_related(exp);
52 if (res == 0)
Patrick McHardy16958902006-12-02 22:08:26 -080053 break;
Eric Dumazetab0cba22010-11-15 18:45:12 +010054 else if (res != -EBUSY) {
Pablo Neira Ayuso5b92b612010-09-22 08:34:12 +020055 port = 0;
56 break;
57 }
Patrick McHardy16958902006-12-02 22:08:26 -080058 }
59
Pablo Neira Ayusob20ab9cc2013-02-10 18:56:56 +010060 if (port == 0) {
61 nf_ct_helper_log(skb, exp->master, "all ports in use");
Patrick McHardy16958902006-12-02 22:08:26 -080062 return NF_DROP;
Pablo Neira Ayusob20ab9cc2013-02-10 18:56:56 +010063 }
Patrick McHardy16958902006-12-02 22:08:26 -080064
65 sprintf(buffer, "%u", port);
Herbert Xu3db05fe2007-10-15 00:53:15 -070066 ret = nf_nat_mangle_udp_packet(skb, exp->master, ctinfo,
Patrick McHardy051966c2012-08-26 19:14:04 +020067 protoff, matchoff, matchlen,
Patrick McHardy16958902006-12-02 22:08:26 -080068 buffer, strlen(buffer));
Pablo Neira Ayusob20ab9cc2013-02-10 18:56:56 +010069 if (ret != NF_ACCEPT) {
70 nf_ct_helper_log(skb, exp->master, "cannot mangle packet");
Patrick McHardy68236452007-07-07 22:30:49 -070071 nf_ct_unexpect_related(exp);
Pablo Neira Ayusob20ab9cc2013-02-10 18:56:56 +010072 }
Patrick McHardy16958902006-12-02 22:08:26 -080073 return ret;
74}
75
76static void __exit nf_nat_amanda_fini(void)
77{
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +000078 RCU_INIT_POINTER(nf_nat_amanda_hook, NULL);
Patrick McHardy16958902006-12-02 22:08:26 -080079 synchronize_rcu();
80}
81
82static int __init nf_nat_amanda_init(void)
83{
Patrick McHardyd1332e02007-11-05 20:43:30 -080084 BUG_ON(nf_nat_amanda_hook != NULL);
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +000085 RCU_INIT_POINTER(nf_nat_amanda_hook, help);
Patrick McHardy16958902006-12-02 22:08:26 -080086 return 0;
87}
88
89module_init(nf_nat_amanda_init);
90module_exit(nf_nat_amanda_fini);