blob: 343c2abdc1a0829d458a202fe00012376d48a8fb [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>
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>
22#include <linux/proc_fs.h>
23#include <linux/seq_file.h>
24
25#include <net/checksum.h>
26
27#include <linux/netfilter_arp.h>
28
Jan Engelhardt6709dbb2007-02-07 15:11:19 -080029#include <linux/netfilter/x_tables.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#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
44MODULE_LICENSE("GPL");
45MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
46MODULE_DESCRIPTION("iptables target for CLUSTERIP");
47
48struct clusterip_config {
49 struct list_head list; /* list of all configs */
50 atomic_t refcount; /* reference count */
KOVACS Krisztian44513622005-09-16 16:59:46 -070051 atomic_t entries; /* number of entries/rules
52 * referencing us */
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Al Viro6a19d612006-09-28 14:22:24 -070054 __be32 clusterip; /* the IP address */
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 u_int8_t clustermac[ETH_ALEN]; /* the MAC address */
56 struct net_device *dev; /* device */
57 u_int16_t num_total_nodes; /* total number of nodes */
KOVACS Krisztian136e92b2005-09-16 17:00:04 -070058 unsigned long local_nodes; /* node number array */
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60#ifdef CONFIG_PROC_FS
61 struct proc_dir_entry *pde; /* proc dir entry */
62#endif
63 enum clusterip_hashmode hash_mode; /* which hashing mode */
64 u_int32_t hash_initval; /* hash initialization */
65};
66
67static LIST_HEAD(clusterip_configs);
68
KOVACS Krisztian136e92b2005-09-16 17:00:04 -070069/* clusterip_lock protects the clusterip_configs list */
Patrick McHardye45b1be2005-06-21 14:01:30 -070070static DEFINE_RWLOCK(clusterip_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
72#ifdef CONFIG_PROC_FS
73static struct file_operations clusterip_proc_fops;
74static struct proc_dir_entry *clusterip_procdir;
75#endif
76
77static inline void
KOVACS Krisztian44513622005-09-16 16:59:46 -070078clusterip_config_get(struct clusterip_config *c)
79{
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 atomic_inc(&c->refcount);
81}
82
83static inline void
KOVACS Krisztian44513622005-09-16 16:59:46 -070084clusterip_config_put(struct clusterip_config *c)
85{
86 if (atomic_dec_and_test(&c->refcount))
87 kfree(c);
88}
89
90/* increase the count of entries(rules) using/referencing this config */
91static inline void
92clusterip_config_entry_get(struct clusterip_config *c)
93{
94 atomic_inc(&c->entries);
95}
96
97/* decrease the count of entries using/referencing this config. If last
98 * entry(rule) is removed, remove the config from lists, but don't free it
99 * yet, since proc-files could still be holding references */
100static inline void
101clusterip_config_entry_put(struct clusterip_config *c)
102{
103 if (atomic_dec_and_test(&c->entries)) {
Patrick McHardye45b1be2005-06-21 14:01:30 -0700104 write_lock_bh(&clusterip_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 list_del(&c->list);
Patrick McHardye45b1be2005-06-21 14:01:30 -0700106 write_unlock_bh(&clusterip_lock);
KOVACS Krisztian44513622005-09-16 16:59:46 -0700107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 dev_mc_delete(c->dev, c->clustermac, ETH_ALEN, 0);
109 dev_put(c->dev);
KOVACS Krisztian44513622005-09-16 16:59:46 -0700110
111 /* In case anyone still accesses the file, the open/close
112 * functions are also incrementing the refcount on their own,
113 * so it's safe to remove the entry even if it's in use. */
114#ifdef CONFIG_PROC_FS
115 remove_proc_entry(c->pde->name, c->pde->parent);
116#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 }
118}
119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120static struct clusterip_config *
Al Viro6a19d612006-09-28 14:22:24 -0700121__clusterip_config_find(__be32 clusterip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122{
123 struct list_head *pos;
124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 list_for_each(pos, &clusterip_configs) {
126 struct clusterip_config *c = list_entry(pos,
127 struct clusterip_config, list);
128 if (c->clusterip == clusterip) {
129 return c;
130 }
131 }
132
133 return NULL;
134}
135
136static inline struct clusterip_config *
Al Viro6a19d612006-09-28 14:22:24 -0700137clusterip_config_find_get(__be32 clusterip, int entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138{
139 struct clusterip_config *c;
140
Patrick McHardye45b1be2005-06-21 14:01:30 -0700141 read_lock_bh(&clusterip_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 c = __clusterip_config_find(clusterip);
143 if (!c) {
Patrick McHardye45b1be2005-06-21 14:01:30 -0700144 read_unlock_bh(&clusterip_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 return NULL;
146 }
147 atomic_inc(&c->refcount);
KOVACS Krisztian44513622005-09-16 16:59:46 -0700148 if (entry)
149 atomic_inc(&c->entries);
Patrick McHardye45b1be2005-06-21 14:01:30 -0700150 read_unlock_bh(&clusterip_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
152 return c;
153}
154
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700155static void
156clusterip_config_init_nodelist(struct clusterip_config *c,
157 const struct ipt_clusterip_tgt_info *i)
158{
159 int n;
160
161 for (n = 0; n < i->num_local_nodes; n++) {
162 set_bit(i->local_nodes[n] - 1, &c->local_nodes);
163 }
164}
165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166static struct clusterip_config *
Al Viro6a19d612006-09-28 14:22:24 -0700167clusterip_config_init(struct ipt_clusterip_tgt_info *i, __be32 ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 struct net_device *dev)
169{
170 struct clusterip_config *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700172 c = kzalloc(sizeof(*c), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 if (!c)
174 return NULL;
175
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 c->dev = dev;
177 c->clusterip = ip;
178 memcpy(&c->clustermac, &i->clustermac, ETH_ALEN);
179 c->num_total_nodes = i->num_total_nodes;
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700180 clusterip_config_init_nodelist(c, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 c->hash_mode = i->hash_mode;
182 c->hash_initval = i->hash_initval;
183 atomic_set(&c->refcount, 1);
KOVACS Krisztian44513622005-09-16 16:59:46 -0700184 atomic_set(&c->entries, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
186#ifdef CONFIG_PROC_FS
Patrick McHardy76592582006-11-29 02:35:42 +0100187 {
188 char buffer[16];
189
190 /* create proc dir entry */
191 sprintf(buffer, "%u.%u.%u.%u", NIPQUAD(ip));
192 c->pde = create_proc_entry(buffer, S_IWUSR|S_IRUSR,
193 clusterip_procdir);
194 if (!c->pde) {
195 kfree(c);
196 return NULL;
197 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 }
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
Patrick McHardy76592582006-11-29 02:35:42 +0100210#ifdef CONFIG_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211static int
212clusterip_add_node(struct clusterip_config *c, u_int16_t nodenum)
213{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700215 if (nodenum == 0 ||
216 nodenum > c->num_total_nodes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700219 /* check if we already have this number in our bitfield */
220 if (test_and_set_bit(nodenum - 1, &c->local_nodes))
221 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 return 0;
224}
225
226static int
227clusterip_del_node(struct clusterip_config *c, u_int16_t nodenum)
228{
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700229 if (nodenum == 0 ||
230 nodenum > c->num_total_nodes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700233 if (test_and_clear_bit(nodenum - 1, &c->local_nodes))
234 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 return 1;
237}
Patrick McHardy76592582006-11-29 02:35:42 +0100238#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
240static inline u_int32_t
241clusterip_hashfn(struct sk_buff *skb, struct clusterip_config *config)
242{
243 struct iphdr *iph = skb->nh.iph;
244 unsigned long hashval;
245 u_int16_t sport, dport;
Patrick McHardy957dc802006-05-29 18:19:56 -0700246 u_int16_t *ports;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
248 switch (iph->protocol) {
249 case IPPROTO_TCP:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 case IPPROTO_UDP:
Patrick McHardya8d0f952007-02-07 15:07:43 -0800251 case IPPROTO_UDPLITE:
Patrick McHardy957dc802006-05-29 18:19:56 -0700252 case IPPROTO_SCTP:
253 case IPPROTO_DCCP:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 case IPPROTO_ICMP:
Patrick McHardy957dc802006-05-29 18:19:56 -0700255 ports = (void *)iph+iph->ihl*4;
256 sport = ports[0];
257 dport = ports[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 break;
259 default:
260 if (net_ratelimit()) {
261 printk(KERN_NOTICE "CLUSTERIP: unknown protocol `%u'\n",
262 iph->protocol);
263 }
264 sport = dport = 0;
265 }
266
267 switch (config->hash_mode) {
268 case CLUSTERIP_HASHMODE_SIP:
269 hashval = jhash_1word(ntohl(iph->saddr),
270 config->hash_initval);
271 break;
272 case CLUSTERIP_HASHMODE_SIP_SPT:
273 hashval = jhash_2words(ntohl(iph->saddr), sport,
274 config->hash_initval);
275 break;
276 case CLUSTERIP_HASHMODE_SIP_SPT_DPT:
277 hashval = jhash_3words(ntohl(iph->saddr), sport, dport,
278 config->hash_initval);
279 break;
280 default:
281 /* to make gcc happy */
282 hashval = 0;
283 /* This cannot happen, unless the check function wasn't called
284 * at rule load time */
285 printk("CLUSTERIP: unknown mode `%u'\n", config->hash_mode);
286 BUG();
287 break;
288 }
289
290 /* node numbers are 1..n, not 0..n */
291 return ((hashval % config->num_total_nodes)+1);
292}
293
294static inline int
295clusterip_responsible(struct clusterip_config *config, u_int32_t hash)
296{
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700297 return test_bit(hash - 1, &config->local_nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298}
299
300/***********************************************************************
301 * IPTABLES TARGET
302 ***********************************************************************/
303
304static unsigned int
305target(struct sk_buff **pskb,
306 const struct net_device *in,
307 const struct net_device *out,
308 unsigned int hooknum,
Patrick McHardyc4986732006-03-20 18:02:56 -0800309 const struct xt_target *target,
Patrick McHardyfe1cb102006-08-22 00:35:47 -0700310 const void *targinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311{
312 const struct ipt_clusterip_tgt_info *cipinfo = targinfo;
313 enum ip_conntrack_info ctinfo;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800314 u_int32_t *mark, hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
316 /* don't need to clusterip_config_get() here, since refcount
317 * is only decremented by destroy() - and ip_tables guarantees
318 * that the ->target() function isn't called after ->destroy() */
319
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800320 mark = nf_ct_get_mark((*pskb), &ctinfo);
321 if (mark == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 printk(KERN_ERR "CLUSTERIP: no conntrack!\n");
323 /* FIXME: need to drop invalid ones, since replies
324 * to outgoing connections of other nodes will be
325 * marked as INVALID */
326 return NF_DROP;
327 }
328
329 /* special case: ICMP error handling. conntrack distinguishes between
330 * error messages (RELATED) and information requests (see below) */
331 if ((*pskb)->nh.iph->protocol == IPPROTO_ICMP
332 && (ctinfo == IP_CT_RELATED
Harald Welte5d927eb2005-06-22 12:37:50 -0700333 || ctinfo == IP_CT_RELATED+IP_CT_IS_REPLY))
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800334 return XT_CONTINUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
336 /* ip_conntrack_icmp guarantees us that we only have ICMP_ECHO,
337 * TIMESTAMP, INFO_REQUEST or ADDRESS type icmp packets from here
338 * on, which all have an ID field [relevant for hashing]. */
339
340 hash = clusterip_hashfn(*pskb, cipinfo->config);
341
342 switch (ctinfo) {
343 case IP_CT_NEW:
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800344 *mark = hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 break;
346 case IP_CT_RELATED:
347 case IP_CT_RELATED+IP_CT_IS_REPLY:
348 /* FIXME: we don't handle expectations at the
349 * moment. they can arrive on a different node than
350 * the master connection (e.g. FTP passive mode) */
351 case IP_CT_ESTABLISHED:
352 case IP_CT_ESTABLISHED+IP_CT_IS_REPLY:
353 break;
354 default:
355 break;
356 }
357
358#ifdef DEBUG_CLUSTERP
359 DUMP_TUPLE(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple);
360#endif
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800361 DEBUGP("hash=%u ct_hash=%u ", hash, *mark);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 if (!clusterip_responsible(cipinfo->config, hash)) {
363 DEBUGP("not responsible\n");
364 return NF_DROP;
365 }
366 DEBUGP("responsible\n");
367
368 /* despite being received via linklayer multicast, this is
369 * actually a unicast IP packet. TCP doesn't like PACKET_MULTICAST */
370 (*pskb)->pkt_type = PACKET_HOST;
371
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800372 return XT_CONTINUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373}
374
375static int
376checkentry(const char *tablename,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800377 const void *e_void,
Patrick McHardyc4986732006-03-20 18:02:56 -0800378 const struct xt_target *target,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 void *targinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 unsigned int hook_mask)
381{
382 struct ipt_clusterip_tgt_info *cipinfo = targinfo;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800383 const struct ipt_entry *e = e_void;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
385 struct clusterip_config *config;
386
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 if (cipinfo->hash_mode != CLUSTERIP_HASHMODE_SIP &&
388 cipinfo->hash_mode != CLUSTERIP_HASHMODE_SIP_SPT &&
389 cipinfo->hash_mode != CLUSTERIP_HASHMODE_SIP_SPT_DPT) {
390 printk(KERN_WARNING "CLUSTERIP: unknown mode `%u'\n",
391 cipinfo->hash_mode);
392 return 0;
393
394 }
Al Viro6a19d612006-09-28 14:22:24 -0700395 if (e->ip.dmsk.s_addr != htonl(0xffffffff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 || e->ip.dst.s_addr == 0) {
397 printk(KERN_ERR "CLUSTERIP: Please specify destination IP\n");
398 return 0;
399 }
400
401 /* FIXME: further sanity checks */
402
KOVACS Krisztian44513622005-09-16 16:59:46 -0700403 config = clusterip_config_find_get(e->ip.dst.s_addr, 1);
404 if (config) {
405 if (cipinfo->config != NULL) {
406 /* Case A: This is an entry that gets reloaded, since
407 * it still has a cipinfo->config pointer. Simply
408 * increase the entry refcount and return */
409 if (cipinfo->config != config) {
410 printk(KERN_ERR "CLUSTERIP: Reloaded entry "
411 "has invalid config pointer!\n");
412 return 0;
413 }
414 clusterip_config_entry_get(cipinfo->config);
415 } else {
416 /* Case B: This is a new rule referring to an existing
417 * clusterip config. */
418 cipinfo->config = config;
419 clusterip_config_entry_get(cipinfo->config);
420 }
421 } else {
422 /* Case C: This is a completely new clusterip config */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 if (!(cipinfo->flags & CLUSTERIP_FLAG_NEW)) {
424 printk(KERN_WARNING "CLUSTERIP: no config found for %u.%u.%u.%u, need 'new'\n", NIPQUAD(e->ip.dst.s_addr));
425 return 0;
426 } else {
427 struct net_device *dev;
428
429 if (e->ip.iniface[0] == '\0') {
430 printk(KERN_WARNING "CLUSTERIP: Please specify an interface name\n");
431 return 0;
432 }
433
434 dev = dev_get_by_name(e->ip.iniface);
435 if (!dev) {
436 printk(KERN_WARNING "CLUSTERIP: no such interface %s\n", e->ip.iniface);
437 return 0;
438 }
439
440 config = clusterip_config_init(cipinfo,
441 e->ip.dst.s_addr, dev);
442 if (!config) {
443 printk(KERN_WARNING "CLUSTERIP: cannot allocate config\n");
444 dev_put(dev);
445 return 0;
446 }
447 dev_mc_add(config->dev,config->clustermac, ETH_ALEN, 0);
448 }
KOVACS Krisztian44513622005-09-16 16:59:46 -0700449 cipinfo->config = config;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 }
451
Yasuyuki Kozakai11078c32006-12-12 00:29:02 -0800452 if (nf_ct_l3proto_try_module_get(target->family) < 0) {
453 printk(KERN_WARNING "can't load conntrack support for "
454 "proto=%d\n", target->family);
455 return 0;
456 }
457
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 return 1;
459}
460
461/* drop reference count of cluster config when rule is deleted */
Patrick McHardyefa74162006-08-22 00:36:37 -0700462static void destroy(const struct xt_target *target, void *targinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463{
Patrick McHardyc4986732006-03-20 18:02:56 -0800464 struct ipt_clusterip_tgt_info *cipinfo = targinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
KOVACS Krisztian44513622005-09-16 16:59:46 -0700466 /* if no more entries are referencing the config, remove it
467 * from the list and destroy the proc entry */
468 clusterip_config_entry_put(cipinfo->config);
469
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 clusterip_config_put(cipinfo->config);
Yasuyuki Kozakai11078c32006-12-12 00:29:02 -0800471
472 nf_ct_l3proto_module_put(target->family);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473}
474
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800475static struct xt_target clusterip_tgt = {
Patrick McHardy1d5cd902006-03-20 18:01:14 -0800476 .name = "CLUSTERIP",
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800477 .family = AF_INET,
Patrick McHardy1d5cd902006-03-20 18:01:14 -0800478 .target = target,
479 .targetsize = sizeof(struct ipt_clusterip_tgt_info),
480 .checkentry = checkentry,
481 .destroy = destroy,
482 .me = THIS_MODULE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483};
484
485
486/***********************************************************************
487 * ARP MANGLING CODE
488 ***********************************************************************/
489
490/* hardcoded for 48bit ethernet and 32bit ipv4 addresses */
491struct arp_payload {
492 u_int8_t src_hw[ETH_ALEN];
Al Viro6a19d612006-09-28 14:22:24 -0700493 __be32 src_ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 u_int8_t dst_hw[ETH_ALEN];
Al Viro6a19d612006-09-28 14:22:24 -0700495 __be32 dst_ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496} __attribute__ ((packed));
497
498#ifdef CLUSTERIP_DEBUG
499static void arp_print(struct arp_payload *payload)
500{
501#define HBUFFERLEN 30
502 char hbuffer[HBUFFERLEN];
503 int j,k;
504 const char hexbuf[]= "0123456789abcdef";
505
506 for (k=0, j=0; k < HBUFFERLEN-3 && j < ETH_ALEN; j++) {
507 hbuffer[k++]=hexbuf[(payload->src_hw[j]>>4)&15];
508 hbuffer[k++]=hexbuf[payload->src_hw[j]&15];
509 hbuffer[k++]=':';
510 }
511 hbuffer[--k]='\0';
512
513 printk("src %u.%u.%u.%u@%s, dst %u.%u.%u.%u\n",
514 NIPQUAD(payload->src_ip), hbuffer,
515 NIPQUAD(payload->dst_ip));
516}
517#endif
518
519static unsigned int
520arp_mangle(unsigned int hook,
521 struct sk_buff **pskb,
522 const struct net_device *in,
523 const struct net_device *out,
524 int (*okfn)(struct sk_buff *))
525{
526 struct arphdr *arp = (*pskb)->nh.arph;
527 struct arp_payload *payload;
528 struct clusterip_config *c;
529
530 /* we don't care about non-ethernet and non-ipv4 ARP */
531 if (arp->ar_hrd != htons(ARPHRD_ETHER)
532 || arp->ar_pro != htons(ETH_P_IP)
533 || arp->ar_pln != 4 || arp->ar_hln != ETH_ALEN)
534 return NF_ACCEPT;
535
Harald Welte4095ebf2005-06-28 12:49:30 -0700536 /* we only want to mangle arp requests and replies */
537 if (arp->ar_op != htons(ARPOP_REPLY)
538 && arp->ar_op != htons(ARPOP_REQUEST))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 return NF_ACCEPT;
540
541 payload = (void *)(arp+1);
542
543 /* if there is no clusterip configuration for the arp reply's
544 * source ip, we don't want to mangle it */
KOVACS Krisztian44513622005-09-16 16:59:46 -0700545 c = clusterip_config_find_get(payload->src_ip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 if (!c)
547 return NF_ACCEPT;
548
549 /* normally the linux kernel always replies to arp queries of
550 * addresses on different interfacs. However, in the CLUSTERIP case
551 * this wouldn't work, since we didn't subscribe the mcast group on
552 * other interfaces */
553 if (c->dev != out) {
554 DEBUGP("CLUSTERIP: not mangling arp reply on different "
555 "interface: cip'%s'-skb'%s'\n", c->dev->name, out->name);
556 clusterip_config_put(c);
557 return NF_ACCEPT;
558 }
559
560 /* mangle reply hardware address */
561 memcpy(payload->src_hw, c->clustermac, arp->ar_hln);
562
563#ifdef CLUSTERIP_DEBUG
564 DEBUGP(KERN_DEBUG "CLUSTERIP mangled arp reply: ");
565 arp_print(payload);
566#endif
567
568 clusterip_config_put(c);
569
570 return NF_ACCEPT;
571}
572
573static struct nf_hook_ops cip_arp_ops = {
574 .hook = arp_mangle,
575 .pf = NF_ARP,
576 .hooknum = NF_ARP_OUT,
577 .priority = -1
578};
579
580/***********************************************************************
581 * PROC DIR HANDLING
582 ***********************************************************************/
583
584#ifdef CONFIG_PROC_FS
585
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700586struct clusterip_seq_position {
587 unsigned int pos; /* position */
588 unsigned int weight; /* number of bits set == size */
589 unsigned int bit; /* current bit */
590 unsigned long val; /* current value */
591};
592
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593static void *clusterip_seq_start(struct seq_file *s, loff_t *pos)
594{
595 struct proc_dir_entry *pde = s->private;
596 struct clusterip_config *c = pde->data;
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700597 unsigned int weight;
598 u_int32_t local_nodes;
599 struct clusterip_seq_position *idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700601 /* FIXME: possible race */
602 local_nodes = c->local_nodes;
603 weight = hweight32(local_nodes);
604 if (*pos >= weight)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 return NULL;
606
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700607 idx = kmalloc(sizeof(struct clusterip_seq_position), GFP_KERNEL);
608 if (!idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 return ERR_PTR(-ENOMEM);
610
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700611 idx->pos = *pos;
612 idx->weight = weight;
613 idx->bit = ffs(local_nodes);
614 idx->val = local_nodes;
615 clear_bit(idx->bit - 1, &idx->val);
616
617 return idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618}
619
620static void *clusterip_seq_next(struct seq_file *s, void *v, loff_t *pos)
621{
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700622 struct clusterip_seq_position *idx = (struct clusterip_seq_position *)v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700624 *pos = ++idx->pos;
625 if (*pos >= idx->weight) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 kfree(v);
627 return NULL;
628 }
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700629 idx->bit = ffs(idx->val);
630 clear_bit(idx->bit - 1, &idx->val);
631 return idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632}
633
634static void clusterip_seq_stop(struct seq_file *s, void *v)
635{
636 kfree(v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637}
638
639static int clusterip_seq_show(struct seq_file *s, void *v)
640{
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700641 struct clusterip_seq_position *idx = (struct clusterip_seq_position *)v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700643 if (idx->pos != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 seq_putc(s, ',');
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700646 seq_printf(s, "%u", idx->bit);
647
648 if (idx->pos == idx->weight - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 seq_putc(s, '\n');
650
651 return 0;
652}
653
654static struct seq_operations clusterip_seq_ops = {
655 .start = clusterip_seq_start,
656 .next = clusterip_seq_next,
657 .stop = clusterip_seq_stop,
658 .show = clusterip_seq_show,
659};
660
661static int clusterip_proc_open(struct inode *inode, struct file *file)
662{
663 int ret = seq_open(file, &clusterip_seq_ops);
664
665 if (!ret) {
666 struct seq_file *sf = file->private_data;
667 struct proc_dir_entry *pde = PDE(inode);
668 struct clusterip_config *c = pde->data;
669
670 sf->private = pde;
671
672 clusterip_config_get(c);
673 }
674
675 return ret;
676}
677
678static int clusterip_proc_release(struct inode *inode, struct file *file)
679{
680 struct proc_dir_entry *pde = PDE(inode);
681 struct clusterip_config *c = pde->data;
682 int ret;
683
684 ret = seq_release(inode, file);
685
686 if (!ret)
687 clusterip_config_put(c);
688
689 return ret;
690}
691
692static ssize_t clusterip_proc_write(struct file *file, const char __user *input,
693 size_t size, loff_t *ofs)
694{
695#define PROC_WRITELEN 10
696 char buffer[PROC_WRITELEN+1];
Josef Sipek6df81ab2006-12-08 02:37:24 -0800697 struct proc_dir_entry *pde = PDE(file->f_path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 struct clusterip_config *c = pde->data;
699 unsigned long nodenum;
700
701 if (copy_from_user(buffer, input, PROC_WRITELEN))
702 return -EFAULT;
703
704 if (*buffer == '+') {
705 nodenum = simple_strtoul(buffer+1, NULL, 10);
706 if (clusterip_add_node(c, nodenum))
707 return -ENOMEM;
708 } else if (*buffer == '-') {
709 nodenum = simple_strtoul(buffer+1, NULL,10);
710 if (clusterip_del_node(c, nodenum))
711 return -ENOENT;
712 } else
713 return -EIO;
714
715 return size;
716}
717
718static struct file_operations clusterip_proc_fops = {
719 .owner = THIS_MODULE,
720 .open = clusterip_proc_open,
721 .read = seq_read,
722 .write = clusterip_proc_write,
723 .llseek = seq_lseek,
724 .release = clusterip_proc_release,
725};
726
727#endif /* CONFIG_PROC_FS */
728
Patrick McHardy32292a72006-04-06 14:11:30 -0700729static int __init ipt_clusterip_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730{
731 int ret;
732
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800733 ret = xt_register_target(&clusterip_tgt);
Patrick McHardy32292a72006-04-06 14:11:30 -0700734 if (ret < 0)
735 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
Patrick McHardy32292a72006-04-06 14:11:30 -0700737 ret = nf_register_hook(&cip_arp_ops);
738 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 goto cleanup_target;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
741#ifdef CONFIG_PROC_FS
742 clusterip_procdir = proc_mkdir("ipt_CLUSTERIP", proc_net);
743 if (!clusterip_procdir) {
744 printk(KERN_ERR "CLUSTERIP: Unable to proc dir entry\n");
745 ret = -ENOMEM;
746 goto cleanup_hook;
747 }
748#endif /* CONFIG_PROC_FS */
749
750 printk(KERN_NOTICE "ClusterIP Version %s loaded successfully\n",
751 CLUSTERIP_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 return 0;
753
Patrick McHardy76592582006-11-29 02:35:42 +0100754#ifdef CONFIG_PROC_FS
Patrick McHardy32292a72006-04-06 14:11:30 -0700755cleanup_hook:
756 nf_unregister_hook(&cip_arp_ops);
Patrick McHardy76592582006-11-29 02:35:42 +0100757#endif /* CONFIG_PROC_FS */
Patrick McHardy32292a72006-04-06 14:11:30 -0700758cleanup_target:
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800759 xt_unregister_target(&clusterip_tgt);
Patrick McHardy32292a72006-04-06 14:11:30 -0700760 return ret;
761}
762
763static void __exit ipt_clusterip_fini(void)
764{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 printk(KERN_NOTICE "ClusterIP Version %s unloading\n",
766 CLUSTERIP_VERSION);
767#ifdef CONFIG_PROC_FS
768 remove_proc_entry(clusterip_procdir->name, clusterip_procdir->parent);
769#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 nf_unregister_hook(&cip_arp_ops);
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800771 xt_unregister_target(&clusterip_tgt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772}
773
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800774module_init(ipt_clusterip_init);
775module_exit(ipt_clusterip_fini);