cbb6a1a6f6f794aa3f16561658812cd181a6f49c
[GitHub/LineageOS/android_kernel_samsung_universal7580.git] / net / ipv4 / netfilter / ipt_MASQUERADE.c
1 /* Masquerade. Simple mapping which alters range to a local IP address
2 (depending on route). */
3
4 /* (C) 1999-2001 Paul `Rusty' Russell
5 * (C) 2002-2006 Netfilter Core Team <coreteam@netfilter.org>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
12 #include <linux/types.h>
13 #include <linux/inetdevice.h>
14 #include <linux/ip.h>
15 #include <linux/timer.h>
16 #include <linux/module.h>
17 #include <linux/netfilter.h>
18 #include <net/protocol.h>
19 #include <net/ip.h>
20 #include <net/checksum.h>
21 #include <net/route.h>
22 #include <net/netfilter/nf_nat_rule.h>
23 #include <linux/netfilter_ipv4.h>
24 #include <linux/netfilter/x_tables.h>
25
26 MODULE_LICENSE("GPL");
27 MODULE_AUTHOR("Netfilter Core Team <coreteam@netfilter.org>");
28 MODULE_DESCRIPTION("Xtables: automatic-address SNAT");
29
30 /* FIXME: Multiple targets. --RR */
31 static int masquerade_tg_check(const struct xt_tgchk_param *par)
32 {
33 const struct nf_nat_ipv4_multi_range_compat *mr = par->targinfo;
34
35 if (mr->range[0].flags & NF_NAT_RANGE_MAP_IPS) {
36 pr_debug("bad MAP_IPS.\n");
37 return -EINVAL;
38 }
39 if (mr->rangesize != 1) {
40 pr_debug("bad rangesize %u\n", mr->rangesize);
41 return -EINVAL;
42 }
43 return 0;
44 }
45
46 static unsigned int
47 masquerade_tg(struct sk_buff *skb, const struct xt_action_param *par)
48 {
49 struct nf_conn *ct;
50 struct nf_conn_nat *nat;
51 enum ip_conntrack_info ctinfo;
52 struct nf_nat_ipv4_range newrange;
53 const struct nf_nat_ipv4_multi_range_compat *mr;
54 const struct rtable *rt;
55 __be32 newsrc, nh;
56
57 NF_CT_ASSERT(par->hooknum == NF_INET_POST_ROUTING);
58
59 ct = nf_ct_get(skb, &ctinfo);
60 nat = nfct_nat(ct);
61
62 NF_CT_ASSERT(ct && (ctinfo == IP_CT_NEW || ctinfo == IP_CT_RELATED ||
63 ctinfo == IP_CT_RELATED_REPLY));
64
65 /* Source address is 0.0.0.0 - locally generated packet that is
66 * probably not supposed to be masqueraded.
67 */
68 if (ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple.src.u3.ip == 0)
69 return NF_ACCEPT;
70
71 mr = par->targinfo;
72 rt = skb_rtable(skb);
73 nh = rt_nexthop(rt, ip_hdr(skb)->daddr);
74 newsrc = inet_select_addr(par->out, nh, RT_SCOPE_UNIVERSE);
75 if (!newsrc) {
76 pr_info("%s ate my IP address\n", par->out->name);
77 return NF_DROP;
78 }
79
80 nat->masq_index = par->out->ifindex;
81
82 /* Transfer from original range. */
83 newrange = ((struct nf_nat_ipv4_range)
84 { mr->range[0].flags | NF_NAT_RANGE_MAP_IPS,
85 newsrc, newsrc,
86 mr->range[0].min, mr->range[0].max });
87
88 /* Hand modified range to generic setup. */
89 return nf_nat_setup_info(ct, &newrange, NF_NAT_MANIP_SRC);
90 }
91
92 static int
93 device_cmp(struct nf_conn *i, void *ifindex)
94 {
95 const struct nf_conn_nat *nat = nfct_nat(i);
96
97 if (!nat)
98 return 0;
99
100 return nat->masq_index == (int)(long)ifindex;
101 }
102
103 static int masq_device_event(struct notifier_block *this,
104 unsigned long event,
105 void *ptr)
106 {
107 const struct net_device *dev = ptr;
108 struct net *net = dev_net(dev);
109
110 if (event == NETDEV_DOWN) {
111 /* Device was downed. Search entire table for
112 conntracks which were associated with that device,
113 and forget them. */
114 NF_CT_ASSERT(dev->ifindex != 0);
115
116 nf_ct_iterate_cleanup(net, device_cmp,
117 (void *)(long)dev->ifindex);
118 }
119
120 return NOTIFY_DONE;
121 }
122
123 static int masq_inet_event(struct notifier_block *this,
124 unsigned long event,
125 void *ptr)
126 {
127 struct net_device *dev = ((struct in_ifaddr *)ptr)->ifa_dev->dev;
128 return masq_device_event(this, event, dev);
129 }
130
131 static struct notifier_block masq_dev_notifier = {
132 .notifier_call = masq_device_event,
133 };
134
135 static struct notifier_block masq_inet_notifier = {
136 .notifier_call = masq_inet_event,
137 };
138
139 static struct xt_target masquerade_tg_reg __read_mostly = {
140 .name = "MASQUERADE",
141 .family = NFPROTO_IPV4,
142 .target = masquerade_tg,
143 .targetsize = sizeof(struct nf_nat_ipv4_multi_range_compat),
144 .table = "nat",
145 .hooks = 1 << NF_INET_POST_ROUTING,
146 .checkentry = masquerade_tg_check,
147 .me = THIS_MODULE,
148 };
149
150 static int __init masquerade_tg_init(void)
151 {
152 int ret;
153
154 ret = xt_register_target(&masquerade_tg_reg);
155
156 if (ret == 0) {
157 /* Register for device down reports */
158 register_netdevice_notifier(&masq_dev_notifier);
159 /* Register IP address change reports */
160 register_inetaddr_notifier(&masq_inet_notifier);
161 }
162
163 return ret;
164 }
165
166 static void __exit masquerade_tg_exit(void)
167 {
168 xt_unregister_target(&masquerade_tg_reg);
169 unregister_netdevice_notifier(&masq_dev_notifier);
170 unregister_inetaddr_notifier(&masq_inet_notifier);
171 }
172
173 module_init(masquerade_tg_init);
174 module_exit(masquerade_tg_exit);