blob: 0b732efd32e20aa8e22e6c9bd5aa4edfb7e5516d [file] [log] [blame]
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001/* Cluster IP hashmark target
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * (C) 2003-2004 by Harald Welte <laforge@netfilter.org>
3 * based on ideas of Fabio Olive Leite <olive@unixforge.org>
4 *
5 * Development of this code funded by SuSE Linux AG, http://www.suse.com/
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 */
Jan Engelhardtff67e4e2010-03-19 21:08:16 +010012#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/proc_fs.h>
15#include <linux/jhash.h>
KOVACS Krisztian136e92b2005-09-16 17:00:04 -070016#include <linux/bitops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/skbuff.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090018#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/ip.h>
20#include <linux/tcp.h>
21#include <linux/udp.h>
22#include <linux/icmp.h>
23#include <linux/if_arp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/netfilter_arp.h>
Jan Engelhardt6709dbb2007-02-07 15:11:19 -080026#include <linux/netfilter/x_tables.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/netfilter_ipv4/ip_tables.h>
28#include <linux/netfilter_ipv4/ipt_CLUSTERIP.h>
Patrick McHardy587aa642007-03-14 16:37:25 -070029#include <net/netfilter/nf_conntrack.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020030#include <net/net_namespace.h>
Patrick McHardy587aa642007-03-14 16:37:25 -070031#include <net/checksum.h>
Changli Gao3d04ebb2010-08-17 20:34:40 +000032#include <net/ip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
KOVACS Krisztian136e92b2005-09-16 17:00:04 -070034#define CLUSTERIP_VERSION "0.8"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Linus Torvalds1da177e2005-04-16 15:20:36 -070036MODULE_LICENSE("GPL");
37MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
Jan Engelhardt2ae15b62008-01-14 23:42:28 -080038MODULE_DESCRIPTION("Xtables: CLUSTERIP target");
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40struct clusterip_config {
41 struct list_head list; /* list of all configs */
42 atomic_t refcount; /* reference count */
KOVACS Krisztian44513622005-09-16 16:59:46 -070043 atomic_t entries; /* number of entries/rules
44 * referencing us */
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Al Viro6a19d612006-09-28 14:22:24 -070046 __be32 clusterip; /* the IP address */
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 u_int8_t clustermac[ETH_ALEN]; /* the MAC address */
48 struct net_device *dev; /* device */
49 u_int16_t num_total_nodes; /* total number of nodes */
KOVACS Krisztian136e92b2005-09-16 17:00:04 -070050 unsigned long local_nodes; /* node number array */
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52#ifdef CONFIG_PROC_FS
53 struct proc_dir_entry *pde; /* proc dir entry */
54#endif
55 enum clusterip_hashmode hash_mode; /* which hashing mode */
56 u_int32_t hash_initval; /* hash initialization */
Eric Dumazetd73f33b2010-06-15 13:08:51 +020057 struct rcu_head rcu;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058};
59
60static LIST_HEAD(clusterip_configs);
61
KOVACS Krisztian136e92b2005-09-16 17:00:04 -070062/* clusterip_lock protects the clusterip_configs list */
Eric Dumazetd73f33b2010-06-15 13:08:51 +020063static DEFINE_SPINLOCK(clusterip_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65#ifdef CONFIG_PROC_FS
Arjan van de Ven9a321442007-02-12 00:55:35 -080066static const struct file_operations clusterip_proc_fops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067static struct proc_dir_entry *clusterip_procdir;
68#endif
69
70static inline void
KOVACS Krisztian44513622005-09-16 16:59:46 -070071clusterip_config_get(struct clusterip_config *c)
72{
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 atomic_inc(&c->refcount);
74}
75
Eric Dumazetd73f33b2010-06-15 13:08:51 +020076
77static void clusterip_config_rcu_free(struct rcu_head *head)
78{
79 kfree(container_of(head, struct clusterip_config, rcu));
80}
81
Linus Torvalds1da177e2005-04-16 15:20:36 -070082static inline void
KOVACS Krisztian44513622005-09-16 16:59:46 -070083clusterip_config_put(struct clusterip_config *c)
84{
85 if (atomic_dec_and_test(&c->refcount))
Eric Dumazetd73f33b2010-06-15 13:08:51 +020086 call_rcu_bh(&c->rcu, clusterip_config_rcu_free);
KOVACS Krisztian44513622005-09-16 16:59:46 -070087}
88
KOVACS Krisztian44513622005-09-16 16:59:46 -070089/* decrease the count of entries using/referencing this config. If last
90 * entry(rule) is removed, remove the config from lists, but don't free it
91 * yet, since proc-files could still be holding references */
92static inline void
93clusterip_config_entry_put(struct clusterip_config *c)
94{
Eric Dumazetd73f33b2010-06-15 13:08:51 +020095 local_bh_disable();
96 if (atomic_dec_and_lock(&c->entries, &clusterip_lock)) {
97 list_del_rcu(&c->list);
98 spin_unlock(&clusterip_lock);
99 local_bh_enable();
KOVACS Krisztian44513622005-09-16 16:59:46 -0700100
Jiri Pirko22bedad32010-04-01 21:22:57 +0000101 dev_mc_del(c->dev, c->clustermac);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 dev_put(c->dev);
KOVACS Krisztian44513622005-09-16 16:59:46 -0700103
104 /* In case anyone still accesses the file, the open/close
105 * functions are also incrementing the refcount on their own,
106 * so it's safe to remove the entry even if it's in use. */
107#ifdef CONFIG_PROC_FS
David Howellsa8ca16e2013-04-12 17:27:28 +0100108 proc_remove(c->pde);
KOVACS Krisztian44513622005-09-16 16:59:46 -0700109#endif
Pavel Emelyanov4dee9592008-04-14 00:44:52 -0700110 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 }
Eric Dumazetd73f33b2010-06-15 13:08:51 +0200112 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113}
114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115static struct clusterip_config *
Al Viro6a19d612006-09-28 14:22:24 -0700116__clusterip_config_find(__be32 clusterip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117{
Li Zefan4c610972007-12-04 23:22:26 -0800118 struct clusterip_config *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Eric Dumazetd73f33b2010-06-15 13:08:51 +0200120 list_for_each_entry_rcu(c, &clusterip_configs, list) {
Jan Engelhardt7c4e36b2007-07-07 22:19:08 -0700121 if (c->clusterip == clusterip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 return c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 }
124
125 return NULL;
126}
127
128static inline struct clusterip_config *
Al Viro6a19d612006-09-28 14:22:24 -0700129clusterip_config_find_get(__be32 clusterip, int entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130{
131 struct clusterip_config *c;
132
Eric Dumazetd73f33b2010-06-15 13:08:51 +0200133 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 c = __clusterip_config_find(clusterip);
Eric Dumazetd73f33b2010-06-15 13:08:51 +0200135 if (c) {
136 if (unlikely(!atomic_inc_not_zero(&c->refcount)))
137 c = NULL;
138 else if (entry)
139 atomic_inc(&c->entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 }
Eric Dumazetd73f33b2010-06-15 13:08:51 +0200141 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
143 return c;
144}
145
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700146static void
147clusterip_config_init_nodelist(struct clusterip_config *c,
148 const struct ipt_clusterip_tgt_info *i)
149{
150 int n;
151
Jan Engelhardt7c4e36b2007-07-07 22:19:08 -0700152 for (n = 0; n < i->num_local_nodes; n++)
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700153 set_bit(i->local_nodes[n] - 1, &c->local_nodes);
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700154}
155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156static struct clusterip_config *
Jan Engelhardt3cf93c92008-04-14 09:56:05 +0200157clusterip_config_init(const struct ipt_clusterip_tgt_info *i, __be32 ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 struct net_device *dev)
159{
160 struct clusterip_config *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700162 c = kzalloc(sizeof(*c), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 if (!c)
164 return NULL;
165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 c->dev = dev;
167 c->clusterip = ip;
168 memcpy(&c->clustermac, &i->clustermac, ETH_ALEN);
169 c->num_total_nodes = i->num_total_nodes;
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700170 clusterip_config_init_nodelist(c, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 c->hash_mode = i->hash_mode;
172 c->hash_initval = i->hash_initval;
173 atomic_set(&c->refcount, 1);
KOVACS Krisztian44513622005-09-16 16:59:46 -0700174 atomic_set(&c->entries, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
176#ifdef CONFIG_PROC_FS
Patrick McHardy76592582006-11-29 02:35:42 +0100177 {
178 char buffer[16];
179
180 /* create proc dir entry */
Harvey Harrisoncffee382008-10-31 00:53:08 -0700181 sprintf(buffer, "%pI4", &ip);
Denis V. Lunev6e79d852008-05-02 02:45:42 -0700182 c->pde = proc_create_data(buffer, S_IWUSR|S_IRUSR,
183 clusterip_procdir,
184 &clusterip_proc_fops, c);
Patrick McHardy76592582006-11-29 02:35:42 +0100185 if (!c->pde) {
186 kfree(c);
187 return NULL;
188 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190#endif
191
Eric Dumazetd73f33b2010-06-15 13:08:51 +0200192 spin_lock_bh(&clusterip_lock);
193 list_add_rcu(&c->list, &clusterip_configs);
194 spin_unlock_bh(&clusterip_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
196 return c;
197}
198
Patrick McHardy76592582006-11-29 02:35:42 +0100199#ifdef CONFIG_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200static int
201clusterip_add_node(struct clusterip_config *c, u_int16_t nodenum)
202{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700204 if (nodenum == 0 ||
205 nodenum > c->num_total_nodes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700208 /* check if we already have this number in our bitfield */
209 if (test_and_set_bit(nodenum - 1, &c->local_nodes))
210 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 return 0;
213}
214
Jan Engelhardte1931b72007-07-07 22:16:26 -0700215static bool
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216clusterip_del_node(struct clusterip_config *c, u_int16_t nodenum)
217{
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700218 if (nodenum == 0 ||
219 nodenum > c->num_total_nodes)
Jan Engelhardte1931b72007-07-07 22:16:26 -0700220 return true;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900221
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700222 if (test_and_clear_bit(nodenum - 1, &c->local_nodes))
Jan Engelhardte1931b72007-07-07 22:16:26 -0700223 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Jan Engelhardte1931b72007-07-07 22:16:26 -0700225 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226}
Patrick McHardy76592582006-11-29 02:35:42 +0100227#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
229static inline u_int32_t
Jan Engelhardta47362a2007-07-07 22:16:55 -0700230clusterip_hashfn(const struct sk_buff *skb,
231 const struct clusterip_config *config)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232{
Jan Engelhardta47362a2007-07-07 22:16:55 -0700233 const struct iphdr *iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 unsigned long hashval;
Changli Gao3d04ebb2010-08-17 20:34:40 +0000235 u_int16_t sport = 0, dport = 0;
236 int poff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Changli Gao3d04ebb2010-08-17 20:34:40 +0000238 poff = proto_ports_offset(iph->protocol);
239 if (poff >= 0) {
240 const u_int16_t *ports;
241 u16 _ports[2];
242
243 ports = skb_header_pointer(skb, iph->ihl * 4 + poff, 4, _ports);
244 if (ports) {
245 sport = ports[0];
246 dport = ports[1];
247 }
248 } else {
Joe Perchese87cc472012-05-13 21:56:26 +0000249 net_info_ratelimited("unknown protocol %u\n", iph->protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 }
251
252 switch (config->hash_mode) {
253 case CLUSTERIP_HASHMODE_SIP:
254 hashval = jhash_1word(ntohl(iph->saddr),
255 config->hash_initval);
256 break;
257 case CLUSTERIP_HASHMODE_SIP_SPT:
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900258 hashval = jhash_2words(ntohl(iph->saddr), sport,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 config->hash_initval);
260 break;
261 case CLUSTERIP_HASHMODE_SIP_SPT_DPT:
262 hashval = jhash_3words(ntohl(iph->saddr), sport, dport,
263 config->hash_initval);
264 break;
265 default:
266 /* to make gcc happy */
267 hashval = 0;
268 /* This cannot happen, unless the check function wasn't called
269 * at rule load time */
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100270 pr_info("unknown mode %u\n", config->hash_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 BUG();
272 break;
273 }
274
275 /* node numbers are 1..n, not 0..n */
Patrick McHardy34498822007-12-17 22:45:52 -0800276 return (((u64)hashval * config->num_total_nodes) >> 32) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277}
278
279static inline int
Jan Engelhardta47362a2007-07-07 22:16:55 -0700280clusterip_responsible(const struct clusterip_config *config, u_int32_t hash)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281{
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700282 return test_bit(hash - 1, &config->local_nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283}
284
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900285/***********************************************************************
286 * IPTABLES TARGET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 ***********************************************************************/
288
289static unsigned int
Jan Engelhardt4b560b42009-07-05 19:43:26 +0200290clusterip_tg(struct sk_buff *skb, const struct xt_action_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291{
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200292 const struct ipt_clusterip_tgt_info *cipinfo = par->targinfo;
Patrick McHardy587aa642007-03-14 16:37:25 -0700293 struct nf_conn *ct;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 enum ip_conntrack_info ctinfo;
Patrick McHardy587aa642007-03-14 16:37:25 -0700295 u_int32_t hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
297 /* don't need to clusterip_config_get() here, since refcount
298 * is only decremented by destroy() - and ip_tables guarantees
299 * that the ->target() function isn't called after ->destroy() */
300
Herbert Xu3db05fe2007-10-15 00:53:15 -0700301 ct = nf_ct_get(skb, &ctinfo);
Eric Dumazet94d117a2011-01-18 16:27:56 +0100302 if (ct == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
305 /* special case: ICMP error handling. conntrack distinguishes between
306 * error messages (RELATED) and information requests (see below) */
Joe Perches3666ed12009-11-23 23:17:06 +0100307 if (ip_hdr(skb)->protocol == IPPROTO_ICMP &&
308 (ctinfo == IP_CT_RELATED ||
Eric Dumazetfb048832011-05-19 15:44:27 +0200309 ctinfo == IP_CT_RELATED_REPLY))
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800310 return XT_CONTINUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900312 /* ip_conntrack_icmp guarantees us that we only have ICMP_ECHO,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 * TIMESTAMP, INFO_REQUEST or ADDRESS type icmp packets from here
314 * on, which all have an ID field [relevant for hashing]. */
315
Herbert Xu3db05fe2007-10-15 00:53:15 -0700316 hash = clusterip_hashfn(skb, cipinfo->config);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
318 switch (ctinfo) {
Joe Perches181b1e92011-07-01 09:43:06 +0000319 case IP_CT_NEW:
320 ct->mark = hash;
321 break;
322 case IP_CT_RELATED:
323 case IP_CT_RELATED_REPLY:
324 /* FIXME: we don't handle expectations at the moment.
325 * They can arrive on a different node than
326 * the master connection (e.g. FTP passive mode) */
327 case IP_CT_ESTABLISHED:
328 case IP_CT_ESTABLISHED_REPLY:
329 break;
330 default: /* Prevent gcc warnings */
331 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 }
333
Patrick McHardy0d537782007-07-07 22:39:38 -0700334#ifdef DEBUG
Jan Engelhardt3c9fba62008-04-14 11:15:54 +0200335 nf_ct_dump_tuple_ip(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336#endif
Patrick McHardy0d537782007-07-07 22:39:38 -0700337 pr_debug("hash=%u ct_hash=%u ", hash, ct->mark);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 if (!clusterip_responsible(cipinfo->config, hash)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700339 pr_debug("not responsible\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 return NF_DROP;
341 }
Patrick McHardy0d537782007-07-07 22:39:38 -0700342 pr_debug("responsible\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
344 /* despite being received via linklayer multicast, this is
345 * actually a unicast IP packet. TCP doesn't like PACKET_MULTICAST */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700346 skb->pkt_type = PACKET_HOST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800348 return XT_CONTINUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349}
350
Jan Engelhardt135367b2010-03-19 17:16:42 +0100351static int clusterip_tg_check(const struct xt_tgchk_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200353 struct ipt_clusterip_tgt_info *cipinfo = par->targinfo;
354 const struct ipt_entry *e = par->entryinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 struct clusterip_config *config;
Jan Engelhardt4a5a5c72010-03-19 17:32:59 +0100356 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 if (cipinfo->hash_mode != CLUSTERIP_HASHMODE_SIP &&
359 cipinfo->hash_mode != CLUSTERIP_HASHMODE_SIP_SPT &&
360 cipinfo->hash_mode != CLUSTERIP_HASHMODE_SIP_SPT_DPT) {
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100361 pr_info("unknown mode %u\n", cipinfo->hash_mode);
Jan Engelhardtd6b00a52010-03-25 16:34:45 +0100362 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
364 }
Joe Perches3666ed12009-11-23 23:17:06 +0100365 if (e->ip.dmsk.s_addr != htonl(0xffffffff) ||
366 e->ip.dst.s_addr == 0) {
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100367 pr_info("Please specify destination IP\n");
Jan Engelhardtd6b00a52010-03-25 16:34:45 +0100368 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 }
370
371 /* FIXME: further sanity checks */
372
KOVACS Krisztian44513622005-09-16 16:59:46 -0700373 config = clusterip_config_find_get(e->ip.dst.s_addr, 1);
Patrick McHardyd3c3f422007-07-07 22:38:30 -0700374 if (!config) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 if (!(cipinfo->flags & CLUSTERIP_FLAG_NEW)) {
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100376 pr_info("no config found for %pI4, need 'new'\n",
377 &e->ip.dst.s_addr);
Jan Engelhardtd6b00a52010-03-25 16:34:45 +0100378 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 } else {
380 struct net_device *dev;
381
382 if (e->ip.iniface[0] == '\0') {
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100383 pr_info("Please specify an interface name\n");
Jan Engelhardtd6b00a52010-03-25 16:34:45 +0100384 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 }
386
Eric W. Biederman881d9662007-09-17 11:56:21 -0700387 dev = dev_get_by_name(&init_net, e->ip.iniface);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 if (!dev) {
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100389 pr_info("no such interface %s\n",
390 e->ip.iniface);
Jan Engelhardt4a5a5c72010-03-19 17:32:59 +0100391 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 }
393
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900394 config = clusterip_config_init(cipinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 e->ip.dst.s_addr, dev);
396 if (!config) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 dev_put(dev);
Jan Engelhardt4a5a5c72010-03-19 17:32:59 +0100398 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 }
Jiri Pirko22bedad32010-04-01 21:22:57 +0000400 dev_mc_add(config->dev, config->clustermac);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 }
402 }
Patrick McHardyd3c3f422007-07-07 22:38:30 -0700403 cipinfo->config = config;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
Jan Engelhardt4a5a5c72010-03-19 17:32:59 +0100405 ret = nf_ct_l3proto_try_module_get(par->family);
Jan Engelhardtf95c74e2010-03-21 04:05:56 +0100406 if (ret < 0)
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100407 pr_info("cannot load conntrack support for proto=%u\n",
408 par->family);
Jan Engelhardtf95c74e2010-03-21 04:05:56 +0100409 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410}
411
412/* drop reference count of cluster config when rule is deleted */
Jan Engelhardta2df1642008-10-08 11:35:19 +0200413static void clusterip_tg_destroy(const struct xt_tgdtor_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414{
Jan Engelhardta2df1642008-10-08 11:35:19 +0200415 const struct ipt_clusterip_tgt_info *cipinfo = par->targinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
KOVACS Krisztian44513622005-09-16 16:59:46 -0700417 /* if no more entries are referencing the config, remove it
418 * from the list and destroy the proc entry */
419 clusterip_config_entry_put(cipinfo->config);
420
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 clusterip_config_put(cipinfo->config);
Yasuyuki Kozakai11078c32006-12-12 00:29:02 -0800422
Jan Engelhardt0d345452010-03-19 18:47:51 +0100423 nf_ct_l3proto_module_put(par->family);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424}
425
Patrick McHardyd3c3f422007-07-07 22:38:30 -0700426#ifdef CONFIG_COMPAT
427struct compat_ipt_clusterip_tgt_info
428{
429 u_int32_t flags;
430 u_int8_t clustermac[6];
431 u_int16_t num_total_nodes;
432 u_int16_t num_local_nodes;
433 u_int16_t local_nodes[CLUSTERIP_MAX_NODES];
434 u_int32_t hash_mode;
435 u_int32_t hash_initval;
436 compat_uptr_t config;
437};
438#endif /* CONFIG_COMPAT */
439
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800440static struct xt_target clusterip_tg_reg __read_mostly = {
Patrick McHardy1d5cd902006-03-20 18:01:14 -0800441 .name = "CLUSTERIP",
Jan Engelhardtee999d82008-10-08 11:35:01 +0200442 .family = NFPROTO_IPV4,
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800443 .target = clusterip_tg,
444 .checkentry = clusterip_tg_check,
445 .destroy = clusterip_tg_destroy,
Patrick McHardyd3c3f422007-07-07 22:38:30 -0700446 .targetsize = sizeof(struct ipt_clusterip_tgt_info),
447#ifdef CONFIG_COMPAT
448 .compatsize = sizeof(struct compat_ipt_clusterip_tgt_info),
449#endif /* CONFIG_COMPAT */
Patrick McHardy1d5cd902006-03-20 18:01:14 -0800450 .me = THIS_MODULE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451};
452
453
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900454/***********************************************************************
455 * ARP MANGLING CODE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 ***********************************************************************/
457
458/* hardcoded for 48bit ethernet and 32bit ipv4 addresses */
459struct arp_payload {
460 u_int8_t src_hw[ETH_ALEN];
Al Viro6a19d612006-09-28 14:22:24 -0700461 __be32 src_ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 u_int8_t dst_hw[ETH_ALEN];
Al Viro6a19d612006-09-28 14:22:24 -0700463 __be32 dst_ip;
Gustavo F. Padovan3f30fc12010-07-21 10:59:58 +0000464} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
Patrick McHardy0d537782007-07-07 22:39:38 -0700466#ifdef DEBUG
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900467static void arp_print(struct arp_payload *payload)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468{
469#define HBUFFERLEN 30
470 char hbuffer[HBUFFERLEN];
471 int j,k;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
473 for (k=0, j=0; k < HBUFFERLEN-3 && j < ETH_ALEN; j++) {
Harvey Harrison6a8341b2008-07-30 16:30:15 -0700474 hbuffer[k++] = hex_asc_hi(payload->src_hw[j]);
475 hbuffer[k++] = hex_asc_lo(payload->src_hw[j]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 hbuffer[k++]=':';
477 }
478 hbuffer[--k]='\0';
479
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100480 pr_debug("src %pI4@%s, dst %pI4\n",
481 &payload->src_ip, hbuffer, &payload->dst_ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482}
483#endif
484
485static unsigned int
486arp_mangle(unsigned int hook,
Herbert Xu3db05fe2007-10-15 00:53:15 -0700487 struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 const struct net_device *in,
489 const struct net_device *out,
490 int (*okfn)(struct sk_buff *))
491{
Herbert Xu3db05fe2007-10-15 00:53:15 -0700492 struct arphdr *arp = arp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 struct arp_payload *payload;
494 struct clusterip_config *c;
495
496 /* we don't care about non-ethernet and non-ipv4 ARP */
Joe Perches3666ed12009-11-23 23:17:06 +0100497 if (arp->ar_hrd != htons(ARPHRD_ETHER) ||
498 arp->ar_pro != htons(ETH_P_IP) ||
499 arp->ar_pln != 4 || arp->ar_hln != ETH_ALEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 return NF_ACCEPT;
501
Harald Welte4095ebf2005-06-28 12:49:30 -0700502 /* we only want to mangle arp requests and replies */
Joe Perches3666ed12009-11-23 23:17:06 +0100503 if (arp->ar_op != htons(ARPOP_REPLY) &&
504 arp->ar_op != htons(ARPOP_REQUEST))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 return NF_ACCEPT;
506
507 payload = (void *)(arp+1);
508
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900509 /* if there is no clusterip configuration for the arp reply's
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 * source ip, we don't want to mangle it */
KOVACS Krisztian44513622005-09-16 16:59:46 -0700511 c = clusterip_config_find_get(payload->src_ip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 if (!c)
513 return NF_ACCEPT;
514
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900515 /* normally the linux kernel always replies to arp queries of
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 * addresses on different interfacs. However, in the CLUSTERIP case
517 * this wouldn't work, since we didn't subscribe the mcast group on
518 * other interfaces */
519 if (c->dev != out) {
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100520 pr_debug("not mangling arp reply on different "
Patrick McHardy0d537782007-07-07 22:39:38 -0700521 "interface: cip'%s'-skb'%s'\n",
522 c->dev->name, out->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 clusterip_config_put(c);
524 return NF_ACCEPT;
525 }
526
527 /* mangle reply hardware address */
528 memcpy(payload->src_hw, c->clustermac, arp->ar_hln);
529
Patrick McHardy0d537782007-07-07 22:39:38 -0700530#ifdef DEBUG
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100531 pr_debug("mangled arp reply: ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 arp_print(payload);
533#endif
534
535 clusterip_config_put(c);
536
537 return NF_ACCEPT;
538}
539
Patrick McHardy19994142007-12-05 01:23:00 -0800540static struct nf_hook_ops cip_arp_ops __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 .hook = arp_mangle,
Jan Engelhardtee999d82008-10-08 11:35:01 +0200542 .pf = NFPROTO_ARP,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 .hooknum = NF_ARP_OUT,
544 .priority = -1
545};
546
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900547/***********************************************************************
548 * PROC DIR HANDLING
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 ***********************************************************************/
550
551#ifdef CONFIG_PROC_FS
552
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700553struct clusterip_seq_position {
554 unsigned int pos; /* position */
555 unsigned int weight; /* number of bits set == size */
556 unsigned int bit; /* current bit */
557 unsigned long val; /* current value */
558};
559
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560static void *clusterip_seq_start(struct seq_file *s, loff_t *pos)
561{
Alexey Dobriyan47778142010-01-22 22:21:18 +0100562 struct clusterip_config *c = s->private;
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700563 unsigned int weight;
564 u_int32_t local_nodes;
565 struct clusterip_seq_position *idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700567 /* FIXME: possible race */
568 local_nodes = c->local_nodes;
569 weight = hweight32(local_nodes);
570 if (*pos >= weight)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 return NULL;
572
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700573 idx = kmalloc(sizeof(struct clusterip_seq_position), GFP_KERNEL);
574 if (!idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 return ERR_PTR(-ENOMEM);
576
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700577 idx->pos = *pos;
578 idx->weight = weight;
579 idx->bit = ffs(local_nodes);
580 idx->val = local_nodes;
581 clear_bit(idx->bit - 1, &idx->val);
582
583 return idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584}
585
586static void *clusterip_seq_next(struct seq_file *s, void *v, loff_t *pos)
587{
Jan Engelhardt3cf93c92008-04-14 09:56:05 +0200588 struct clusterip_seq_position *idx = v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700590 *pos = ++idx->pos;
591 if (*pos >= idx->weight) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 kfree(v);
593 return NULL;
594 }
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700595 idx->bit = ffs(idx->val);
596 clear_bit(idx->bit - 1, &idx->val);
597 return idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598}
599
600static void clusterip_seq_stop(struct seq_file *s, void *v)
601{
Eric Dumazet902a3dd2010-04-01 12:54:09 +0200602 if (!IS_ERR(v))
603 kfree(v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604}
605
606static int clusterip_seq_show(struct seq_file *s, void *v)
607{
Jan Engelhardt3cf93c92008-04-14 09:56:05 +0200608 struct clusterip_seq_position *idx = v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900610 if (idx->pos != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 seq_putc(s, ',');
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700613 seq_printf(s, "%u", idx->bit);
614
615 if (idx->pos == idx->weight - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 seq_putc(s, '\n');
617
618 return 0;
619}
620
Philippe De Muyter56b3d972007-07-10 23:07:31 -0700621static const struct seq_operations clusterip_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 .start = clusterip_seq_start,
623 .next = clusterip_seq_next,
624 .stop = clusterip_seq_stop,
625 .show = clusterip_seq_show,
626};
627
628static int clusterip_proc_open(struct inode *inode, struct file *file)
629{
630 int ret = seq_open(file, &clusterip_seq_ops);
631
632 if (!ret) {
633 struct seq_file *sf = file->private_data;
Al Virod9dda782013-03-31 18:16:14 -0400634 struct clusterip_config *c = PDE_DATA(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
Alexey Dobriyan47778142010-01-22 22:21:18 +0100636 sf->private = c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
638 clusterip_config_get(c);
639 }
640
641 return ret;
642}
643
644static int clusterip_proc_release(struct inode *inode, struct file *file)
645{
Al Virod9dda782013-03-31 18:16:14 -0400646 struct clusterip_config *c = PDE_DATA(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 int ret;
648
649 ret = seq_release(inode, file);
650
651 if (!ret)
652 clusterip_config_put(c);
653
654 return ret;
655}
656
657static ssize_t clusterip_proc_write(struct file *file, const char __user *input,
658 size_t size, loff_t *ofs)
659{
Al Virod9dda782013-03-31 18:16:14 -0400660 struct clusterip_config *c = PDE_DATA(file_inode(file));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661#define PROC_WRITELEN 10
662 char buffer[PROC_WRITELEN+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 unsigned long nodenum;
Abhijit Pawar4b5511e2012-12-09 23:12:28 +0000664 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
Vasiliy Kulikov961ed182011-03-20 15:42:52 +0100666 if (size > PROC_WRITELEN)
667 return -EIO;
668 if (copy_from_user(buffer, input, size))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 return -EFAULT;
Vasiliy Kulikov961ed182011-03-20 15:42:52 +0100670 buffer[size] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
672 if (*buffer == '+') {
Abhijit Pawar4b5511e2012-12-09 23:12:28 +0000673 rc = kstrtoul(buffer+1, 10, &nodenum);
674 if (rc)
675 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 if (clusterip_add_node(c, nodenum))
677 return -ENOMEM;
678 } else if (*buffer == '-') {
Abhijit Pawar4b5511e2012-12-09 23:12:28 +0000679 rc = kstrtoul(buffer+1, 10, &nodenum);
680 if (rc)
681 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 if (clusterip_del_node(c, nodenum))
683 return -ENOENT;
684 } else
685 return -EIO;
686
687 return size;
688}
689
Arjan van de Ven9a321442007-02-12 00:55:35 -0800690static const struct file_operations clusterip_proc_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 .owner = THIS_MODULE,
692 .open = clusterip_proc_open,
693 .read = seq_read,
694 .write = clusterip_proc_write,
695 .llseek = seq_lseek,
696 .release = clusterip_proc_release,
697};
698
699#endif /* CONFIG_PROC_FS */
700
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800701static int __init clusterip_tg_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702{
703 int ret;
704
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800705 ret = xt_register_target(&clusterip_tg_reg);
Patrick McHardy32292a72006-04-06 14:11:30 -0700706 if (ret < 0)
707 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
Patrick McHardy32292a72006-04-06 14:11:30 -0700709 ret = nf_register_hook(&cip_arp_ops);
710 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 goto cleanup_target;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
713#ifdef CONFIG_PROC_FS
Eric W. Biederman457c4cb2007-09-12 12:01:34 +0200714 clusterip_procdir = proc_mkdir("ipt_CLUSTERIP", init_net.proc_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 if (!clusterip_procdir) {
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100716 pr_err("Unable to proc dir entry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 ret = -ENOMEM;
718 goto cleanup_hook;
719 }
720#endif /* CONFIG_PROC_FS */
721
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100722 pr_info("ClusterIP Version %s loaded successfully\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 CLUSTERIP_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 return 0;
725
Patrick McHardy76592582006-11-29 02:35:42 +0100726#ifdef CONFIG_PROC_FS
Patrick McHardy32292a72006-04-06 14:11:30 -0700727cleanup_hook:
728 nf_unregister_hook(&cip_arp_ops);
Patrick McHardy76592582006-11-29 02:35:42 +0100729#endif /* CONFIG_PROC_FS */
Patrick McHardy32292a72006-04-06 14:11:30 -0700730cleanup_target:
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800731 xt_unregister_target(&clusterip_tg_reg);
Patrick McHardy32292a72006-04-06 14:11:30 -0700732 return ret;
733}
734
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800735static void __exit clusterip_tg_exit(void)
Patrick McHardy32292a72006-04-06 14:11:30 -0700736{
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100737 pr_info("ClusterIP Version %s unloading\n", CLUSTERIP_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738#ifdef CONFIG_PROC_FS
David Howellsa8ca16e2013-04-12 17:27:28 +0100739 proc_remove(clusterip_procdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 nf_unregister_hook(&cip_arp_ops);
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800742 xt_unregister_target(&clusterip_tg_reg);
Eric Dumazetd73f33b2010-06-15 13:08:51 +0200743
744 /* Wait for completion of call_rcu_bh()'s (clusterip_config_rcu_free) */
745 rcu_barrier_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746}
747
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800748module_init(clusterip_tg_init);
749module_exit(clusterip_tg_exit);