blob: 24f88dd5d8f9b5ca5863c6370b03b610d06c0061 [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;
244 struct tcphdr *th;
245 struct udphdr *uh;
246 struct icmphdr *ih;
247
248 switch (iph->protocol) {
249 case IPPROTO_TCP:
250 th = (void *)iph+iph->ihl*4;
251 sport = ntohs(th->source);
252 dport = ntohs(th->dest);
253 break;
254 case IPPROTO_UDP:
255 uh = (void *)iph+iph->ihl*4;
256 sport = ntohs(uh->source);
257 dport = ntohs(uh->dest);
258 break;
259 case IPPROTO_ICMP:
260 ih = (void *)iph+iph->ihl*4;
261 sport = ntohs(ih->un.echo.id);
262 dport = (ih->type<<8)|ih->code;
263 break;
264 default:
265 if (net_ratelimit()) {
266 printk(KERN_NOTICE "CLUSTERIP: unknown protocol `%u'\n",
267 iph->protocol);
268 }
269 sport = dport = 0;
270 }
271
272 switch (config->hash_mode) {
273 case CLUSTERIP_HASHMODE_SIP:
274 hashval = jhash_1word(ntohl(iph->saddr),
275 config->hash_initval);
276 break;
277 case CLUSTERIP_HASHMODE_SIP_SPT:
278 hashval = jhash_2words(ntohl(iph->saddr), sport,
279 config->hash_initval);
280 break;
281 case CLUSTERIP_HASHMODE_SIP_SPT_DPT:
282 hashval = jhash_3words(ntohl(iph->saddr), sport, dport,
283 config->hash_initval);
284 break;
285 default:
286 /* to make gcc happy */
287 hashval = 0;
288 /* This cannot happen, unless the check function wasn't called
289 * at rule load time */
290 printk("CLUSTERIP: unknown mode `%u'\n", config->hash_mode);
291 BUG();
292 break;
293 }
294
295 /* node numbers are 1..n, not 0..n */
296 return ((hashval % config->num_total_nodes)+1);
297}
298
299static inline int
300clusterip_responsible(struct clusterip_config *config, u_int32_t hash)
301{
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700302 return test_bit(hash - 1, &config->local_nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303}
304
305/***********************************************************************
306 * IPTABLES TARGET
307 ***********************************************************************/
308
309static unsigned int
310target(struct sk_buff **pskb,
311 const struct net_device *in,
312 const struct net_device *out,
313 unsigned int hooknum,
314 const void *targinfo,
315 void *userinfo)
316{
317 const struct ipt_clusterip_tgt_info *cipinfo = targinfo;
318 enum ip_conntrack_info ctinfo;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800319 u_int32_t *mark, hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
321 /* don't need to clusterip_config_get() here, since refcount
322 * is only decremented by destroy() - and ip_tables guarantees
323 * that the ->target() function isn't called after ->destroy() */
324
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800325 mark = nf_ct_get_mark((*pskb), &ctinfo);
326 if (mark == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 printk(KERN_ERR "CLUSTERIP: no conntrack!\n");
328 /* FIXME: need to drop invalid ones, since replies
329 * to outgoing connections of other nodes will be
330 * marked as INVALID */
331 return NF_DROP;
332 }
333
334 /* special case: ICMP error handling. conntrack distinguishes between
335 * error messages (RELATED) and information requests (see below) */
336 if ((*pskb)->nh.iph->protocol == IPPROTO_ICMP
337 && (ctinfo == IP_CT_RELATED
Harald Welte5d927eb2005-06-22 12:37:50 -0700338 || ctinfo == IP_CT_RELATED+IP_CT_IS_REPLY))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 return IPT_CONTINUE;
340
341 /* ip_conntrack_icmp guarantees us that we only have ICMP_ECHO,
342 * TIMESTAMP, INFO_REQUEST or ADDRESS type icmp packets from here
343 * on, which all have an ID field [relevant for hashing]. */
344
345 hash = clusterip_hashfn(*pskb, cipinfo->config);
346
347 switch (ctinfo) {
348 case IP_CT_NEW:
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800349 *mark = hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 break;
351 case IP_CT_RELATED:
352 case IP_CT_RELATED+IP_CT_IS_REPLY:
353 /* FIXME: we don't handle expectations at the
354 * moment. they can arrive on a different node than
355 * the master connection (e.g. FTP passive mode) */
356 case IP_CT_ESTABLISHED:
357 case IP_CT_ESTABLISHED+IP_CT_IS_REPLY:
358 break;
359 default:
360 break;
361 }
362
363#ifdef DEBUG_CLUSTERP
364 DUMP_TUPLE(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple);
365#endif
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800366 DEBUGP("hash=%u ct_hash=%u ", hash, *mark);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 if (!clusterip_responsible(cipinfo->config, hash)) {
368 DEBUGP("not responsible\n");
369 return NF_DROP;
370 }
371 DEBUGP("responsible\n");
372
373 /* despite being received via linklayer multicast, this is
374 * actually a unicast IP packet. TCP doesn't like PACKET_MULTICAST */
375 (*pskb)->pkt_type = PACKET_HOST;
376
377 return IPT_CONTINUE;
378}
379
380static int
381checkentry(const char *tablename,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800382 const void *e_void,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 void *targinfo,
384 unsigned int targinfosize,
385 unsigned int hook_mask)
386{
387 struct ipt_clusterip_tgt_info *cipinfo = targinfo;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800388 const struct ipt_entry *e = e_void;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
390 struct clusterip_config *config;
391
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 if (cipinfo->hash_mode != CLUSTERIP_HASHMODE_SIP &&
393 cipinfo->hash_mode != CLUSTERIP_HASHMODE_SIP_SPT &&
394 cipinfo->hash_mode != CLUSTERIP_HASHMODE_SIP_SPT_DPT) {
395 printk(KERN_WARNING "CLUSTERIP: unknown mode `%u'\n",
396 cipinfo->hash_mode);
397 return 0;
398
399 }
400 if (e->ip.dmsk.s_addr != 0xffffffff
401 || e->ip.dst.s_addr == 0) {
402 printk(KERN_ERR "CLUSTERIP: Please specify destination IP\n");
403 return 0;
404 }
405
406 /* FIXME: further sanity checks */
407
KOVACS Krisztian44513622005-09-16 16:59:46 -0700408 config = clusterip_config_find_get(e->ip.dst.s_addr, 1);
409 if (config) {
410 if (cipinfo->config != NULL) {
411 /* Case A: This is an entry that gets reloaded, since
412 * it still has a cipinfo->config pointer. Simply
413 * increase the entry refcount and return */
414 if (cipinfo->config != config) {
415 printk(KERN_ERR "CLUSTERIP: Reloaded entry "
416 "has invalid config pointer!\n");
417 return 0;
418 }
419 clusterip_config_entry_get(cipinfo->config);
420 } else {
421 /* Case B: This is a new rule referring to an existing
422 * clusterip config. */
423 cipinfo->config = config;
424 clusterip_config_entry_get(cipinfo->config);
425 }
426 } else {
427 /* Case C: This is a completely new clusterip config */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 if (!(cipinfo->flags & CLUSTERIP_FLAG_NEW)) {
429 printk(KERN_WARNING "CLUSTERIP: no config found for %u.%u.%u.%u, need 'new'\n", NIPQUAD(e->ip.dst.s_addr));
430 return 0;
431 } else {
432 struct net_device *dev;
433
434 if (e->ip.iniface[0] == '\0') {
435 printk(KERN_WARNING "CLUSTERIP: Please specify an interface name\n");
436 return 0;
437 }
438
439 dev = dev_get_by_name(e->ip.iniface);
440 if (!dev) {
441 printk(KERN_WARNING "CLUSTERIP: no such interface %s\n", e->ip.iniface);
442 return 0;
443 }
444
445 config = clusterip_config_init(cipinfo,
446 e->ip.dst.s_addr, dev);
447 if (!config) {
448 printk(KERN_WARNING "CLUSTERIP: cannot allocate config\n");
449 dev_put(dev);
450 return 0;
451 }
452 dev_mc_add(config->dev,config->clustermac, ETH_ALEN, 0);
453 }
KOVACS Krisztian44513622005-09-16 16:59:46 -0700454 cipinfo->config = config;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 }
456
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 return 1;
458}
459
460/* drop reference count of cluster config when rule is deleted */
461static void destroy(void *matchinfo, unsigned int matchinfosize)
462{
463 struct ipt_clusterip_tgt_info *cipinfo = matchinfo;
464
KOVACS Krisztian44513622005-09-16 16:59:46 -0700465 /* if no more entries are referencing the config, remove it
466 * from the list and destroy the proc entry */
467 clusterip_config_entry_put(cipinfo->config);
468
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 clusterip_config_put(cipinfo->config);
470}
471
Patrick McHardy1d5cd902006-03-20 18:01:14 -0800472static struct ipt_target clusterip_tgt = {
473 .name = "CLUSTERIP",
474 .target = target,
475 .targetsize = sizeof(struct ipt_clusterip_tgt_info),
476 .checkentry = checkentry,
477 .destroy = destroy,
478 .me = THIS_MODULE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479};
480
481
482/***********************************************************************
483 * ARP MANGLING CODE
484 ***********************************************************************/
485
486/* hardcoded for 48bit ethernet and 32bit ipv4 addresses */
487struct arp_payload {
488 u_int8_t src_hw[ETH_ALEN];
489 u_int32_t src_ip;
490 u_int8_t dst_hw[ETH_ALEN];
491 u_int32_t dst_ip;
492} __attribute__ ((packed));
493
494#ifdef CLUSTERIP_DEBUG
495static void arp_print(struct arp_payload *payload)
496{
497#define HBUFFERLEN 30
498 char hbuffer[HBUFFERLEN];
499 int j,k;
500 const char hexbuf[]= "0123456789abcdef";
501
502 for (k=0, j=0; k < HBUFFERLEN-3 && j < ETH_ALEN; j++) {
503 hbuffer[k++]=hexbuf[(payload->src_hw[j]>>4)&15];
504 hbuffer[k++]=hexbuf[payload->src_hw[j]&15];
505 hbuffer[k++]=':';
506 }
507 hbuffer[--k]='\0';
508
509 printk("src %u.%u.%u.%u@%s, dst %u.%u.%u.%u\n",
510 NIPQUAD(payload->src_ip), hbuffer,
511 NIPQUAD(payload->dst_ip));
512}
513#endif
514
515static unsigned int
516arp_mangle(unsigned int hook,
517 struct sk_buff **pskb,
518 const struct net_device *in,
519 const struct net_device *out,
520 int (*okfn)(struct sk_buff *))
521{
522 struct arphdr *arp = (*pskb)->nh.arph;
523 struct arp_payload *payload;
524 struct clusterip_config *c;
525
526 /* we don't care about non-ethernet and non-ipv4 ARP */
527 if (arp->ar_hrd != htons(ARPHRD_ETHER)
528 || arp->ar_pro != htons(ETH_P_IP)
529 || arp->ar_pln != 4 || arp->ar_hln != ETH_ALEN)
530 return NF_ACCEPT;
531
Harald Welte4095ebf2005-06-28 12:49:30 -0700532 /* we only want to mangle arp requests and replies */
533 if (arp->ar_op != htons(ARPOP_REPLY)
534 && arp->ar_op != htons(ARPOP_REQUEST))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 return NF_ACCEPT;
536
537 payload = (void *)(arp+1);
538
539 /* if there is no clusterip configuration for the arp reply's
540 * source ip, we don't want to mangle it */
KOVACS Krisztian44513622005-09-16 16:59:46 -0700541 c = clusterip_config_find_get(payload->src_ip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 if (!c)
543 return NF_ACCEPT;
544
545 /* normally the linux kernel always replies to arp queries of
546 * addresses on different interfacs. However, in the CLUSTERIP case
547 * this wouldn't work, since we didn't subscribe the mcast group on
548 * other interfaces */
549 if (c->dev != out) {
550 DEBUGP("CLUSTERIP: not mangling arp reply on different "
551 "interface: cip'%s'-skb'%s'\n", c->dev->name, out->name);
552 clusterip_config_put(c);
553 return NF_ACCEPT;
554 }
555
556 /* mangle reply hardware address */
557 memcpy(payload->src_hw, c->clustermac, arp->ar_hln);
558
559#ifdef CLUSTERIP_DEBUG
560 DEBUGP(KERN_DEBUG "CLUSTERIP mangled arp reply: ");
561 arp_print(payload);
562#endif
563
564 clusterip_config_put(c);
565
566 return NF_ACCEPT;
567}
568
569static struct nf_hook_ops cip_arp_ops = {
570 .hook = arp_mangle,
571 .pf = NF_ARP,
572 .hooknum = NF_ARP_OUT,
573 .priority = -1
574};
575
576/***********************************************************************
577 * PROC DIR HANDLING
578 ***********************************************************************/
579
580#ifdef CONFIG_PROC_FS
581
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700582struct clusterip_seq_position {
583 unsigned int pos; /* position */
584 unsigned int weight; /* number of bits set == size */
585 unsigned int bit; /* current bit */
586 unsigned long val; /* current value */
587};
588
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589static void *clusterip_seq_start(struct seq_file *s, loff_t *pos)
590{
591 struct proc_dir_entry *pde = s->private;
592 struct clusterip_config *c = pde->data;
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700593 unsigned int weight;
594 u_int32_t local_nodes;
595 struct clusterip_seq_position *idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700597 /* FIXME: possible race */
598 local_nodes = c->local_nodes;
599 weight = hweight32(local_nodes);
600 if (*pos >= weight)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 return NULL;
602
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700603 idx = kmalloc(sizeof(struct clusterip_seq_position), GFP_KERNEL);
604 if (!idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 return ERR_PTR(-ENOMEM);
606
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700607 idx->pos = *pos;
608 idx->weight = weight;
609 idx->bit = ffs(local_nodes);
610 idx->val = local_nodes;
611 clear_bit(idx->bit - 1, &idx->val);
612
613 return idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614}
615
616static void *clusterip_seq_next(struct seq_file *s, void *v, loff_t *pos)
617{
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700618 struct clusterip_seq_position *idx = (struct clusterip_seq_position *)v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700620 *pos = ++idx->pos;
621 if (*pos >= idx->weight) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 kfree(v);
623 return NULL;
624 }
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700625 idx->bit = ffs(idx->val);
626 clear_bit(idx->bit - 1, &idx->val);
627 return idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628}
629
630static void clusterip_seq_stop(struct seq_file *s, void *v)
631{
632 kfree(v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633}
634
635static int clusterip_seq_show(struct seq_file *s, void *v)
636{
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700637 struct clusterip_seq_position *idx = (struct clusterip_seq_position *)v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700639 if (idx->pos != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 seq_putc(s, ',');
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700642 seq_printf(s, "%u", idx->bit);
643
644 if (idx->pos == idx->weight - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 seq_putc(s, '\n');
646
647 return 0;
648}
649
650static struct seq_operations clusterip_seq_ops = {
651 .start = clusterip_seq_start,
652 .next = clusterip_seq_next,
653 .stop = clusterip_seq_stop,
654 .show = clusterip_seq_show,
655};
656
657static int clusterip_proc_open(struct inode *inode, struct file *file)
658{
659 int ret = seq_open(file, &clusterip_seq_ops);
660
661 if (!ret) {
662 struct seq_file *sf = file->private_data;
663 struct proc_dir_entry *pde = PDE(inode);
664 struct clusterip_config *c = pde->data;
665
666 sf->private = pde;
667
668 clusterip_config_get(c);
669 }
670
671 return ret;
672}
673
674static int clusterip_proc_release(struct inode *inode, struct file *file)
675{
676 struct proc_dir_entry *pde = PDE(inode);
677 struct clusterip_config *c = pde->data;
678 int ret;
679
680 ret = seq_release(inode, file);
681
682 if (!ret)
683 clusterip_config_put(c);
684
685 return ret;
686}
687
688static ssize_t clusterip_proc_write(struct file *file, const char __user *input,
689 size_t size, loff_t *ofs)
690{
691#define PROC_WRITELEN 10
692 char buffer[PROC_WRITELEN+1];
693 struct proc_dir_entry *pde = PDE(file->f_dentry->d_inode);
694 struct clusterip_config *c = pde->data;
695 unsigned long nodenum;
696
697 if (copy_from_user(buffer, input, PROC_WRITELEN))
698 return -EFAULT;
699
700 if (*buffer == '+') {
701 nodenum = simple_strtoul(buffer+1, NULL, 10);
702 if (clusterip_add_node(c, nodenum))
703 return -ENOMEM;
704 } else if (*buffer == '-') {
705 nodenum = simple_strtoul(buffer+1, NULL,10);
706 if (clusterip_del_node(c, nodenum))
707 return -ENOENT;
708 } else
709 return -EIO;
710
711 return size;
712}
713
714static struct file_operations clusterip_proc_fops = {
715 .owner = THIS_MODULE,
716 .open = clusterip_proc_open,
717 .read = seq_read,
718 .write = clusterip_proc_write,
719 .llseek = seq_lseek,
720 .release = clusterip_proc_release,
721};
722
723#endif /* CONFIG_PROC_FS */
724
725static int init_or_cleanup(int fini)
726{
727 int ret;
728
729 if (fini)
730 goto cleanup;
731
732 if (ipt_register_target(&clusterip_tgt)) {
733 ret = -EINVAL;
734 goto cleanup_none;
735 }
736
737 if (nf_register_hook(&cip_arp_ops) < 0) {
738 ret = -EINVAL;
739 goto cleanup_target;
740 }
741
742#ifdef CONFIG_PROC_FS
743 clusterip_procdir = proc_mkdir("ipt_CLUSTERIP", proc_net);
744 if (!clusterip_procdir) {
745 printk(KERN_ERR "CLUSTERIP: Unable to proc dir entry\n");
746 ret = -ENOMEM;
747 goto cleanup_hook;
748 }
749#endif /* CONFIG_PROC_FS */
750
751 printk(KERN_NOTICE "ClusterIP Version %s loaded successfully\n",
752 CLUSTERIP_VERSION);
753
754 return 0;
755
756cleanup:
757 printk(KERN_NOTICE "ClusterIP Version %s unloading\n",
758 CLUSTERIP_VERSION);
759#ifdef CONFIG_PROC_FS
760 remove_proc_entry(clusterip_procdir->name, clusterip_procdir->parent);
761#endif
762cleanup_hook:
763 nf_unregister_hook(&cip_arp_ops);
764cleanup_target:
765 ipt_unregister_target(&clusterip_tgt);
766cleanup_none:
767 return -EINVAL;
768}
769
770static int __init init(void)
771{
772 return init_or_cleanup(0);
773}
774
775static void __exit fini(void)
776{
777 init_or_cleanup(1);
778}
779
780module_init(init);
781module_exit(fini);