blob: dbc83c5d7aa666f0521722460dbb6ce1f789e8a4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* Cluster IP hashmark target
2 * (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>
13#include <linux/config.h>
14#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>
18#include <linux/ip.h>
19#include <linux/tcp.h>
20#include <linux/udp.h>
21#include <linux/icmp.h>
22#include <linux/if_arp.h>
23#include <linux/proc_fs.h>
24#include <linux/seq_file.h>
25
26#include <net/checksum.h>
27
28#include <linux/netfilter_arp.h>
29
30#include <linux/netfilter_ipv4/ip_tables.h>
31#include <linux/netfilter_ipv4/ipt_CLUSTERIP.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080032#include <net/netfilter/nf_conntrack_compat.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
36#define DEBUG_CLUSTERIP
37
38#ifdef DEBUG_CLUSTERIP
39#define DEBUGP printk
40#else
41#define DEBUGP
42#endif
43
Patrick McHardye45b1be2005-06-21 14:01:30 -070044#define ASSERT_READ_LOCK(x)
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046MODULE_LICENSE("GPL");
47MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
48MODULE_DESCRIPTION("iptables target for CLUSTERIP");
49
50struct clusterip_config {
51 struct list_head list; /* list of all configs */
52 atomic_t refcount; /* reference count */
KOVACS Krisztian44513622005-09-16 16:59:46 -070053 atomic_t entries; /* number of entries/rules
54 * referencing us */
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56 u_int32_t clusterip; /* the IP address */
57 u_int8_t clustermac[ETH_ALEN]; /* the MAC address */
58 struct net_device *dev; /* device */
59 u_int16_t num_total_nodes; /* total number of nodes */
KOVACS Krisztian136e92b2005-09-16 17:00:04 -070060 unsigned long local_nodes; /* node number array */
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62#ifdef CONFIG_PROC_FS
63 struct proc_dir_entry *pde; /* proc dir entry */
64#endif
65 enum clusterip_hashmode hash_mode; /* which hashing mode */
66 u_int32_t hash_initval; /* hash initialization */
67};
68
69static LIST_HEAD(clusterip_configs);
70
KOVACS Krisztian136e92b2005-09-16 17:00:04 -070071/* clusterip_lock protects the clusterip_configs list */
Patrick McHardye45b1be2005-06-21 14:01:30 -070072static DEFINE_RWLOCK(clusterip_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74#ifdef CONFIG_PROC_FS
75static struct file_operations clusterip_proc_fops;
76static struct proc_dir_entry *clusterip_procdir;
77#endif
78
79static inline void
KOVACS Krisztian44513622005-09-16 16:59:46 -070080clusterip_config_get(struct clusterip_config *c)
81{
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 atomic_inc(&c->refcount);
83}
84
85static inline void
KOVACS Krisztian44513622005-09-16 16:59:46 -070086clusterip_config_put(struct clusterip_config *c)
87{
88 if (atomic_dec_and_test(&c->refcount))
89 kfree(c);
90}
91
92/* increase the count of entries(rules) using/referencing this config */
93static inline void
94clusterip_config_entry_get(struct clusterip_config *c)
95{
96 atomic_inc(&c->entries);
97}
98
99/* decrease the count of entries using/referencing this config. If last
100 * entry(rule) is removed, remove the config from lists, but don't free it
101 * yet, since proc-files could still be holding references */
102static inline void
103clusterip_config_entry_put(struct clusterip_config *c)
104{
105 if (atomic_dec_and_test(&c->entries)) {
Patrick McHardye45b1be2005-06-21 14:01:30 -0700106 write_lock_bh(&clusterip_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 list_del(&c->list);
Patrick McHardye45b1be2005-06-21 14:01:30 -0700108 write_unlock_bh(&clusterip_lock);
KOVACS Krisztian44513622005-09-16 16:59:46 -0700109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 dev_mc_delete(c->dev, c->clustermac, ETH_ALEN, 0);
111 dev_put(c->dev);
KOVACS Krisztian44513622005-09-16 16:59:46 -0700112
113 /* In case anyone still accesses the file, the open/close
114 * functions are also incrementing the refcount on their own,
115 * so it's safe to remove the entry even if it's in use. */
116#ifdef CONFIG_PROC_FS
117 remove_proc_entry(c->pde->name, c->pde->parent);
118#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 }
120}
121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122static struct clusterip_config *
123__clusterip_config_find(u_int32_t clusterip)
124{
125 struct list_head *pos;
126
Patrick McHardye45b1be2005-06-21 14:01:30 -0700127 ASSERT_READ_LOCK(&clusterip_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 list_for_each(pos, &clusterip_configs) {
129 struct clusterip_config *c = list_entry(pos,
130 struct clusterip_config, list);
131 if (c->clusterip == clusterip) {
132 return c;
133 }
134 }
135
136 return NULL;
137}
138
139static inline struct clusterip_config *
KOVACS Krisztian44513622005-09-16 16:59:46 -0700140clusterip_config_find_get(u_int32_t clusterip, int entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141{
142 struct clusterip_config *c;
143
Patrick McHardye45b1be2005-06-21 14:01:30 -0700144 read_lock_bh(&clusterip_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 c = __clusterip_config_find(clusterip);
146 if (!c) {
Patrick McHardye45b1be2005-06-21 14:01:30 -0700147 read_unlock_bh(&clusterip_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 return NULL;
149 }
150 atomic_inc(&c->refcount);
KOVACS Krisztian44513622005-09-16 16:59:46 -0700151 if (entry)
152 atomic_inc(&c->entries);
Patrick McHardye45b1be2005-06-21 14:01:30 -0700153 read_unlock_bh(&clusterip_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
155 return c;
156}
157
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700158static void
159clusterip_config_init_nodelist(struct clusterip_config *c,
160 const struct ipt_clusterip_tgt_info *i)
161{
162 int n;
163
164 for (n = 0; n < i->num_local_nodes; n++) {
165 set_bit(i->local_nodes[n] - 1, &c->local_nodes);
166 }
167}
168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169static struct clusterip_config *
170clusterip_config_init(struct ipt_clusterip_tgt_info *i, u_int32_t ip,
171 struct net_device *dev)
172{
173 struct clusterip_config *c;
174 char buffer[16];
175
176 c = kmalloc(sizeof(*c), GFP_ATOMIC);
177 if (!c)
178 return NULL;
179
180 memset(c, 0, sizeof(*c));
181 c->dev = dev;
182 c->clusterip = ip;
183 memcpy(&c->clustermac, &i->clustermac, ETH_ALEN);
184 c->num_total_nodes = i->num_total_nodes;
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700185 clusterip_config_init_nodelist(c, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 c->hash_mode = i->hash_mode;
187 c->hash_initval = i->hash_initval;
188 atomic_set(&c->refcount, 1);
KOVACS Krisztian44513622005-09-16 16:59:46 -0700189 atomic_set(&c->entries, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
191#ifdef CONFIG_PROC_FS
192 /* create proc dir entry */
193 sprintf(buffer, "%u.%u.%u.%u", NIPQUAD(ip));
194 c->pde = create_proc_entry(buffer, S_IWUSR|S_IRUSR, clusterip_procdir);
195 if (!c->pde) {
196 kfree(c);
197 return NULL;
198 }
199 c->pde->proc_fops = &clusterip_proc_fops;
200 c->pde->data = c;
201#endif
202
Patrick McHardye45b1be2005-06-21 14:01:30 -0700203 write_lock_bh(&clusterip_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 list_add(&c->list, &clusterip_configs);
Patrick McHardye45b1be2005-06-21 14:01:30 -0700205 write_unlock_bh(&clusterip_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
207 return c;
208}
209
210static int
211clusterip_add_node(struct clusterip_config *c, u_int16_t nodenum)
212{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700214 if (nodenum == 0 ||
215 nodenum > c->num_total_nodes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700218 /* check if we already have this number in our bitfield */
219 if (test_and_set_bit(nodenum - 1, &c->local_nodes))
220 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 return 0;
223}
224
225static int
226clusterip_del_node(struct clusterip_config *c, u_int16_t nodenum)
227{
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700228 if (nodenum == 0 ||
229 nodenum > c->num_total_nodes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700232 if (test_and_clear_bit(nodenum - 1, &c->local_nodes))
233 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 return 1;
236}
237
238static inline u_int32_t
239clusterip_hashfn(struct sk_buff *skb, struct clusterip_config *config)
240{
241 struct iphdr *iph = skb->nh.iph;
242 unsigned long hashval;
243 u_int16_t sport, dport;
Patrick McHardy957dc802006-05-29 18:19:56 -0700244 u_int16_t *ports;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
246 switch (iph->protocol) {
247 case IPPROTO_TCP:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 case IPPROTO_UDP:
Patrick McHardy957dc802006-05-29 18:19:56 -0700249 case IPPROTO_SCTP:
250 case IPPROTO_DCCP:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 case IPPROTO_ICMP:
Patrick McHardy957dc802006-05-29 18:19:56 -0700252 ports = (void *)iph+iph->ihl*4;
253 sport = ports[0];
254 dport = ports[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 break;
256 default:
257 if (net_ratelimit()) {
258 printk(KERN_NOTICE "CLUSTERIP: unknown protocol `%u'\n",
259 iph->protocol);
260 }
261 sport = dport = 0;
262 }
263
264 switch (config->hash_mode) {
265 case CLUSTERIP_HASHMODE_SIP:
266 hashval = jhash_1word(ntohl(iph->saddr),
267 config->hash_initval);
268 break;
269 case CLUSTERIP_HASHMODE_SIP_SPT:
270 hashval = jhash_2words(ntohl(iph->saddr), sport,
271 config->hash_initval);
272 break;
273 case CLUSTERIP_HASHMODE_SIP_SPT_DPT:
274 hashval = jhash_3words(ntohl(iph->saddr), sport, dport,
275 config->hash_initval);
276 break;
277 default:
278 /* to make gcc happy */
279 hashval = 0;
280 /* This cannot happen, unless the check function wasn't called
281 * at rule load time */
282 printk("CLUSTERIP: unknown mode `%u'\n", config->hash_mode);
283 BUG();
284 break;
285 }
286
287 /* node numbers are 1..n, not 0..n */
288 return ((hashval % config->num_total_nodes)+1);
289}
290
291static inline int
292clusterip_responsible(struct clusterip_config *config, u_int32_t hash)
293{
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700294 return test_bit(hash - 1, &config->local_nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295}
296
297/***********************************************************************
298 * IPTABLES TARGET
299 ***********************************************************************/
300
301static unsigned int
302target(struct sk_buff **pskb,
303 const struct net_device *in,
304 const struct net_device *out,
305 unsigned int hooknum,
Patrick McHardyc4986732006-03-20 18:02:56 -0800306 const struct xt_target *target,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 const void *targinfo,
308 void *userinfo)
309{
310 const struct ipt_clusterip_tgt_info *cipinfo = targinfo;
311 enum ip_conntrack_info ctinfo;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800312 u_int32_t *mark, hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
314 /* don't need to clusterip_config_get() here, since refcount
315 * is only decremented by destroy() - and ip_tables guarantees
316 * that the ->target() function isn't called after ->destroy() */
317
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800318 mark = nf_ct_get_mark((*pskb), &ctinfo);
319 if (mark == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 printk(KERN_ERR "CLUSTERIP: no conntrack!\n");
321 /* FIXME: need to drop invalid ones, since replies
322 * to outgoing connections of other nodes will be
323 * marked as INVALID */
324 return NF_DROP;
325 }
326
327 /* special case: ICMP error handling. conntrack distinguishes between
328 * error messages (RELATED) and information requests (see below) */
329 if ((*pskb)->nh.iph->protocol == IPPROTO_ICMP
330 && (ctinfo == IP_CT_RELATED
Harald Welte5d927eb2005-06-22 12:37:50 -0700331 || ctinfo == IP_CT_RELATED+IP_CT_IS_REPLY))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 return IPT_CONTINUE;
333
334 /* ip_conntrack_icmp guarantees us that we only have ICMP_ECHO,
335 * TIMESTAMP, INFO_REQUEST or ADDRESS type icmp packets from here
336 * on, which all have an ID field [relevant for hashing]. */
337
338 hash = clusterip_hashfn(*pskb, cipinfo->config);
339
340 switch (ctinfo) {
341 case IP_CT_NEW:
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800342 *mark = hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 break;
344 case IP_CT_RELATED:
345 case IP_CT_RELATED+IP_CT_IS_REPLY:
346 /* FIXME: we don't handle expectations at the
347 * moment. they can arrive on a different node than
348 * the master connection (e.g. FTP passive mode) */
349 case IP_CT_ESTABLISHED:
350 case IP_CT_ESTABLISHED+IP_CT_IS_REPLY:
351 break;
352 default:
353 break;
354 }
355
356#ifdef DEBUG_CLUSTERP
357 DUMP_TUPLE(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple);
358#endif
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800359 DEBUGP("hash=%u ct_hash=%u ", hash, *mark);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 if (!clusterip_responsible(cipinfo->config, hash)) {
361 DEBUGP("not responsible\n");
362 return NF_DROP;
363 }
364 DEBUGP("responsible\n");
365
366 /* despite being received via linklayer multicast, this is
367 * actually a unicast IP packet. TCP doesn't like PACKET_MULTICAST */
368 (*pskb)->pkt_type = PACKET_HOST;
369
370 return IPT_CONTINUE;
371}
372
373static int
374checkentry(const char *tablename,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800375 const void *e_void,
Patrick McHardyc4986732006-03-20 18:02:56 -0800376 const struct xt_target *target,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 void *targinfo,
378 unsigned int targinfosize,
379 unsigned int hook_mask)
380{
381 struct ipt_clusterip_tgt_info *cipinfo = targinfo;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800382 const struct ipt_entry *e = e_void;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
384 struct clusterip_config *config;
385
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 if (cipinfo->hash_mode != CLUSTERIP_HASHMODE_SIP &&
387 cipinfo->hash_mode != CLUSTERIP_HASHMODE_SIP_SPT &&
388 cipinfo->hash_mode != CLUSTERIP_HASHMODE_SIP_SPT_DPT) {
389 printk(KERN_WARNING "CLUSTERIP: unknown mode `%u'\n",
390 cipinfo->hash_mode);
391 return 0;
392
393 }
394 if (e->ip.dmsk.s_addr != 0xffffffff
395 || e->ip.dst.s_addr == 0) {
396 printk(KERN_ERR "CLUSTERIP: Please specify destination IP\n");
397 return 0;
398 }
399
400 /* FIXME: further sanity checks */
401
KOVACS Krisztian44513622005-09-16 16:59:46 -0700402 config = clusterip_config_find_get(e->ip.dst.s_addr, 1);
403 if (config) {
404 if (cipinfo->config != NULL) {
405 /* Case A: This is an entry that gets reloaded, since
406 * it still has a cipinfo->config pointer. Simply
407 * increase the entry refcount and return */
408 if (cipinfo->config != config) {
409 printk(KERN_ERR "CLUSTERIP: Reloaded entry "
410 "has invalid config pointer!\n");
411 return 0;
412 }
413 clusterip_config_entry_get(cipinfo->config);
414 } else {
415 /* Case B: This is a new rule referring to an existing
416 * clusterip config. */
417 cipinfo->config = config;
418 clusterip_config_entry_get(cipinfo->config);
419 }
420 } else {
421 /* Case C: This is a completely new clusterip config */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 if (!(cipinfo->flags & CLUSTERIP_FLAG_NEW)) {
423 printk(KERN_WARNING "CLUSTERIP: no config found for %u.%u.%u.%u, need 'new'\n", NIPQUAD(e->ip.dst.s_addr));
424 return 0;
425 } else {
426 struct net_device *dev;
427
428 if (e->ip.iniface[0] == '\0') {
429 printk(KERN_WARNING "CLUSTERIP: Please specify an interface name\n");
430 return 0;
431 }
432
433 dev = dev_get_by_name(e->ip.iniface);
434 if (!dev) {
435 printk(KERN_WARNING "CLUSTERIP: no such interface %s\n", e->ip.iniface);
436 return 0;
437 }
438
439 config = clusterip_config_init(cipinfo,
440 e->ip.dst.s_addr, dev);
441 if (!config) {
442 printk(KERN_WARNING "CLUSTERIP: cannot allocate config\n");
443 dev_put(dev);
444 return 0;
445 }
446 dev_mc_add(config->dev,config->clustermac, ETH_ALEN, 0);
447 }
KOVACS Krisztian44513622005-09-16 16:59:46 -0700448 cipinfo->config = config;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 }
450
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 return 1;
452}
453
454/* drop reference count of cluster config when rule is deleted */
Patrick McHardyc4986732006-03-20 18:02:56 -0800455static void destroy(const struct xt_target *target, void *targinfo,
456 unsigned int targinfosize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457{
Patrick McHardyc4986732006-03-20 18:02:56 -0800458 struct ipt_clusterip_tgt_info *cipinfo = targinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
KOVACS Krisztian44513622005-09-16 16:59:46 -0700460 /* if no more entries are referencing the config, remove it
461 * from the list and destroy the proc entry */
462 clusterip_config_entry_put(cipinfo->config);
463
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 clusterip_config_put(cipinfo->config);
465}
466
Patrick McHardy1d5cd902006-03-20 18:01:14 -0800467static struct ipt_target clusterip_tgt = {
468 .name = "CLUSTERIP",
469 .target = target,
470 .targetsize = sizeof(struct ipt_clusterip_tgt_info),
471 .checkentry = checkentry,
472 .destroy = destroy,
473 .me = THIS_MODULE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474};
475
476
477/***********************************************************************
478 * ARP MANGLING CODE
479 ***********************************************************************/
480
481/* hardcoded for 48bit ethernet and 32bit ipv4 addresses */
482struct arp_payload {
483 u_int8_t src_hw[ETH_ALEN];
484 u_int32_t src_ip;
485 u_int8_t dst_hw[ETH_ALEN];
486 u_int32_t dst_ip;
487} __attribute__ ((packed));
488
489#ifdef CLUSTERIP_DEBUG
490static void arp_print(struct arp_payload *payload)
491{
492#define HBUFFERLEN 30
493 char hbuffer[HBUFFERLEN];
494 int j,k;
495 const char hexbuf[]= "0123456789abcdef";
496
497 for (k=0, j=0; k < HBUFFERLEN-3 && j < ETH_ALEN; j++) {
498 hbuffer[k++]=hexbuf[(payload->src_hw[j]>>4)&15];
499 hbuffer[k++]=hexbuf[payload->src_hw[j]&15];
500 hbuffer[k++]=':';
501 }
502 hbuffer[--k]='\0';
503
504 printk("src %u.%u.%u.%u@%s, dst %u.%u.%u.%u\n",
505 NIPQUAD(payload->src_ip), hbuffer,
506 NIPQUAD(payload->dst_ip));
507}
508#endif
509
510static unsigned int
511arp_mangle(unsigned int hook,
512 struct sk_buff **pskb,
513 const struct net_device *in,
514 const struct net_device *out,
515 int (*okfn)(struct sk_buff *))
516{
517 struct arphdr *arp = (*pskb)->nh.arph;
518 struct arp_payload *payload;
519 struct clusterip_config *c;
520
521 /* we don't care about non-ethernet and non-ipv4 ARP */
522 if (arp->ar_hrd != htons(ARPHRD_ETHER)
523 || arp->ar_pro != htons(ETH_P_IP)
524 || arp->ar_pln != 4 || arp->ar_hln != ETH_ALEN)
525 return NF_ACCEPT;
526
Harald Welte4095ebf2005-06-28 12:49:30 -0700527 /* we only want to mangle arp requests and replies */
528 if (arp->ar_op != htons(ARPOP_REPLY)
529 && arp->ar_op != htons(ARPOP_REQUEST))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 return NF_ACCEPT;
531
532 payload = (void *)(arp+1);
533
534 /* if there is no clusterip configuration for the arp reply's
535 * source ip, we don't want to mangle it */
KOVACS Krisztian44513622005-09-16 16:59:46 -0700536 c = clusterip_config_find_get(payload->src_ip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 if (!c)
538 return NF_ACCEPT;
539
540 /* normally the linux kernel always replies to arp queries of
541 * addresses on different interfacs. However, in the CLUSTERIP case
542 * this wouldn't work, since we didn't subscribe the mcast group on
543 * other interfaces */
544 if (c->dev != out) {
545 DEBUGP("CLUSTERIP: not mangling arp reply on different "
546 "interface: cip'%s'-skb'%s'\n", c->dev->name, out->name);
547 clusterip_config_put(c);
548 return NF_ACCEPT;
549 }
550
551 /* mangle reply hardware address */
552 memcpy(payload->src_hw, c->clustermac, arp->ar_hln);
553
554#ifdef CLUSTERIP_DEBUG
555 DEBUGP(KERN_DEBUG "CLUSTERIP mangled arp reply: ");
556 arp_print(payload);
557#endif
558
559 clusterip_config_put(c);
560
561 return NF_ACCEPT;
562}
563
564static struct nf_hook_ops cip_arp_ops = {
565 .hook = arp_mangle,
566 .pf = NF_ARP,
567 .hooknum = NF_ARP_OUT,
568 .priority = -1
569};
570
571/***********************************************************************
572 * PROC DIR HANDLING
573 ***********************************************************************/
574
575#ifdef CONFIG_PROC_FS
576
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700577struct clusterip_seq_position {
578 unsigned int pos; /* position */
579 unsigned int weight; /* number of bits set == size */
580 unsigned int bit; /* current bit */
581 unsigned long val; /* current value */
582};
583
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584static void *clusterip_seq_start(struct seq_file *s, loff_t *pos)
585{
586 struct proc_dir_entry *pde = s->private;
587 struct clusterip_config *c = pde->data;
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700588 unsigned int weight;
589 u_int32_t local_nodes;
590 struct clusterip_seq_position *idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700592 /* FIXME: possible race */
593 local_nodes = c->local_nodes;
594 weight = hweight32(local_nodes);
595 if (*pos >= weight)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 return NULL;
597
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700598 idx = kmalloc(sizeof(struct clusterip_seq_position), GFP_KERNEL);
599 if (!idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 return ERR_PTR(-ENOMEM);
601
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700602 idx->pos = *pos;
603 idx->weight = weight;
604 idx->bit = ffs(local_nodes);
605 idx->val = local_nodes;
606 clear_bit(idx->bit - 1, &idx->val);
607
608 return idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609}
610
611static void *clusterip_seq_next(struct seq_file *s, void *v, loff_t *pos)
612{
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700613 struct clusterip_seq_position *idx = (struct clusterip_seq_position *)v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700615 *pos = ++idx->pos;
616 if (*pos >= idx->weight) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 kfree(v);
618 return NULL;
619 }
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700620 idx->bit = ffs(idx->val);
621 clear_bit(idx->bit - 1, &idx->val);
622 return idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623}
624
625static void clusterip_seq_stop(struct seq_file *s, void *v)
626{
627 kfree(v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628}
629
630static int clusterip_seq_show(struct seq_file *s, void *v)
631{
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700632 struct clusterip_seq_position *idx = (struct clusterip_seq_position *)v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700634 if (idx->pos != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 seq_putc(s, ',');
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700637 seq_printf(s, "%u", idx->bit);
638
639 if (idx->pos == idx->weight - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 seq_putc(s, '\n');
641
642 return 0;
643}
644
645static struct seq_operations clusterip_seq_ops = {
646 .start = clusterip_seq_start,
647 .next = clusterip_seq_next,
648 .stop = clusterip_seq_stop,
649 .show = clusterip_seq_show,
650};
651
652static int clusterip_proc_open(struct inode *inode, struct file *file)
653{
654 int ret = seq_open(file, &clusterip_seq_ops);
655
656 if (!ret) {
657 struct seq_file *sf = file->private_data;
658 struct proc_dir_entry *pde = PDE(inode);
659 struct clusterip_config *c = pde->data;
660
661 sf->private = pde;
662
663 clusterip_config_get(c);
664 }
665
666 return ret;
667}
668
669static int clusterip_proc_release(struct inode *inode, struct file *file)
670{
671 struct proc_dir_entry *pde = PDE(inode);
672 struct clusterip_config *c = pde->data;
673 int ret;
674
675 ret = seq_release(inode, file);
676
677 if (!ret)
678 clusterip_config_put(c);
679
680 return ret;
681}
682
683static ssize_t clusterip_proc_write(struct file *file, const char __user *input,
684 size_t size, loff_t *ofs)
685{
686#define PROC_WRITELEN 10
687 char buffer[PROC_WRITELEN+1];
688 struct proc_dir_entry *pde = PDE(file->f_dentry->d_inode);
689 struct clusterip_config *c = pde->data;
690 unsigned long nodenum;
691
692 if (copy_from_user(buffer, input, PROC_WRITELEN))
693 return -EFAULT;
694
695 if (*buffer == '+') {
696 nodenum = simple_strtoul(buffer+1, NULL, 10);
697 if (clusterip_add_node(c, nodenum))
698 return -ENOMEM;
699 } else if (*buffer == '-') {
700 nodenum = simple_strtoul(buffer+1, NULL,10);
701 if (clusterip_del_node(c, nodenum))
702 return -ENOENT;
703 } else
704 return -EIO;
705
706 return size;
707}
708
709static struct file_operations clusterip_proc_fops = {
710 .owner = THIS_MODULE,
711 .open = clusterip_proc_open,
712 .read = seq_read,
713 .write = clusterip_proc_write,
714 .llseek = seq_lseek,
715 .release = clusterip_proc_release,
716};
717
718#endif /* CONFIG_PROC_FS */
719
Patrick McHardy32292a72006-04-06 14:11:30 -0700720static int __init ipt_clusterip_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721{
722 int ret;
723
Patrick McHardy32292a72006-04-06 14:11:30 -0700724 ret = ipt_register_target(&clusterip_tgt);
725 if (ret < 0)
726 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
Patrick McHardy32292a72006-04-06 14:11:30 -0700728 ret = nf_register_hook(&cip_arp_ops);
729 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 goto cleanup_target;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
732#ifdef CONFIG_PROC_FS
733 clusterip_procdir = proc_mkdir("ipt_CLUSTERIP", proc_net);
734 if (!clusterip_procdir) {
735 printk(KERN_ERR "CLUSTERIP: Unable to proc dir entry\n");
736 ret = -ENOMEM;
737 goto cleanup_hook;
738 }
739#endif /* CONFIG_PROC_FS */
740
741 printk(KERN_NOTICE "ClusterIP Version %s loaded successfully\n",
742 CLUSTERIP_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 return 0;
744
Patrick McHardy32292a72006-04-06 14:11:30 -0700745cleanup_hook:
746 nf_unregister_hook(&cip_arp_ops);
747cleanup_target:
748 ipt_unregister_target(&clusterip_tgt);
749 return ret;
750}
751
752static void __exit ipt_clusterip_fini(void)
753{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 printk(KERN_NOTICE "ClusterIP Version %s unloading\n",
755 CLUSTERIP_VERSION);
756#ifdef CONFIG_PROC_FS
757 remove_proc_entry(clusterip_procdir->name, clusterip_procdir->parent);
758#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 nf_unregister_hook(&cip_arp_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 ipt_unregister_target(&clusterip_tgt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761}
762
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800763module_init(ipt_clusterip_init);
764module_exit(ipt_clusterip_fini);