Blame view

net/netfilter/nf_nat_irc.c 3.41 KB
2874c5fd2   Thomas Gleixner   treewide: Replace...
1
  // SPDX-License-Identifier: GPL-2.0-or-later
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
2
3
4
5
6
  /* IRC extension for TCP NAT alteration.
   *
   * (C) 2000-2001 by Harald Welte <laforge@gnumonks.org>
   * (C) 2004 Rusty Russell <rusty@rustcorp.com.au> IBM Corporation
   * based on a copy of RR's ip_nat_ftp.c
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
7
   */
5191d70f8   Arushi Singhal   netfilter: Replac...
8
  #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
9
10
11
12
13
14
15
  #include <linux/module.h>
  #include <linux/moduleparam.h>
  #include <linux/tcp.h>
  #include <linux/kernel.h>
  
  #include <net/netfilter/nf_nat.h>
  #include <net/netfilter/nf_nat_helper.h>
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
16
17
18
  #include <net/netfilter/nf_conntrack_helper.h>
  #include <net/netfilter/nf_conntrack_expect.h>
  #include <linux/netfilter/nf_conntrack_irc.h>
53b11308a   Flavio Leitner   netfilter: nf_nat...
19
  #define NAT_HELPER_NAME "irc"
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
20
21
22
  MODULE_AUTHOR("Harald Welte <laforge@gnumonks.org>");
  MODULE_DESCRIPTION("IRC (DCC) NAT helper");
  MODULE_LICENSE("GPL");
53b11308a   Flavio Leitner   netfilter: nf_nat...
23
24
25
26
  MODULE_ALIAS_NF_NAT_HELPER(NAT_HELPER_NAME);
  
  static struct nf_conntrack_nat_helper nat_helper_irc =
  	NF_CT_NAT_HELPER_INIT(NAT_HELPER_NAME);
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
27

