blob: 5c9e97c790172984b7d87bd2d2f40b61028184cc [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
108 remove_proc_entry(c->pde->name, c->pde->parent);
109#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 {
Jan Engelhardt7c4e36b2007-07-07 22:19:08 -0700249 if (net_ratelimit())
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100250 pr_info("unknown protocol %u\n", iph->protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 }
252
253 switch (config->hash_mode) {
254 case CLUSTERIP_HASHMODE_SIP:
255 hashval = jhash_1word(ntohl(iph->saddr),
256 config->hash_initval);
257 break;
258 case CLUSTERIP_HASHMODE_SIP_SPT:
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900259 hashval = jhash_2words(ntohl(iph->saddr), sport,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 config->hash_initval);
261 break;
262 case CLUSTERIP_HASHMODE_SIP_SPT_DPT:
263 hashval = jhash_3words(ntohl(iph->saddr), sport, dport,
264 config->hash_initval);
265 break;
266 default:
267 /* to make gcc happy */
268 hashval = 0;
269 /* This cannot happen, unless the check function wasn't called
270 * at rule load time */
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100271 pr_info("unknown mode %u\n", config->hash_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 BUG();
273 break;
274 }
275
276 /* node numbers are 1..n, not 0..n */
Patrick McHardy34498822007-12-17 22:45:52 -0800277 return (((u64)hashval * config->num_total_nodes) >> 32) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278}
279
280static inline int
Jan Engelhardta47362a2007-07-07 22:16:55 -0700281clusterip_responsible(const struct clusterip_config *config, u_int32_t hash)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282{
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700283 return test_bit(hash - 1, &config->local_nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284}
285
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900286/***********************************************************************
287 * IPTABLES TARGET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 ***********************************************************************/
289
290static unsigned int
Jan Engelhardt4b560b42009-07-05 19:43:26 +0200291clusterip_tg(struct sk_buff *skb, const struct xt_action_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292{
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200293 const struct ipt_clusterip_tgt_info *cipinfo = par->targinfo;
Patrick McHardy587aa642007-03-14 16:37:25 -0700294 struct nf_conn *ct;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 enum ip_conntrack_info ctinfo;
Patrick McHardy587aa642007-03-14 16:37:25 -0700296 u_int32_t hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
298 /* don't need to clusterip_config_get() here, since refcount
299 * is only decremented by destroy() - and ip_tables guarantees
300 * that the ->target() function isn't called after ->destroy() */
301
Herbert Xu3db05fe2007-10-15 00:53:15 -0700302 ct = nf_ct_get(skb, &ctinfo);
Eric Dumazet94d117a2011-01-18 16:27:56 +0100303 if (ct == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
306 /* special case: ICMP error handling. conntrack distinguishes between
307 * error messages (RELATED) and information requests (see below) */
Joe Perches3666ed12009-11-23 23:17:06 +0100308 if (ip_hdr(skb)->protocol == IPPROTO_ICMP &&
309 (ctinfo == IP_CT_RELATED ||
Eric Dumazetfb048832011-05-19 15:44:27 +0200310 ctinfo == IP_CT_RELATED_REPLY))
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800311 return XT_CONTINUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900313 /* ip_conntrack_icmp guarantees us that we only have ICMP_ECHO,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 * TIMESTAMP, INFO_REQUEST or ADDRESS type icmp packets from here
315 * on, which all have an ID field [relevant for hashing]. */
316
Herbert Xu3db05fe2007-10-15 00:53:15 -0700317 hash = clusterip_hashfn(skb, cipinfo->config);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
319 switch (ctinfo) {
320 case IP_CT_NEW:
Patrick McHardy587aa642007-03-14 16:37:25 -0700321 ct->mark = hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 break;
323 case IP_CT_RELATED:
Eric Dumazetfb048832011-05-19 15:44:27 +0200324 case IP_CT_RELATED_REPLY:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 /* FIXME: we don't handle expectations at the
326 * moment. they can arrive on a different node than
327 * the master connection (e.g. FTP passive mode) */
328 case IP_CT_ESTABLISHED:
Eric Dumazetfb048832011-05-19 15:44:27 +0200329 case IP_CT_ESTABLISHED_REPLY:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 break;
331 default:
332 break;
333 }
334
Patrick McHardy0d537782007-07-07 22:39:38 -0700335#ifdef DEBUG
Jan Engelhardt3c9fba62008-04-14 11:15:54 +0200336 nf_ct_dump_tuple_ip(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337#endif
Patrick McHardy0d537782007-07-07 22:39:38 -0700338 pr_debug("hash=%u ct_hash=%u ", hash, ct->mark);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 if (!clusterip_responsible(cipinfo->config, hash)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700340 pr_debug("not responsible\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 return NF_DROP;
342 }
Patrick McHardy0d537782007-07-07 22:39:38 -0700343 pr_debug("responsible\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
345 /* despite being received via linklayer multicast, this is
346 * actually a unicast IP packet. TCP doesn't like PACKET_MULTICAST */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700347 skb->pkt_type = PACKET_HOST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800349 return XT_CONTINUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350}
351
Jan Engelhardt135367b2010-03-19 17:16:42 +0100352static int clusterip_tg_check(const struct xt_tgchk_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353{
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200354 struct ipt_clusterip_tgt_info *cipinfo = par->targinfo;
355 const struct ipt_entry *e = par->entryinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 struct clusterip_config *config;
Jan Engelhardt4a5a5c72010-03-19 17:32:59 +0100357 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 if (cipinfo->hash_mode != CLUSTERIP_HASHMODE_SIP &&
360 cipinfo->hash_mode != CLUSTERIP_HASHMODE_SIP_SPT &&
361 cipinfo->hash_mode != CLUSTERIP_HASHMODE_SIP_SPT_DPT) {
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100362 pr_info("unknown mode %u\n", cipinfo->hash_mode);
Jan Engelhardtd6b00a52010-03-25 16:34:45 +0100363 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
365 }
Joe Perches3666ed12009-11-23 23:17:06 +0100366 if (e->ip.dmsk.s_addr != htonl(0xffffffff) ||
367 e->ip.dst.s_addr == 0) {
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100368 pr_info("Please specify destination IP\n");
Jan Engelhardtd6b00a52010-03-25 16:34:45 +0100369 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 }
371
372 /* FIXME: further sanity checks */
373
KOVACS Krisztian44513622005-09-16 16:59:46 -0700374 config = clusterip_config_find_get(e->ip.dst.s_addr, 1);
Patrick McHardyd3c3f422007-07-07 22:38:30 -0700375 if (!config) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 if (!(cipinfo->flags & CLUSTERIP_FLAG_NEW)) {
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100377 pr_info("no config found for %pI4, need 'new'\n",
378 &e->ip.dst.s_addr);
Jan Engelhardtd6b00a52010-03-25 16:34:45 +0100379 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 } else {
381 struct net_device *dev;
382
383 if (e->ip.iniface[0] == '\0') {
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100384 pr_info("Please specify an interface name\n");
Jan Engelhardtd6b00a52010-03-25 16:34:45 +0100385 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 }
387
Eric W. Biederman881d9662007-09-17 11:56:21 -0700388 dev = dev_get_by_name(&init_net, e->ip.iniface);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 if (!dev) {
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100390 pr_info("no such interface %s\n",
391 e->ip.iniface);
Jan Engelhardt4a5a5c72010-03-19 17:32:59 +0100392 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 }
394
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900395 config = clusterip_config_init(cipinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 e->ip.dst.s_addr, dev);
397 if (!config) {
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100398 pr_info("cannot allocate config\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 dev_put(dev);
Jan Engelhardt4a5a5c72010-03-19 17:32:59 +0100400 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 }
Jiri Pirko22bedad32010-04-01 21:22:57 +0000402 dev_mc_add(config->dev, config->clustermac);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 }
404 }
Patrick McHardyd3c3f422007-07-07 22:38:30 -0700405 cipinfo->config = config;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Jan Engelhardt4a5a5c72010-03-19 17:32:59 +0100407 ret = nf_ct_l3proto_try_module_get(par->family);
Jan Engelhardtf95c74e2010-03-21 04:05:56 +0100408 if (ret < 0)
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100409 pr_info("cannot load conntrack support for proto=%u\n",
410 par->family);
Jan Engelhardtf95c74e2010-03-21 04:05:56 +0100411 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412}
413
414/* drop reference count of cluster config when rule is deleted */
Jan Engelhardta2df1642008-10-08 11:35:19 +0200415static void clusterip_tg_destroy(const struct xt_tgdtor_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416{
Jan Engelhardta2df1642008-10-08 11:35:19 +0200417 const struct ipt_clusterip_tgt_info *cipinfo = par->targinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
KOVACS Krisztian44513622005-09-16 16:59:46 -0700419 /* if no more entries are referencing the config, remove it
420 * from the list and destroy the proc entry */
421 clusterip_config_entry_put(cipinfo->config);
422
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 clusterip_config_put(cipinfo->config);
Yasuyuki Kozakai11078c32006-12-12 00:29:02 -0800424
Jan Engelhardt0d345452010-03-19 18:47:51 +0100425 nf_ct_l3proto_module_put(par->family);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426}
427
Patrick McHardyd3c3f422007-07-07 22:38:30 -0700428#ifdef CONFIG_COMPAT
429struct compat_ipt_clusterip_tgt_info
430{
431 u_int32_t flags;
432 u_int8_t clustermac[6];
433 u_int16_t num_total_nodes;
434 u_int16_t num_local_nodes;
435 u_int16_t local_nodes[CLUSTERIP_MAX_NODES];
436 u_int32_t hash_mode;
437 u_int32_t hash_initval;
438 compat_uptr_t config;
439};
440#endif /* CONFIG_COMPAT */
441
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800442static struct xt_target clusterip_tg_reg __read_mostly = {
Patrick McHardy1d5cd902006-03-20 18:01:14 -0800443 .name = "CLUSTERIP",
Jan Engelhardtee999d82008-10-08 11:35:01 +0200444 .family = NFPROTO_IPV4,
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800445 .target = clusterip_tg,
446 .checkentry = clusterip_tg_check,
447 .destroy = clusterip_tg_destroy,
Patrick McHardyd3c3f422007-07-07 22:38:30 -0700448 .targetsize = sizeof(struct ipt_clusterip_tgt_info),
449#ifdef CONFIG_COMPAT
450 .compatsize = sizeof(struct compat_ipt_clusterip_tgt_info),
451#endif /* CONFIG_COMPAT */
Patrick McHardy1d5cd902006-03-20 18:01:14 -0800452 .me = THIS_MODULE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453};
454
455
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900456/***********************************************************************
457 * ARP MANGLING CODE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 ***********************************************************************/
459
460/* hardcoded for 48bit ethernet and 32bit ipv4 addresses */
461struct arp_payload {
462 u_int8_t src_hw[ETH_ALEN];
Al Viro6a19d612006-09-28 14:22:24 -0700463 __be32 src_ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 u_int8_t dst_hw[ETH_ALEN];
Al Viro6a19d612006-09-28 14:22:24 -0700465 __be32 dst_ip;
Gustavo F. Padovan3f30fc12010-07-21 10:59:58 +0000466} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
Patrick McHardy0d537782007-07-07 22:39:38 -0700468#ifdef DEBUG
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900469static void arp_print(struct arp_payload *payload)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470{
471#define HBUFFERLEN 30
472 char hbuffer[HBUFFERLEN];
473 int j,k;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
475 for (k=0, j=0; k < HBUFFERLEN-3 && j < ETH_ALEN; j++) {
Harvey Harrison6a8341b2008-07-30 16:30:15 -0700476 hbuffer[k++] = hex_asc_hi(payload->src_hw[j]);
477 hbuffer[k++] = hex_asc_lo(payload->src_hw[j]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 hbuffer[k++]=':';
479 }
480 hbuffer[--k]='\0';
481
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100482 pr_debug("src %pI4@%s, dst %pI4\n",
483 &payload->src_ip, hbuffer, &payload->dst_ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484}
485#endif
486
487static unsigned int
488arp_mangle(unsigned int hook,
Herbert Xu3db05fe2007-10-15 00:53:15 -0700489 struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 const struct net_device *in,
491 const struct net_device *out,
492 int (*okfn)(struct sk_buff *))
493{
Herbert Xu3db05fe2007-10-15 00:53:15 -0700494 struct arphdr *arp = arp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 struct arp_payload *payload;
496 struct clusterip_config *c;
497
498 /* we don't care about non-ethernet and non-ipv4 ARP */
Joe Perches3666ed12009-11-23 23:17:06 +0100499 if (arp->ar_hrd != htons(ARPHRD_ETHER) ||
500 arp->ar_pro != htons(ETH_P_IP) ||
501 arp->ar_pln != 4 || arp->ar_hln != ETH_ALEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 return NF_ACCEPT;
503
Harald Welte4095ebf2005-06-28 12:49:30 -0700504 /* we only want to mangle arp requests and replies */
Joe Perches3666ed12009-11-23 23:17:06 +0100505 if (arp->ar_op != htons(ARPOP_REPLY) &&
506 arp->ar_op != htons(ARPOP_REQUEST))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 return NF_ACCEPT;
508
509 payload = (void *)(arp+1);
510
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900511 /* if there is no clusterip configuration for the arp reply's
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 * source ip, we don't want to mangle it */
KOVACS Krisztian44513622005-09-16 16:59:46 -0700513 c = clusterip_config_find_get(payload->src_ip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 if (!c)
515 return NF_ACCEPT;
516
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900517 /* normally the linux kernel always replies to arp queries of
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 * addresses on different interfacs. However, in the CLUSTERIP case
519 * this wouldn't work, since we didn't subscribe the mcast group on
520 * other interfaces */
521 if (c->dev != out) {
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100522 pr_debug("not mangling arp reply on different "
Patrick McHardy0d537782007-07-07 22:39:38 -0700523 "interface: cip'%s'-skb'%s'\n",
524 c->dev->name, out->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 clusterip_config_put(c);
526 return NF_ACCEPT;
527 }
528
529 /* mangle reply hardware address */
530 memcpy(payload->src_hw, c->clustermac, arp->ar_hln);
531
Patrick McHardy0d537782007-07-07 22:39:38 -0700532#ifdef DEBUG
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100533 pr_debug("mangled arp reply: ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 arp_print(payload);
535#endif
536
537 clusterip_config_put(c);
538
539 return NF_ACCEPT;
540}
541
Patrick McHardy19994142007-12-05 01:23:00 -0800542static struct nf_hook_ops cip_arp_ops __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 .hook = arp_mangle,
Jan Engelhardtee999d82008-10-08 11:35:01 +0200544 .pf = NFPROTO_ARP,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 .hooknum = NF_ARP_OUT,
546 .priority = -1
547};
548
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900549/***********************************************************************
550 * PROC DIR HANDLING
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 ***********************************************************************/
552
553#ifdef CONFIG_PROC_FS
554
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700555struct clusterip_seq_position {
556 unsigned int pos; /* position */
557 unsigned int weight; /* number of bits set == size */
558 unsigned int bit; /* current bit */
559 unsigned long val; /* current value */
560};
561
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562static void *clusterip_seq_start(struct seq_file *s, loff_t *pos)
563{
Alexey Dobriyan47778142010-01-22 22:21:18 +0100564 struct clusterip_config *c = s->private;
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700565 unsigned int weight;
566 u_int32_t local_nodes;
567 struct clusterip_seq_position *idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700569 /* FIXME: possible race */
570 local_nodes = c->local_nodes;
571 weight = hweight32(local_nodes);
572 if (*pos >= weight)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 return NULL;
574
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700575 idx = kmalloc(sizeof(struct clusterip_seq_position), GFP_KERNEL);
576 if (!idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 return ERR_PTR(-ENOMEM);
578
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700579 idx->pos = *pos;
580 idx->weight = weight;
581 idx->bit = ffs(local_nodes);
582 idx->val = local_nodes;
583 clear_bit(idx->bit - 1, &idx->val);
584
585 return idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586}
587
588static void *clusterip_seq_next(struct seq_file *s, void *v, loff_t *pos)
589{
Jan Engelhardt3cf93c92008-04-14 09:56:05 +0200590 struct clusterip_seq_position *idx = v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700592 *pos = ++idx->pos;
593 if (*pos >= idx->weight) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 kfree(v);
595 return NULL;
596 }
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700597 idx->bit = ffs(idx->val);
598 clear_bit(idx->bit - 1, &idx->val);
599 return idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600}
601
602static void clusterip_seq_stop(struct seq_file *s, void *v)
603{
Eric Dumazet902a3dd2010-04-01 12:54:09 +0200604 if (!IS_ERR(v))
605 kfree(v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606}
607
608static int clusterip_seq_show(struct seq_file *s, void *v)
609{
Jan Engelhardt3cf93c92008-04-14 09:56:05 +0200610 struct clusterip_seq_position *idx = v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900612 if (idx->pos != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 seq_putc(s, ',');
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700615 seq_printf(s, "%u", idx->bit);
616
617 if (idx->pos == idx->weight - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 seq_putc(s, '\n');
619
620 return 0;
621}
622
Philippe De Muyter56b3d972007-07-10 23:07:31 -0700623static const struct seq_operations clusterip_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 .start = clusterip_seq_start,
625 .next = clusterip_seq_next,
626 .stop = clusterip_seq_stop,
627 .show = clusterip_seq_show,
628};
629
630static int clusterip_proc_open(struct inode *inode, struct file *file)
631{
632 int ret = seq_open(file, &clusterip_seq_ops);
633
634 if (!ret) {
635 struct seq_file *sf = file->private_data;
Alexey Dobriyan47778142010-01-22 22:21:18 +0100636 struct clusterip_config *c = PDE(inode)->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
Alexey Dobriyan47778142010-01-22 22:21:18 +0100638 sf->private = c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
640 clusterip_config_get(c);
641 }
642
643 return ret;
644}
645
646static int clusterip_proc_release(struct inode *inode, struct file *file)
647{
Alexey Dobriyan47778142010-01-22 22:21:18 +0100648 struct clusterip_config *c = PDE(inode)->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 int ret;
650
651 ret = seq_release(inode, file);
652
653 if (!ret)
654 clusterip_config_put(c);
655
656 return ret;
657}
658
659static ssize_t clusterip_proc_write(struct file *file, const char __user *input,
660 size_t size, loff_t *ofs)
661{
Alexey Dobriyan47778142010-01-22 22:21:18 +0100662 struct clusterip_config *c = PDE(file->f_path.dentry->d_inode)->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663#define PROC_WRITELEN 10
664 char buffer[PROC_WRITELEN+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 unsigned long nodenum;
666
Vasiliy Kulikov961ed182011-03-20 15:42:52 +0100667 if (size > PROC_WRITELEN)
668 return -EIO;
669 if (copy_from_user(buffer, input, size))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 return -EFAULT;
Vasiliy Kulikov961ed182011-03-20 15:42:52 +0100671 buffer[size] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
673 if (*buffer == '+') {
674 nodenum = simple_strtoul(buffer+1, NULL, 10);
675 if (clusterip_add_node(c, nodenum))
676 return -ENOMEM;
677 } else if (*buffer == '-') {
678 nodenum = simple_strtoul(buffer+1, NULL,10);
679 if (clusterip_del_node(c, nodenum))
680 return -ENOENT;
681 } else
682 return -EIO;
683
684 return size;
685}
686
Arjan van de Ven9a321442007-02-12 00:55:35 -0800687static const struct file_operations clusterip_proc_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 .owner = THIS_MODULE,
689 .open = clusterip_proc_open,
690 .read = seq_read,
691 .write = clusterip_proc_write,
692 .llseek = seq_lseek,
693 .release = clusterip_proc_release,
694};
695
696#endif /* CONFIG_PROC_FS */
697
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800698static int __init clusterip_tg_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699{
700 int ret;
701
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800702 ret = xt_register_target(&clusterip_tg_reg);
Patrick McHardy32292a72006-04-06 14:11:30 -0700703 if (ret < 0)
704 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
Patrick McHardy32292a72006-04-06 14:11:30 -0700706 ret = nf_register_hook(&cip_arp_ops);
707 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 goto cleanup_target;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
710#ifdef CONFIG_PROC_FS
Eric W. Biederman457c4cb2007-09-12 12:01:34 +0200711 clusterip_procdir = proc_mkdir("ipt_CLUSTERIP", init_net.proc_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 if (!clusterip_procdir) {
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100713 pr_err("Unable to proc dir entry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 ret = -ENOMEM;
715 goto cleanup_hook;
716 }
717#endif /* CONFIG_PROC_FS */
718
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100719 pr_info("ClusterIP Version %s loaded successfully\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 CLUSTERIP_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 return 0;
722
Patrick McHardy76592582006-11-29 02:35:42 +0100723#ifdef CONFIG_PROC_FS
Patrick McHardy32292a72006-04-06 14:11:30 -0700724cleanup_hook:
725 nf_unregister_hook(&cip_arp_ops);
Patrick McHardy76592582006-11-29 02:35:42 +0100726#endif /* CONFIG_PROC_FS */
Patrick McHardy32292a72006-04-06 14:11:30 -0700727cleanup_target:
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800728 xt_unregister_target(&clusterip_tg_reg);
Patrick McHardy32292a72006-04-06 14:11:30 -0700729 return ret;
730}
731
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800732static void __exit clusterip_tg_exit(void)
Patrick McHardy32292a72006-04-06 14:11:30 -0700733{
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100734 pr_info("ClusterIP Version %s unloading\n", CLUSTERIP_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735#ifdef CONFIG_PROC_FS
736 remove_proc_entry(clusterip_procdir->name, clusterip_procdir->parent);
737#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 nf_unregister_hook(&cip_arp_ops);
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800739 xt_unregister_target(&clusterip_tg_reg);
Eric Dumazetd73f33b2010-06-15 13:08:51 +0200740
741 /* Wait for completion of call_rcu_bh()'s (clusterip_config_rcu_free) */
742 rcu_barrier_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743}
744
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800745module_init(clusterip_tg_init);
746module_exit(clusterip_tg_exit);