blob: 2e4f98b85524ab6fa7baf8c945dc2017e90fcfff [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 */
12#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/proc_fs.h>
14#include <linux/jhash.h>
KOVACS Krisztian136e92b2005-09-16 17:00:04 -070015#include <linux/bitops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/skbuff.h>
17#include <linux/ip.h>
18#include <linux/tcp.h>
19#include <linux/udp.h>
20#include <linux/icmp.h>
21#include <linux/if_arp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/netfilter_arp.h>
Jan Engelhardt6709dbb2007-02-07 15:11:19 -080024#include <linux/netfilter/x_tables.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/netfilter_ipv4/ip_tables.h>
26#include <linux/netfilter_ipv4/ipt_CLUSTERIP.h>
Patrick McHardy587aa642007-03-14 16:37:25 -070027#include <net/netfilter/nf_conntrack.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020028#include <net/net_namespace.h>
Patrick McHardy587aa642007-03-14 16:37:25 -070029#include <net/checksum.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
KOVACS Krisztian136e92b2005-09-16 17:00:04 -070031#define CLUSTERIP_VERSION "0.8"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Linus Torvalds1da177e2005-04-16 15:20:36 -070033MODULE_LICENSE("GPL");
34MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
Jan Engelhardt2ae15b62008-01-14 23:42:28 -080035MODULE_DESCRIPTION("Xtables: CLUSTERIP target");
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37struct clusterip_config {
38 struct list_head list; /* list of all configs */
39 atomic_t refcount; /* reference count */
KOVACS Krisztian44513622005-09-16 16:59:46 -070040 atomic_t entries; /* number of entries/rules
41 * referencing us */
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Al Viro6a19d612006-09-28 14:22:24 -070043 __be32 clusterip; /* the IP address */
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 u_int8_t clustermac[ETH_ALEN]; /* the MAC address */
45 struct net_device *dev; /* device */
46 u_int16_t num_total_nodes; /* total number of nodes */
KOVACS Krisztian136e92b2005-09-16 17:00:04 -070047 unsigned long local_nodes; /* node number array */
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49#ifdef CONFIG_PROC_FS
50 struct proc_dir_entry *pde; /* proc dir entry */
51#endif
52 enum clusterip_hashmode hash_mode; /* which hashing mode */
53 u_int32_t hash_initval; /* hash initialization */
54};
55
56static LIST_HEAD(clusterip_configs);
57
KOVACS Krisztian136e92b2005-09-16 17:00:04 -070058/* clusterip_lock protects the clusterip_configs list */
Patrick McHardye45b1be2005-06-21 14:01:30 -070059static DEFINE_RWLOCK(clusterip_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61#ifdef CONFIG_PROC_FS
Arjan van de Ven9a321442007-02-12 00:55:35 -080062static const struct file_operations clusterip_proc_fops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063static struct proc_dir_entry *clusterip_procdir;
64#endif
65
66static inline void
KOVACS Krisztian44513622005-09-16 16:59:46 -070067clusterip_config_get(struct clusterip_config *c)
68{
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 atomic_inc(&c->refcount);
70}
71
72static inline void
KOVACS Krisztian44513622005-09-16 16:59:46 -070073clusterip_config_put(struct clusterip_config *c)
74{
75 if (atomic_dec_and_test(&c->refcount))
76 kfree(c);
77}
78
KOVACS Krisztian44513622005-09-16 16:59:46 -070079/* decrease the count of entries using/referencing this config. If last
80 * entry(rule) is removed, remove the config from lists, but don't free it
81 * yet, since proc-files could still be holding references */
82static inline void
83clusterip_config_entry_put(struct clusterip_config *c)
84{
Pavel Emelyanov4dee9592008-04-14 00:44:52 -070085 write_lock_bh(&clusterip_lock);
KOVACS Krisztian44513622005-09-16 16:59:46 -070086 if (atomic_dec_and_test(&c->entries)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 list_del(&c->list);
Patrick McHardye45b1be2005-06-21 14:01:30 -070088 write_unlock_bh(&clusterip_lock);
KOVACS Krisztian44513622005-09-16 16:59:46 -070089
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 dev_mc_delete(c->dev, c->clustermac, ETH_ALEN, 0);
91 dev_put(c->dev);
KOVACS Krisztian44513622005-09-16 16:59:46 -070092
93 /* In case anyone still accesses the file, the open/close
94 * functions are also incrementing the refcount on their own,
95 * so it's safe to remove the entry even if it's in use. */
96#ifdef CONFIG_PROC_FS
97 remove_proc_entry(c->pde->name, c->pde->parent);
98#endif
Pavel Emelyanov4dee9592008-04-14 00:44:52 -070099 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 }
Pavel Emelyanov4dee9592008-04-14 00:44:52 -0700101 write_unlock_bh(&clusterip_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102}
103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104static struct clusterip_config *
Al Viro6a19d612006-09-28 14:22:24 -0700105__clusterip_config_find(__be32 clusterip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106{
Li Zefan4c610972007-12-04 23:22:26 -0800107 struct clusterip_config *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Li Zefan4c610972007-12-04 23:22:26 -0800109 list_for_each_entry(c, &clusterip_configs, list) {
Jan Engelhardt7c4e36b2007-07-07 22:19:08 -0700110 if (c->clusterip == clusterip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 return c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 }
113
114 return NULL;
115}
116
117static inline struct clusterip_config *
Al Viro6a19d612006-09-28 14:22:24 -0700118clusterip_config_find_get(__be32 clusterip, int entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119{
120 struct clusterip_config *c;
121
Patrick McHardye45b1be2005-06-21 14:01:30 -0700122 read_lock_bh(&clusterip_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 c = __clusterip_config_find(clusterip);
124 if (!c) {
Patrick McHardye45b1be2005-06-21 14:01:30 -0700125 read_unlock_bh(&clusterip_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 return NULL;
127 }
128 atomic_inc(&c->refcount);
KOVACS Krisztian44513622005-09-16 16:59:46 -0700129 if (entry)
130 atomic_inc(&c->entries);
Patrick McHardye45b1be2005-06-21 14:01:30 -0700131 read_unlock_bh(&clusterip_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
133 return c;
134}
135
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700136static void
137clusterip_config_init_nodelist(struct clusterip_config *c,
138 const struct ipt_clusterip_tgt_info *i)
139{
140 int n;
141
Jan Engelhardt7c4e36b2007-07-07 22:19:08 -0700142 for (n = 0; n < i->num_local_nodes; n++)
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700143 set_bit(i->local_nodes[n] - 1, &c->local_nodes);
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700144}
145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146static struct clusterip_config *
Jan Engelhardt3cf93c92008-04-14 09:56:05 +0200147clusterip_config_init(const struct ipt_clusterip_tgt_info *i, __be32 ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 struct net_device *dev)
149{
150 struct clusterip_config *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700152 c = kzalloc(sizeof(*c), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 if (!c)
154 return NULL;
155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 c->dev = dev;
157 c->clusterip = ip;
158 memcpy(&c->clustermac, &i->clustermac, ETH_ALEN);
159 c->num_total_nodes = i->num_total_nodes;
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700160 clusterip_config_init_nodelist(c, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 c->hash_mode = i->hash_mode;
162 c->hash_initval = i->hash_initval;
163 atomic_set(&c->refcount, 1);
KOVACS Krisztian44513622005-09-16 16:59:46 -0700164 atomic_set(&c->entries, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
166#ifdef CONFIG_PROC_FS
Patrick McHardy76592582006-11-29 02:35:42 +0100167 {
168 char buffer[16];
169
170 /* create proc dir entry */
Harvey Harrisoncffee382008-10-31 00:53:08 -0700171 sprintf(buffer, "%pI4", &ip);
Denis V. Lunev6e79d852008-05-02 02:45:42 -0700172 c->pde = proc_create_data(buffer, S_IWUSR|S_IRUSR,
173 clusterip_procdir,
174 &clusterip_proc_fops, c);
Patrick McHardy76592582006-11-29 02:35:42 +0100175 if (!c->pde) {
176 kfree(c);
177 return NULL;
178 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180#endif
181
Patrick McHardye45b1be2005-06-21 14:01:30 -0700182 write_lock_bh(&clusterip_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 list_add(&c->list, &clusterip_configs);
Patrick McHardye45b1be2005-06-21 14:01:30 -0700184 write_unlock_bh(&clusterip_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
186 return c;
187}
188
Patrick McHardy76592582006-11-29 02:35:42 +0100189#ifdef CONFIG_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190static int
191clusterip_add_node(struct clusterip_config *c, u_int16_t nodenum)
192{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700194 if (nodenum == 0 ||
195 nodenum > c->num_total_nodes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700198 /* check if we already have this number in our bitfield */
199 if (test_and_set_bit(nodenum - 1, &c->local_nodes))
200 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 return 0;
203}
204
Jan Engelhardte1931b72007-07-07 22:16:26 -0700205static bool
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206clusterip_del_node(struct clusterip_config *c, u_int16_t nodenum)
207{
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700208 if (nodenum == 0 ||
209 nodenum > c->num_total_nodes)
Jan Engelhardte1931b72007-07-07 22:16:26 -0700210 return true;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900211
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700212 if (test_and_clear_bit(nodenum - 1, &c->local_nodes))
Jan Engelhardte1931b72007-07-07 22:16:26 -0700213 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
Jan Engelhardte1931b72007-07-07 22:16:26 -0700215 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216}
Patrick McHardy76592582006-11-29 02:35:42 +0100217#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
219static inline u_int32_t
Jan Engelhardta47362a2007-07-07 22:16:55 -0700220clusterip_hashfn(const struct sk_buff *skb,
221 const struct clusterip_config *config)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
Jan Engelhardta47362a2007-07-07 22:16:55 -0700223 const struct iphdr *iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 unsigned long hashval;
225 u_int16_t sport, dport;
Jan Engelhardta47362a2007-07-07 22:16:55 -0700226 const u_int16_t *ports;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228 switch (iph->protocol) {
229 case IPPROTO_TCP:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 case IPPROTO_UDP:
Patrick McHardya8d0f952007-02-07 15:07:43 -0800231 case IPPROTO_UDPLITE:
Patrick McHardy957dc802006-05-29 18:19:56 -0700232 case IPPROTO_SCTP:
233 case IPPROTO_DCCP:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 case IPPROTO_ICMP:
Jan Engelhardta47362a2007-07-07 22:16:55 -0700235 ports = (const void *)iph+iph->ihl*4;
Patrick McHardy957dc802006-05-29 18:19:56 -0700236 sport = ports[0];
237 dport = ports[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 break;
239 default:
Jan Engelhardt7c4e36b2007-07-07 22:19:08 -0700240 if (net_ratelimit())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 printk(KERN_NOTICE "CLUSTERIP: unknown protocol `%u'\n",
242 iph->protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 sport = dport = 0;
244 }
245
246 switch (config->hash_mode) {
247 case CLUSTERIP_HASHMODE_SIP:
248 hashval = jhash_1word(ntohl(iph->saddr),
249 config->hash_initval);
250 break;
251 case CLUSTERIP_HASHMODE_SIP_SPT:
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900252 hashval = jhash_2words(ntohl(iph->saddr), sport,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 config->hash_initval);
254 break;
255 case CLUSTERIP_HASHMODE_SIP_SPT_DPT:
256 hashval = jhash_3words(ntohl(iph->saddr), sport, dport,
257 config->hash_initval);
258 break;
259 default:
260 /* to make gcc happy */
261 hashval = 0;
262 /* This cannot happen, unless the check function wasn't called
263 * at rule load time */
264 printk("CLUSTERIP: unknown mode `%u'\n", config->hash_mode);
265 BUG();
266 break;
267 }
268
269 /* node numbers are 1..n, not 0..n */
Patrick McHardy34498822007-12-17 22:45:52 -0800270 return (((u64)hashval * config->num_total_nodes) >> 32) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271}
272
273static inline int
Jan Engelhardta47362a2007-07-07 22:16:55 -0700274clusterip_responsible(const struct clusterip_config *config, u_int32_t hash)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275{
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700276 return test_bit(hash - 1, &config->local_nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277}
278
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900279/***********************************************************************
280 * IPTABLES TARGET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 ***********************************************************************/
282
283static unsigned int
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200284clusterip_tg(struct sk_buff *skb, const struct xt_target_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285{
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200286 const struct ipt_clusterip_tgt_info *cipinfo = par->targinfo;
Patrick McHardy587aa642007-03-14 16:37:25 -0700287 struct nf_conn *ct;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 enum ip_conntrack_info ctinfo;
Patrick McHardy587aa642007-03-14 16:37:25 -0700289 u_int32_t hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
291 /* don't need to clusterip_config_get() here, since refcount
292 * is only decremented by destroy() - and ip_tables guarantees
293 * that the ->target() function isn't called after ->destroy() */
294
Herbert Xu3db05fe2007-10-15 00:53:15 -0700295 ct = nf_ct_get(skb, &ctinfo);
Patrick McHardy587aa642007-03-14 16:37:25 -0700296 if (ct == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 printk(KERN_ERR "CLUSTERIP: no conntrack!\n");
298 /* FIXME: need to drop invalid ones, since replies
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900299 * to outgoing connections of other nodes will be
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 * marked as INVALID */
301 return NF_DROP;
302 }
303
304 /* special case: ICMP error handling. conntrack distinguishes between
305 * error messages (RELATED) and information requests (see below) */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700306 if (ip_hdr(skb)->protocol == IPPROTO_ICMP
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900307 && (ctinfo == IP_CT_RELATED
Harald Welte5d927eb2005-06-22 12:37:50 -0700308 || ctinfo == IP_CT_RELATED+IP_CT_IS_REPLY))
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800309 return XT_CONTINUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900311 /* ip_conntrack_icmp guarantees us that we only have ICMP_ECHO,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 * TIMESTAMP, INFO_REQUEST or ADDRESS type icmp packets from here
313 * on, which all have an ID field [relevant for hashing]. */
314
Herbert Xu3db05fe2007-10-15 00:53:15 -0700315 hash = clusterip_hashfn(skb, cipinfo->config);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
317 switch (ctinfo) {
318 case IP_CT_NEW:
Patrick McHardy587aa642007-03-14 16:37:25 -0700319 ct->mark = hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 break;
321 case IP_CT_RELATED:
322 case IP_CT_RELATED+IP_CT_IS_REPLY:
323 /* FIXME: we don't handle expectations at the
324 * moment. they can arrive on a different node than
325 * the master connection (e.g. FTP passive mode) */
326 case IP_CT_ESTABLISHED:
327 case IP_CT_ESTABLISHED+IP_CT_IS_REPLY:
328 break;
329 default:
330 break;
331 }
332
Patrick McHardy0d537782007-07-07 22:39:38 -0700333#ifdef DEBUG
Jan Engelhardt3c9fba62008-04-14 11:15:54 +0200334 nf_ct_dump_tuple_ip(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335#endif
Patrick McHardy0d537782007-07-07 22:39:38 -0700336 pr_debug("hash=%u ct_hash=%u ", hash, ct->mark);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 if (!clusterip_responsible(cipinfo->config, hash)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700338 pr_debug("not responsible\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 return NF_DROP;
340 }
Patrick McHardy0d537782007-07-07 22:39:38 -0700341 pr_debug("responsible\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
343 /* despite being received via linklayer multicast, this is
344 * actually a unicast IP packet. TCP doesn't like PACKET_MULTICAST */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700345 skb->pkt_type = PACKET_HOST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800347 return XT_CONTINUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348}
349
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200350static bool clusterip_tg_check(const struct xt_tgchk_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351{
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200352 struct ipt_clusterip_tgt_info *cipinfo = par->targinfo;
353 const struct ipt_entry *e = par->entryinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
355 struct clusterip_config *config;
356
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 if (cipinfo->hash_mode != CLUSTERIP_HASHMODE_SIP &&
358 cipinfo->hash_mode != CLUSTERIP_HASHMODE_SIP_SPT &&
359 cipinfo->hash_mode != CLUSTERIP_HASHMODE_SIP_SPT_DPT) {
360 printk(KERN_WARNING "CLUSTERIP: unknown mode `%u'\n",
361 cipinfo->hash_mode);
Jan Engelhardte1931b72007-07-07 22:16:26 -0700362 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
364 }
Al Viro6a19d612006-09-28 14:22:24 -0700365 if (e->ip.dmsk.s_addr != htonl(0xffffffff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 || e->ip.dst.s_addr == 0) {
367 printk(KERN_ERR "CLUSTERIP: Please specify destination IP\n");
Jan Engelhardte1931b72007-07-07 22:16:26 -0700368 return false;
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)) {
Harvey Harrisoncffee382008-10-31 00:53:08 -0700376 printk(KERN_WARNING "CLUSTERIP: no config found for %pI4, need 'new'\n", &e->ip.dst.s_addr);
Jan Engelhardte1931b72007-07-07 22:16:26 -0700377 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 } else {
379 struct net_device *dev;
380
381 if (e->ip.iniface[0] == '\0') {
382 printk(KERN_WARNING "CLUSTERIP: Please specify an interface name\n");
Jan Engelhardte1931b72007-07-07 22:16:26 -0700383 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 }
385
Eric W. Biederman881d9662007-09-17 11:56:21 -0700386 dev = dev_get_by_name(&init_net, e->ip.iniface);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 if (!dev) {
388 printk(KERN_WARNING "CLUSTERIP: no such interface %s\n", e->ip.iniface);
Jan Engelhardte1931b72007-07-07 22:16:26 -0700389 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 }
391
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900392 config = clusterip_config_init(cipinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 e->ip.dst.s_addr, dev);
394 if (!config) {
395 printk(KERN_WARNING "CLUSTERIP: cannot allocate config\n");
396 dev_put(dev);
Jan Engelhardte1931b72007-07-07 22:16:26 -0700397 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 }
399 dev_mc_add(config->dev,config->clustermac, ETH_ALEN, 0);
400 }
401 }
Patrick McHardyd3c3f422007-07-07 22:38:30 -0700402 cipinfo->config = config;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200404 if (nf_ct_l3proto_try_module_get(par->target->family) < 0) {
Yasuyuki Kozakai11078c32006-12-12 00:29:02 -0800405 printk(KERN_WARNING "can't load conntrack support for "
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200406 "proto=%u\n", par->target->family);
Jan Engelhardte1931b72007-07-07 22:16:26 -0700407 return false;
Yasuyuki Kozakai11078c32006-12-12 00:29:02 -0800408 }
409
Jan Engelhardte1931b72007-07-07 22:16:26 -0700410 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411}
412
413/* drop reference count of cluster config when rule is deleted */
Jan Engelhardta2df1642008-10-08 11:35:19 +0200414static void clusterip_tg_destroy(const struct xt_tgdtor_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415{
Jan Engelhardta2df1642008-10-08 11:35:19 +0200416 const struct ipt_clusterip_tgt_info *cipinfo = par->targinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
KOVACS Krisztian44513622005-09-16 16:59:46 -0700418 /* if no more entries are referencing the config, remove it
419 * from the list and destroy the proc entry */
420 clusterip_config_entry_put(cipinfo->config);
421
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 clusterip_config_put(cipinfo->config);
Yasuyuki Kozakai11078c32006-12-12 00:29:02 -0800423
Jan Engelhardta2df1642008-10-08 11:35:19 +0200424 nf_ct_l3proto_module_put(par->target->family);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425}
426
Patrick McHardyd3c3f422007-07-07 22:38:30 -0700427#ifdef CONFIG_COMPAT
428struct compat_ipt_clusterip_tgt_info
429{
430 u_int32_t flags;
431 u_int8_t clustermac[6];
432 u_int16_t num_total_nodes;
433 u_int16_t num_local_nodes;
434 u_int16_t local_nodes[CLUSTERIP_MAX_NODES];
435 u_int32_t hash_mode;
436 u_int32_t hash_initval;
437 compat_uptr_t config;
438};
439#endif /* CONFIG_COMPAT */
440
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800441static struct xt_target clusterip_tg_reg __read_mostly = {
Patrick McHardy1d5cd902006-03-20 18:01:14 -0800442 .name = "CLUSTERIP",
Jan Engelhardtee999d82008-10-08 11:35:01 +0200443 .family = NFPROTO_IPV4,
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800444 .target = clusterip_tg,
445 .checkentry = clusterip_tg_check,
446 .destroy = clusterip_tg_destroy,
Patrick McHardyd3c3f422007-07-07 22:38:30 -0700447 .targetsize = sizeof(struct ipt_clusterip_tgt_info),
448#ifdef CONFIG_COMPAT
449 .compatsize = sizeof(struct compat_ipt_clusterip_tgt_info),
450#endif /* CONFIG_COMPAT */
Patrick McHardy1d5cd902006-03-20 18:01:14 -0800451 .me = THIS_MODULE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452};
453
454
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900455/***********************************************************************
456 * ARP MANGLING CODE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 ***********************************************************************/
458
459/* hardcoded for 48bit ethernet and 32bit ipv4 addresses */
460struct arp_payload {
461 u_int8_t src_hw[ETH_ALEN];
Al Viro6a19d612006-09-28 14:22:24 -0700462 __be32 src_ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 u_int8_t dst_hw[ETH_ALEN];
Al Viro6a19d612006-09-28 14:22:24 -0700464 __be32 dst_ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465} __attribute__ ((packed));
466
Patrick McHardy0d537782007-07-07 22:39:38 -0700467#ifdef DEBUG
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900468static void arp_print(struct arp_payload *payload)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469{
470#define HBUFFERLEN 30
471 char hbuffer[HBUFFERLEN];
472 int j,k;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
474 for (k=0, j=0; k < HBUFFERLEN-3 && j < ETH_ALEN; j++) {
Harvey Harrison6a8341b2008-07-30 16:30:15 -0700475 hbuffer[k++] = hex_asc_hi(payload->src_hw[j]);
476 hbuffer[k++] = hex_asc_lo(payload->src_hw[j]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 hbuffer[k++]=':';
478 }
479 hbuffer[--k]='\0';
480
Harvey Harrisoncffee382008-10-31 00:53:08 -0700481 printk("src %pI4@%s, dst %pI4\n",
482 &payload->src_ip, hbuffer, &payload->dst_ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483}
484#endif
485
486static unsigned int
487arp_mangle(unsigned int hook,
Herbert Xu3db05fe2007-10-15 00:53:15 -0700488 struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 const struct net_device *in,
490 const struct net_device *out,
491 int (*okfn)(struct sk_buff *))
492{
Herbert Xu3db05fe2007-10-15 00:53:15 -0700493 struct arphdr *arp = arp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 struct arp_payload *payload;
495 struct clusterip_config *c;
496
497 /* we don't care about non-ethernet and non-ipv4 ARP */
498 if (arp->ar_hrd != htons(ARPHRD_ETHER)
499 || arp->ar_pro != htons(ETH_P_IP)
500 || arp->ar_pln != 4 || arp->ar_hln != ETH_ALEN)
501 return NF_ACCEPT;
502
Harald Welte4095ebf2005-06-28 12:49:30 -0700503 /* we only want to mangle arp requests and replies */
504 if (arp->ar_op != htons(ARPOP_REPLY)
505 && arp->ar_op != htons(ARPOP_REQUEST))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 return NF_ACCEPT;
507
508 payload = (void *)(arp+1);
509
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900510 /* if there is no clusterip configuration for the arp reply's
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 * source ip, we don't want to mangle it */
KOVACS Krisztian44513622005-09-16 16:59:46 -0700512 c = clusterip_config_find_get(payload->src_ip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 if (!c)
514 return NF_ACCEPT;
515
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900516 /* normally the linux kernel always replies to arp queries of
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 * addresses on different interfacs. However, in the CLUSTERIP case
518 * this wouldn't work, since we didn't subscribe the mcast group on
519 * other interfaces */
520 if (c->dev != out) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700521 pr_debug("CLUSTERIP: not mangling arp reply on different "
522 "interface: cip'%s'-skb'%s'\n",
523 c->dev->name, out->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 clusterip_config_put(c);
525 return NF_ACCEPT;
526 }
527
528 /* mangle reply hardware address */
529 memcpy(payload->src_hw, c->clustermac, arp->ar_hln);
530
Patrick McHardy0d537782007-07-07 22:39:38 -0700531#ifdef DEBUG
532 pr_debug(KERN_DEBUG "CLUSTERIP mangled arp reply: ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 arp_print(payload);
534#endif
535
536 clusterip_config_put(c);
537
538 return NF_ACCEPT;
539}
540
Patrick McHardy19994142007-12-05 01:23:00 -0800541static struct nf_hook_ops cip_arp_ops __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 .hook = arp_mangle,
Jan Engelhardtee999d82008-10-08 11:35:01 +0200543 .pf = NFPROTO_ARP,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 .hooknum = NF_ARP_OUT,
545 .priority = -1
546};
547
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900548/***********************************************************************
549 * PROC DIR HANDLING
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 ***********************************************************************/
551
552#ifdef CONFIG_PROC_FS
553
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700554struct clusterip_seq_position {
555 unsigned int pos; /* position */
556 unsigned int weight; /* number of bits set == size */
557 unsigned int bit; /* current bit */
558 unsigned long val; /* current value */
559};
560
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561static void *clusterip_seq_start(struct seq_file *s, loff_t *pos)
562{
Jan Engelhardt3cf93c92008-04-14 09:56:05 +0200563 const struct proc_dir_entry *pde = s->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 struct clusterip_config *c = pde->data;
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{
604 kfree(v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605}
606
607static int clusterip_seq_show(struct seq_file *s, void *v)
608{
Jan Engelhardt3cf93c92008-04-14 09:56:05 +0200609 struct clusterip_seq_position *idx = v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900611 if (idx->pos != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 seq_putc(s, ',');
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700614 seq_printf(s, "%u", idx->bit);
615
616 if (idx->pos == idx->weight - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 seq_putc(s, '\n');
618
619 return 0;
620}
621
Philippe De Muyter56b3d972007-07-10 23:07:31 -0700622static const struct seq_operations clusterip_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 .start = clusterip_seq_start,
624 .next = clusterip_seq_next,
625 .stop = clusterip_seq_stop,
626 .show = clusterip_seq_show,
627};
628
629static int clusterip_proc_open(struct inode *inode, struct file *file)
630{
631 int ret = seq_open(file, &clusterip_seq_ops);
632
633 if (!ret) {
634 struct seq_file *sf = file->private_data;
635 struct proc_dir_entry *pde = PDE(inode);
636 struct clusterip_config *c = pde->data;
637
638 sf->private = pde;
639
640 clusterip_config_get(c);
641 }
642
643 return ret;
644}
645
646static int clusterip_proc_release(struct inode *inode, struct file *file)
647{
648 struct proc_dir_entry *pde = PDE(inode);
649 struct clusterip_config *c = pde->data;
650 int ret;
651
652 ret = seq_release(inode, file);
653
654 if (!ret)
655 clusterip_config_put(c);
656
657 return ret;
658}
659
660static ssize_t clusterip_proc_write(struct file *file, const char __user *input,
661 size_t size, loff_t *ofs)
662{
663#define PROC_WRITELEN 10
664 char buffer[PROC_WRITELEN+1];
Jan Engelhardt3cf93c92008-04-14 09:56:05 +0200665 const struct proc_dir_entry *pde = PDE(file->f_path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 struct clusterip_config *c = pde->data;
667 unsigned long nodenum;
668
669 if (copy_from_user(buffer, input, PROC_WRITELEN))
670 return -EFAULT;
671
672 if (*buffer == '+') {
673 nodenum = simple_strtoul(buffer+1, NULL, 10);
674 if (clusterip_add_node(c, nodenum))
675 return -ENOMEM;
676 } else if (*buffer == '-') {
677 nodenum = simple_strtoul(buffer+1, NULL,10);
678 if (clusterip_del_node(c, nodenum))
679 return -ENOENT;
680 } else
681 return -EIO;
682
683 return size;
684}
685
Arjan van de Ven9a321442007-02-12 00:55:35 -0800686static const struct file_operations clusterip_proc_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 .owner = THIS_MODULE,
688 .open = clusterip_proc_open,
689 .read = seq_read,
690 .write = clusterip_proc_write,
691 .llseek = seq_lseek,
692 .release = clusterip_proc_release,
693};
694
695#endif /* CONFIG_PROC_FS */
696
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800697static int __init clusterip_tg_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698{
699 int ret;
700
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800701 ret = xt_register_target(&clusterip_tg_reg);
Patrick McHardy32292a72006-04-06 14:11:30 -0700702 if (ret < 0)
703 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
Patrick McHardy32292a72006-04-06 14:11:30 -0700705 ret = nf_register_hook(&cip_arp_ops);
706 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 goto cleanup_target;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
709#ifdef CONFIG_PROC_FS
Eric W. Biederman457c4cb2007-09-12 12:01:34 +0200710 clusterip_procdir = proc_mkdir("ipt_CLUSTERIP", init_net.proc_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 if (!clusterip_procdir) {
712 printk(KERN_ERR "CLUSTERIP: Unable to proc dir entry\n");
713 ret = -ENOMEM;
714 goto cleanup_hook;
715 }
716#endif /* CONFIG_PROC_FS */
717
718 printk(KERN_NOTICE "ClusterIP Version %s loaded successfully\n",
719 CLUSTERIP_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 return 0;
721
Patrick McHardy76592582006-11-29 02:35:42 +0100722#ifdef CONFIG_PROC_FS
Patrick McHardy32292a72006-04-06 14:11:30 -0700723cleanup_hook:
724 nf_unregister_hook(&cip_arp_ops);
Patrick McHardy76592582006-11-29 02:35:42 +0100725#endif /* CONFIG_PROC_FS */
Patrick McHardy32292a72006-04-06 14:11:30 -0700726cleanup_target:
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800727 xt_unregister_target(&clusterip_tg_reg);
Patrick McHardy32292a72006-04-06 14:11:30 -0700728 return ret;
729}
730
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800731static void __exit clusterip_tg_exit(void)
Patrick McHardy32292a72006-04-06 14:11:30 -0700732{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 printk(KERN_NOTICE "ClusterIP Version %s unloading\n",
734 CLUSTERIP_VERSION);
735#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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740}
741
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800742module_init(clusterip_tg_init);
743module_exit(clusterip_tg_exit);