3db05fea5   Herbert Xu   [NETFILTER]: Repl...
28
  static unsigned int help(struct sk_buff *skb,
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
29
  			 enum ip_conntrack_info ctinfo,
051966c0c   Patrick McHardy   netfilter: nf_nat...
30
  			 unsigned int protoff,
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
31
32
33
34
35
  			 unsigned int matchoff,
  			 unsigned int matchlen,
  			 struct nf_conntrack_expect *exp)
  {
  	char buffer[sizeof("4294967296 65635")];
2690d97ad   Daniel Borkmann   netfilter: nf_nat...
36
37
  	struct nf_conn *ct = exp->master;
  	union nf_inet_addr newaddr;
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
38
  	u_int16_t port;
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
39

869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
40
  	/* Reply comes from server. */
2690d97ad   Daniel Borkmann   netfilter: nf_nat...
41
  	newaddr = ct->tuplehash[IP_CT_DIR_REPLY].tuple.dst.u3;
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
42
43
44
45
46
47
  	exp->saved_proto.tcp.port = exp->tuple.dst.u.tcp.port;
  	exp->dir = IP_CT_DIR_REPLY;
  	exp->expectfn = nf_nat_follow_master;
  
  	/* Try to get same port: if not, try to change it. */
  	for (port = ntohs(exp->saved_proto.tcp.port); port != 0; port++) {
5b92b61f3   Pablo Neira Ayuso   netfilter: nf_nat...
48
  		int ret;
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
49
  		exp->tuple.dst.u.tcp.port = htons(port);
3c00fb0bf   xiao ruizhu   netfilter: nf_con...
50
  		ret = nf_ct_expect_related(exp, 0);
5b92b61f3   Pablo Neira Ayuso   netfilter: nf_nat...
51
52
53
54
  		if (ret == 0)
  			break;
  		else if (ret != -EBUSY) {
  			port = 0;
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
55
  			break;
5b92b61f3   Pablo Neira Ayuso   netfilter: nf_nat...
56
  		}
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
57
  	}
b20ab9cc6   Pablo Neira Ayuso   netfilter: nf_ct_...
58
  	if (port == 0) {
2690d97ad   Daniel Borkmann   netfilter: nf_nat...
59
  		nf_ct_helper_log(skb, ct, "all ports in use");
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
60
  		return NF_DROP;
b20ab9cc6   Pablo Neira Ayuso   netfilter: nf_ct_...
61
  	}
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
62

2690d97ad   Daniel Borkmann   netfilter: nf_nat...
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
  	/* strlen("\1DCC CHAT chat AAAAAAAA P\1
  ")=27
  	 * strlen("\1DCC SCHAT chat AAAAAAAA P\1
  ")=28
  	 * strlen("\1DCC SEND F AAAAAAAA P S\1
  ")=26
  	 * strlen("\1DCC MOVE F AAAAAAAA P S\1
  ")=26
  	 * strlen("\1DCC TSEND F AAAAAAAA P S\1
  ")=27
  	 *
  	 * AAAAAAAAA: bound addr (1.0.0.0==16777216, min 8 digits,
  	 *                        255.255.255.255==4294967296, 10 digits)
  	 * P:         bound port (min 1 d, max 5d (65635))
  	 * F:         filename   (min 1 d )
  	 * S:         size       (min 1 d )
  	 * 0x01, 
  :  terminators
  	 */
  	/* AAA = "us", ie. where server normally talks to. */
  	snprintf(buffer, sizeof(buffer), "%u %u", ntohl(newaddr.ip), port);
5191d70f8   Arushi Singhal   netfilter: Replac...
84
85
  	pr_debug("inserting '%s' == %pI4, port %u
  ",
2690d97ad   Daniel Borkmann   netfilter: nf_nat...
86
  		 buffer, &newaddr.ip, port);
cba81cc4c   Gao Feng   netfilter: nat: n...
87
88
  	if (!nf_nat_mangle_tcp_packet(skb, ct, ctinfo, protoff, matchoff,
  				      matchlen, buffer, strlen(buffer))) {
2690d97ad   Daniel Borkmann   netfilter: nf_nat...
89
  		nf_ct_helper_log(skb, ct, "cannot mangle packet");
6823645d6   Patrick McHardy   [NETFILTER]: nf_c...
90
  		nf_ct_unexpect_related(exp);
cba81cc4c   Gao Feng   netfilter: nat: n...
91
  		return NF_DROP;
b20ab9cc6   Pablo Neira Ayuso   netfilter: nf_ct_...
92
  	}
2690d97ad   Daniel Borkmann   netfilter: nf_nat...
93

cba81cc4c   Gao Feng   netfilter: nat: n...
94
  	return NF_ACCEPT;
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
95
96
97
98
  }
  
  static void __exit nf_nat_irc_fini(void)
  {
53b11308a   Flavio Leitner   netfilter: nf_nat...
99
  	nf_nat_helper_unregister(&nat_helper_irc);
a9b3cd7f3   Stephen Hemminger   rcu: convert uses...
100
  	RCU_INIT_POINTER(nf_nat_irc_hook, NULL);
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
101
102
103
104
105
  	synchronize_rcu();
  }
  
  static int __init nf_nat_irc_init(void)
  {
d1332e0ab   Patrick McHardy   [NETFILTER]: remo...
106
  	BUG_ON(nf_nat_irc_hook != NULL);
53b11308a   Flavio Leitner   netfilter: nf_nat...
107
  	nf_nat_helper_register(&nat_helper_irc);
a9b3cd7f3   Stephen Hemminger   rcu: convert uses...
108
  	RCU_INIT_POINTER(nf_nat_irc_hook, help);
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
109
110
111
112
  	return 0;
  }
  
  /* Prior to 2.6.11, we had a ports param.  No longer, but don't break users. */
e4dca7b7a   Kees Cook   treewide: Fix fun...
113
  static int warn_set(const char *val, const struct kernel_param *kp)
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
114
  {
5191d70f8   Arushi Singhal   netfilter: Replac...
115
116
  	pr_info("kernel >= 2.6.10 only uses 'ports' for conntrack modules
  ");
869f37d8e   Patrick McHardy   [NETFILTER]: nf_c...
117
118
119
120
121
122
  	return 0;
  }
  module_param_call(ports, warn_set, NULL, NULL, 0);
  
  module_init(nf_nat_irc_init);
  module_exit(nf_nat_irc_fini);