blob: 3b67c9d112730af30ed541f56b39aa41f1ffa058 [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
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
Patrick McHardy16958902006-12-02 22:08:26 -080016#include <net/netfilter/nf_conntrack_helper.h>
17#include <net/netfilter/nf_conntrack_expect.h>
Pablo Neira Ayuso1afc5672012-06-07 12:11:50 +020018#include <net/netfilter/nf_nat_helper.h>
Patrick McHardy16958902006-12-02 22:08:26 -080019#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
Herbert Xu3db05fe2007-10-15 00:53:15 -070026static unsigned int help(struct sk_buff *skb,
Patrick McHardy16958902006-12-02 22:08:26 -080027 enum ip_conntrack_info ctinfo,
Patrick McHardy051966c2012-08-26 19:14:04 +020028 unsigned int protoff,
Patrick McHardy16958902006-12-02 22:08:26 -080029 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++) {
Eric Dumazetab0cba22010-11-15 18:45:12 +010047 int res;
Pablo Neira Ayuso5b92b612010-09-22 08:34:12 +020048
Patrick McHardy16958902006-12-02 22:08:26 -080049 exp->tuple.dst.u.tcp.port = htons(port);
Eric Dumazetab0cba22010-11-15 18:45:12 +010050 res = nf_ct_expect_related(exp);
51 if (res == 0)
Patrick McHardy16958902006-12-02 22:08:26 -080052 break;
Eric Dumazetab0cba22010-11-15 18:45:12 +010053 else if (res != -EBUSY) {
Pablo Neira Ayuso5b92b612010-09-22 08:34:12 +020054 port = 0;
55 break;
56 }
Patrick McHardy16958902006-12-02 22:08:26 -080057 }
58
Pablo Neira Ayusob20ab9cc2013-02-10 18:56:56 +010059 if (port == 0) {
60 nf_ct_helper_log(skb, exp->master, "all ports in use");
Patrick McHardy16958902006-12-02 22:08:26 -080061 return NF_DROP;
Pablo Neira Ayusob20ab9cc2013-02-10 18:56:56 +010062 }
Patrick McHardy16958902006-12-02 22:08:26 -080063
64 sprintf(buffer, "%u", port);
Herbert Xu3db05fe2007-10-15 00:53:15 -070065 ret = nf_nat_mangle_udp_packet(skb, exp->master, ctinfo,
Patrick McHardy051966c2012-08-26 19:14:04 +020066 protoff, matchoff, matchlen,
Patrick McHardy16958902006-12-02 22:08:26 -080067 buffer, strlen(buffer));
Pablo Neira Ayusob20ab9cc2013-02-10 18:56:56 +010068 if (ret != NF_ACCEPT) {
69 nf_ct_helper_log(skb, exp->master, "cannot mangle packet");
Patrick McHardy68236452007-07-07 22:30:49 -070070 nf_ct_unexpect_related(exp);
Pablo Neira Ayusob20ab9cc2013-02-10 18:56:56 +010071 }
Patrick McHardy16958902006-12-02 22:08:26 -080072 return ret;
73}
74
75static void __exit nf_nat_amanda_fini(void)
76{
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +000077 RCU_INIT_POINTER(nf_nat_amanda_hook, NULL);
Patrick McHardy16958902006-12-02 22:08:26 -080078 synchronize_rcu();
79}
80
81static int __init nf_nat_amanda_init(void)
82{
Patrick McHardyd1332e02007-11-05 20:43:30 -080083 BUG_ON(nf_nat_amanda_hook != NULL);
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +000084 RCU_INIT_POINTER(nf_nat_amanda_hook, help);
Patrick McHardy16958902006-12-02 22:08:26 -080085 return 0;
86}
87
88module_init(nf_nat_amanda_init);
89module_exit(nf_nat_amanda_fini);