blob: 018fea3fcb5f5df2ea94fa49930cc078e13ad823 [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
29#include <linux/netfilter_ipv4/ip_tables.h>
30#include <linux/netfilter_ipv4/ipt_CLUSTERIP.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080031#include <net/netfilter/nf_conntrack_compat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
KOVACS Krisztian136e92b2005-09-16 17:00:04 -070033#define CLUSTERIP_VERSION "0.8"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35#define DEBUG_CLUSTERIP
36
37#ifdef DEBUG_CLUSTERIP
38#define DEBUGP printk
39#else
40#define DEBUGP
41#endif
42
43MODULE_LICENSE("GPL");
44MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
45MODULE_DESCRIPTION("iptables target for CLUSTERIP");
46
47struct clusterip_config {
48 struct list_head list; /* list of all configs */
49 atomic_t refcount; /* reference count */
KOVACS Krisztian44513622005-09-16 16:59:46 -070050 atomic_t entries; /* number of entries/rules
51 * referencing us */
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Al Viro6a19d612006-09-28 14:22:24 -070053 __be32 clusterip; /* the IP address */
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 u_int8_t clustermac[ETH_ALEN]; /* the MAC address */
55 struct net_device *dev; /* device */
56 u_int16_t num_total_nodes; /* total number of nodes */
KOVACS Krisztian136e92b2005-09-16 17:00:04 -070057 unsigned long local_nodes; /* node number array */
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59#ifdef CONFIG_PROC_FS
60 struct proc_dir_entry *pde; /* proc dir entry */
61#endif
62 enum clusterip_hashmode hash_mode; /* which hashing mode */
63 u_int32_t hash_initval; /* hash initialization */
64};
65
66static LIST_HEAD(clusterip_configs);
67
KOVACS Krisztian136e92b2005-09-16 17:00:04 -070068/* clusterip_lock protects the clusterip_configs list */
Patrick McHardye45b1be2005-06-21 14:01:30 -070069static DEFINE_RWLOCK(clusterip_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
71#ifdef CONFIG_PROC_FS
72static struct file_operations clusterip_proc_fops;
73static struct proc_dir_entry *clusterip_procdir;
74#endif
75
76static inline void
KOVACS Krisztian44513622005-09-16 16:59:46 -070077clusterip_config_get(struct clusterip_config *c)
78{
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 atomic_inc(&c->refcount);
80}
81
82static inline void
KOVACS Krisztian44513622005-09-16 16:59:46 -070083clusterip_config_put(struct clusterip_config *c)
84{
85 if (atomic_dec_and_test(&c->refcount))
86 kfree(c);
87}
88
89/* increase the count of entries(rules) using/referencing this config */
90static inline void
91clusterip_config_entry_get(struct clusterip_config *c)
92{
93 atomic_inc(&c->entries);
94}
95
96/* decrease the count of entries using/referencing this config. If last
97 * entry(rule) is removed, remove the config from lists, but don't free it
98 * yet, since proc-files could still be holding references */
99static inline void
100clusterip_config_entry_put(struct clusterip_config *c)
101{
102 if (atomic_dec_and_test(&c->entries)) {
Patrick McHardye45b1be2005-06-21 14:01:30 -0700103 write_lock_bh(&clusterip_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 list_del(&c->list);
Patrick McHardye45b1be2005-06-21 14:01:30 -0700105 write_unlock_bh(&clusterip_lock);
KOVACS Krisztian44513622005-09-16 16:59:46 -0700106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 dev_mc_delete(c->dev, c->clustermac, ETH_ALEN, 0);
108 dev_put(c->dev);
KOVACS Krisztian44513622005-09-16 16:59:46 -0700109
110 /* In case anyone still accesses the file, the open/close
111 * functions are also incrementing the refcount on their own,
112 * so it's safe to remove the entry even if it's in use. */
113#ifdef CONFIG_PROC_FS
114 remove_proc_entry(c->pde->name, c->pde->parent);
115#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 }
117}
118
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119static struct clusterip_config *
Al Viro6a19d612006-09-28 14:22:24 -0700120__clusterip_config_find(__be32 clusterip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121{
122 struct list_head *pos;
123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 list_for_each(pos, &clusterip_configs) {
125 struct clusterip_config *c = list_entry(pos,
126 struct clusterip_config, list);
127 if (c->clusterip == clusterip) {
128 return c;
129 }
130 }
131
132 return NULL;
133}
134
135static inline struct clusterip_config *
Al Viro6a19d612006-09-28 14:22:24 -0700136clusterip_config_find_get(__be32 clusterip, int entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137{
138 struct clusterip_config *c;
139
Patrick McHardye45b1be2005-06-21 14:01:30 -0700140 read_lock_bh(&clusterip_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 c = __clusterip_config_find(clusterip);
142 if (!c) {
Patrick McHardye45b1be2005-06-21 14:01:30 -0700143 read_unlock_bh(&clusterip_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 return NULL;
145 }
146 atomic_inc(&c->refcount);
KOVACS Krisztian44513622005-09-16 16:59:46 -0700147 if (entry)
148 atomic_inc(&c->entries);
Patrick McHardye45b1be2005-06-21 14:01:30 -0700149 read_unlock_bh(&clusterip_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
151 return c;
152}
153
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700154static void
155clusterip_config_init_nodelist(struct clusterip_config *c,
156 const struct ipt_clusterip_tgt_info *i)
157{
158 int n;
159
160 for (n = 0; n < i->num_local_nodes; n++) {
161 set_bit(i->local_nodes[n] - 1, &c->local_nodes);
162 }
163}
164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165static struct clusterip_config *
Al Viro6a19d612006-09-28 14:22:24 -0700166clusterip_config_init(struct ipt_clusterip_tgt_info *i, __be32 ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 struct net_device *dev)
168{
169 struct clusterip_config *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700171 c = kzalloc(sizeof(*c), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 if (!c)
173 return NULL;
174
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 c->dev = dev;
176 c->clusterip = ip;
177 memcpy(&c->clustermac, &i->clustermac, ETH_ALEN);
178 c->num_total_nodes = i->num_total_nodes;
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700179 clusterip_config_init_nodelist(c, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 c->hash_mode = i->hash_mode;
181 c->hash_initval = i->hash_initval;
182 atomic_set(&c->refcount, 1);
KOVACS Krisztian44513622005-09-16 16:59:46 -0700183 atomic_set(&c->entries, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
185#ifdef CONFIG_PROC_FS
Patrick McHardy76592582006-11-29 02:35:42 +0100186 {
187 char buffer[16];
188
189 /* create proc dir entry */
190 sprintf(buffer, "%u.%u.%u.%u", NIPQUAD(ip));
191 c->pde = create_proc_entry(buffer, S_IWUSR|S_IRUSR,
192 clusterip_procdir);
193 if (!c->pde) {
194 kfree(c);
195 return NULL;
196 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 }
198 c->pde->proc_fops = &clusterip_proc_fops;
199 c->pde->data = c;
200#endif
201
Patrick McHardye45b1be2005-06-21 14:01:30 -0700202 write_lock_bh(&clusterip_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 list_add(&c->list, &clusterip_configs);
Patrick McHardye45b1be2005-06-21 14:01:30 -0700204 write_unlock_bh(&clusterip_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
206 return c;
207}
208
Patrick McHardy76592582006-11-29 02:35:42 +0100209#ifdef CONFIG_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210static 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}
Patrick McHardy76592582006-11-29 02:35:42 +0100237#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
239static inline u_int32_t
240clusterip_hashfn(struct sk_buff *skb, struct clusterip_config *config)
241{
242 struct iphdr *iph = skb->nh.iph;
243 unsigned long hashval;
244 u_int16_t sport, dport;
Patrick McHardy957dc802006-05-29 18:19:56 -0700245 u_int16_t *ports;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
247 switch (iph->protocol) {
248 case IPPROTO_TCP:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 case IPPROTO_UDP:
Patrick McHardya8d0f952007-02-07 15:07:43 -0800250 case IPPROTO_UDPLITE:
Patrick McHardy957dc802006-05-29 18:19:56 -0700251 case IPPROTO_SCTP:
252 case IPPROTO_DCCP:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 case IPPROTO_ICMP:
Patrick McHardy957dc802006-05-29 18:19:56 -0700254 ports = (void *)iph+iph->ihl*4;
255 sport = ports[0];
256 dport = ports[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 break;
258 default:
259 if (net_ratelimit()) {
260 printk(KERN_NOTICE "CLUSTERIP: unknown protocol `%u'\n",
261 iph->protocol);
262 }
263 sport = dport = 0;
264 }
265
266 switch (config->hash_mode) {
267 case CLUSTERIP_HASHMODE_SIP:
268 hashval = jhash_1word(ntohl(iph->saddr),
269 config->hash_initval);
270 break;
271 case CLUSTERIP_HASHMODE_SIP_SPT:
272 hashval = jhash_2words(ntohl(iph->saddr), sport,
273 config->hash_initval);
274 break;
275 case CLUSTERIP_HASHMODE_SIP_SPT_DPT:
276 hashval = jhash_3words(ntohl(iph->saddr), sport, dport,
277 config->hash_initval);
278 break;
279 default:
280 /* to make gcc happy */
281 hashval = 0;
282 /* This cannot happen, unless the check function wasn't called
283 * at rule load time */
284 printk("CLUSTERIP: unknown mode `%u'\n", config->hash_mode);
285 BUG();
286 break;
287 }
288
289 /* node numbers are 1..n, not 0..n */
290 return ((hashval % config->num_total_nodes)+1);
291}
292
293static inline int
294clusterip_responsible(struct clusterip_config *config, u_int32_t hash)
295{
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700296 return test_bit(hash - 1, &config->local_nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297}
298
299/***********************************************************************
300 * IPTABLES TARGET
301 ***********************************************************************/
302
303static unsigned int
304target(struct sk_buff **pskb,
305 const struct net_device *in,
306 const struct net_device *out,
307 unsigned int hooknum,
Patrick McHardyc4986732006-03-20 18:02:56 -0800308 const struct xt_target *target,
Patrick McHardyfe1cb102006-08-22 00:35:47 -0700309 const void *targinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310{
311 const struct ipt_clusterip_tgt_info *cipinfo = targinfo;
312 enum ip_conntrack_info ctinfo;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800313 u_int32_t *mark, hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
315 /* don't need to clusterip_config_get() here, since refcount
316 * is only decremented by destroy() - and ip_tables guarantees
317 * that the ->target() function isn't called after ->destroy() */
318
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800319 mark = nf_ct_get_mark((*pskb), &ctinfo);
320 if (mark == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 printk(KERN_ERR "CLUSTERIP: no conntrack!\n");
322 /* FIXME: need to drop invalid ones, since replies
323 * to outgoing connections of other nodes will be
324 * marked as INVALID */
325 return NF_DROP;
326 }
327
328 /* special case: ICMP error handling. conntrack distinguishes between
329 * error messages (RELATED) and information requests (see below) */
330 if ((*pskb)->nh.iph->protocol == IPPROTO_ICMP
331 && (ctinfo == IP_CT_RELATED
Harald Welte5d927eb2005-06-22 12:37:50 -0700332 || ctinfo == IP_CT_RELATED+IP_CT_IS_REPLY))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 return IPT_CONTINUE;
334
335 /* ip_conntrack_icmp guarantees us that we only have ICMP_ECHO,
336 * TIMESTAMP, INFO_REQUEST or ADDRESS type icmp packets from here
337 * on, which all have an ID field [relevant for hashing]. */
338
339 hash = clusterip_hashfn(*pskb, cipinfo->config);
340
341 switch (ctinfo) {
342 case IP_CT_NEW:
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800343 *mark = hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 break;
345 case IP_CT_RELATED:
346 case IP_CT_RELATED+IP_CT_IS_REPLY:
347 /* FIXME: we don't handle expectations at the
348 * moment. they can arrive on a different node than
349 * the master connection (e.g. FTP passive mode) */
350 case IP_CT_ESTABLISHED:
351 case IP_CT_ESTABLISHED+IP_CT_IS_REPLY:
352 break;
353 default:
354 break;
355 }
356
357#ifdef DEBUG_CLUSTERP
358 DUMP_TUPLE(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple);
359#endif
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800360 DEBUGP("hash=%u ct_hash=%u ", hash, *mark);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 if (!clusterip_responsible(cipinfo->config, hash)) {
362 DEBUGP("not responsible\n");
363 return NF_DROP;
364 }
365 DEBUGP("responsible\n");
366
367 /* despite being received via linklayer multicast, this is
368 * actually a unicast IP packet. TCP doesn't like PACKET_MULTICAST */
369 (*pskb)->pkt_type = PACKET_HOST;
370
371 return IPT_CONTINUE;
372}
373
374static int
375checkentry(const char *tablename,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800376 const void *e_void,
Patrick McHardyc4986732006-03-20 18:02:56 -0800377 const struct xt_target *target,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 void *targinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 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 }
Al Viro6a19d612006-09-28 14:22:24 -0700394 if (e->ip.dmsk.s_addr != htonl(0xffffffff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 || 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
Yasuyuki Kozakai11078c32006-12-12 00:29:02 -0800451 if (nf_ct_l3proto_try_module_get(target->family) < 0) {
452 printk(KERN_WARNING "can't load conntrack support for "
453 "proto=%d\n", target->family);
454 return 0;
455 }
456
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 return 1;
458}
459
460/* drop reference count of cluster config when rule is deleted */
Patrick McHardyefa74162006-08-22 00:36:37 -0700461static void destroy(const struct xt_target *target, void *targinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462{
Patrick McHardyc4986732006-03-20 18:02:56 -0800463 struct ipt_clusterip_tgt_info *cipinfo = targinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
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);
Yasuyuki Kozakai11078c32006-12-12 00:29:02 -0800470
471 nf_ct_l3proto_module_put(target->family);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472}
473
Patrick McHardy1d5cd902006-03-20 18:01:14 -0800474static struct ipt_target clusterip_tgt = {
475 .name = "CLUSTERIP",
476 .target = target,
477 .targetsize = sizeof(struct ipt_clusterip_tgt_info),
478 .checkentry = checkentry,
479 .destroy = destroy,
480 .me = THIS_MODULE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481};
482
483
484/***********************************************************************
485 * ARP MANGLING CODE
486 ***********************************************************************/
487
488/* hardcoded for 48bit ethernet and 32bit ipv4 addresses */
489struct arp_payload {
490 u_int8_t src_hw[ETH_ALEN];
Al Viro6a19d612006-09-28 14:22:24 -0700491 __be32 src_ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 u_int8_t dst_hw[ETH_ALEN];
Al Viro6a19d612006-09-28 14:22:24 -0700493 __be32 dst_ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494} __attribute__ ((packed));
495
496#ifdef CLUSTERIP_DEBUG
497static void arp_print(struct arp_payload *payload)
498{
499#define HBUFFERLEN 30
500 char hbuffer[HBUFFERLEN];
501 int j,k;
502 const char hexbuf[]= "0123456789abcdef";
503
504 for (k=0, j=0; k < HBUFFERLEN-3 && j < ETH_ALEN; j++) {
505 hbuffer[k++]=hexbuf[(payload->src_hw[j]>>4)&15];
506 hbuffer[k++]=hexbuf[payload->src_hw[j]&15];
507 hbuffer[k++]=':';
508 }
509 hbuffer[--k]='\0';
510
511 printk("src %u.%u.%u.%u@%s, dst %u.%u.%u.%u\n",
512 NIPQUAD(payload->src_ip), hbuffer,
513 NIPQUAD(payload->dst_ip));
514}
515#endif
516
517static unsigned int
518arp_mangle(unsigned int hook,
519 struct sk_buff **pskb,
520 const struct net_device *in,
521 const struct net_device *out,
522 int (*okfn)(struct sk_buff *))
523{
524 struct arphdr *arp = (*pskb)->nh.arph;
525 struct arp_payload *payload;
526 struct clusterip_config *c;
527
528 /* we don't care about non-ethernet and non-ipv4 ARP */
529 if (arp->ar_hrd != htons(ARPHRD_ETHER)
530 || arp->ar_pro != htons(ETH_P_IP)
531 || arp->ar_pln != 4 || arp->ar_hln != ETH_ALEN)
532 return NF_ACCEPT;
533
Harald Welte4095ebf2005-06-28 12:49:30 -0700534 /* we only want to mangle arp requests and replies */
535 if (arp->ar_op != htons(ARPOP_REPLY)
536 && arp->ar_op != htons(ARPOP_REQUEST))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 return NF_ACCEPT;
538
539 payload = (void *)(arp+1);
540
541 /* if there is no clusterip configuration for the arp reply's
542 * source ip, we don't want to mangle it */
KOVACS Krisztian44513622005-09-16 16:59:46 -0700543 c = clusterip_config_find_get(payload->src_ip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 if (!c)
545 return NF_ACCEPT;
546
547 /* normally the linux kernel always replies to arp queries of
548 * addresses on different interfacs. However, in the CLUSTERIP case
549 * this wouldn't work, since we didn't subscribe the mcast group on
550 * other interfaces */
551 if (c->dev != out) {
552 DEBUGP("CLUSTERIP: not mangling arp reply on different "
553 "interface: cip'%s'-skb'%s'\n", c->dev->name, out->name);
554 clusterip_config_put(c);
555 return NF_ACCEPT;
556 }
557
558 /* mangle reply hardware address */
559 memcpy(payload->src_hw, c->clustermac, arp->ar_hln);
560
561#ifdef CLUSTERIP_DEBUG
562 DEBUGP(KERN_DEBUG "CLUSTERIP mangled arp reply: ");
563 arp_print(payload);
564#endif
565
566 clusterip_config_put(c);
567
568 return NF_ACCEPT;
569}
570
571static struct nf_hook_ops cip_arp_ops = {
572 .hook = arp_mangle,
573 .pf = NF_ARP,
574 .hooknum = NF_ARP_OUT,
575 .priority = -1
576};
577
578/***********************************************************************
579 * PROC DIR HANDLING
580 ***********************************************************************/
581
582#ifdef CONFIG_PROC_FS
583
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700584struct clusterip_seq_position {
585 unsigned int pos; /* position */
586 unsigned int weight; /* number of bits set == size */
587 unsigned int bit; /* current bit */
588 unsigned long val; /* current value */
589};
590
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591static void *clusterip_seq_start(struct seq_file *s, loff_t *pos)
592{
593 struct proc_dir_entry *pde = s->private;
594 struct clusterip_config *c = pde->data;
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700595 unsigned int weight;
596 u_int32_t local_nodes;
597 struct clusterip_seq_position *idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700599 /* FIXME: possible race */
600 local_nodes = c->local_nodes;
601 weight = hweight32(local_nodes);
602 if (*pos >= weight)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 return NULL;
604
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700605 idx = kmalloc(sizeof(struct clusterip_seq_position), GFP_KERNEL);
606 if (!idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 return ERR_PTR(-ENOMEM);
608
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700609 idx->pos = *pos;
610 idx->weight = weight;
611 idx->bit = ffs(local_nodes);
612 idx->val = local_nodes;
613 clear_bit(idx->bit - 1, &idx->val);
614
615 return idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616}
617
618static void *clusterip_seq_next(struct seq_file *s, void *v, loff_t *pos)
619{
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700620 struct clusterip_seq_position *idx = (struct clusterip_seq_position *)v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700622 *pos = ++idx->pos;
623 if (*pos >= idx->weight) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 kfree(v);
625 return NULL;
626 }
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700627 idx->bit = ffs(idx->val);
628 clear_bit(idx->bit - 1, &idx->val);
629 return idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630}
631
632static void clusterip_seq_stop(struct seq_file *s, void *v)
633{
634 kfree(v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635}
636
637static int clusterip_seq_show(struct seq_file *s, void *v)
638{
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700639 struct clusterip_seq_position *idx = (struct clusterip_seq_position *)v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700641 if (idx->pos != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 seq_putc(s, ',');
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700644 seq_printf(s, "%u", idx->bit);
645
646 if (idx->pos == idx->weight - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 seq_putc(s, '\n');
648
649 return 0;
650}
651
652static struct seq_operations clusterip_seq_ops = {
653 .start = clusterip_seq_start,
654 .next = clusterip_seq_next,
655 .stop = clusterip_seq_stop,
656 .show = clusterip_seq_show,
657};
658
659static int clusterip_proc_open(struct inode *inode, struct file *file)
660{
661 int ret = seq_open(file, &clusterip_seq_ops);
662
663 if (!ret) {
664 struct seq_file *sf = file->private_data;
665 struct proc_dir_entry *pde = PDE(inode);
666 struct clusterip_config *c = pde->data;
667
668 sf->private = pde;
669
670 clusterip_config_get(c);
671 }
672
673 return ret;
674}
675
676static int clusterip_proc_release(struct inode *inode, struct file *file)
677{
678 struct proc_dir_entry *pde = PDE(inode);
679 struct clusterip_config *c = pde->data;
680 int ret;
681
682 ret = seq_release(inode, file);
683
684 if (!ret)
685 clusterip_config_put(c);
686
687 return ret;
688}
689
690static ssize_t clusterip_proc_write(struct file *file, const char __user *input,
691 size_t size, loff_t *ofs)
692{
693#define PROC_WRITELEN 10
694 char buffer[PROC_WRITELEN+1];
Josef Sipek6df81ab2006-12-08 02:37:24 -0800695 struct proc_dir_entry *pde = PDE(file->f_path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 struct clusterip_config *c = pde->data;
697 unsigned long nodenum;
698
699 if (copy_from_user(buffer, input, PROC_WRITELEN))
700 return -EFAULT;
701
702 if (*buffer == '+') {
703 nodenum = simple_strtoul(buffer+1, NULL, 10);
704 if (clusterip_add_node(c, nodenum))
705 return -ENOMEM;
706 } else if (*buffer == '-') {
707 nodenum = simple_strtoul(buffer+1, NULL,10);
708 if (clusterip_del_node(c, nodenum))
709 return -ENOENT;
710 } else
711 return -EIO;
712
713 return size;
714}
715
716static struct file_operations clusterip_proc_fops = {
717 .owner = THIS_MODULE,
718 .open = clusterip_proc_open,
719 .read = seq_read,
720 .write = clusterip_proc_write,
721 .llseek = seq_lseek,
722 .release = clusterip_proc_release,
723};
724
725#endif /* CONFIG_PROC_FS */
726
Patrick McHardy32292a72006-04-06 14:11:30 -0700727static int __init ipt_clusterip_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728{
729 int ret;
730
Patrick McHardy32292a72006-04-06 14:11:30 -0700731 ret = ipt_register_target(&clusterip_tgt);
732 if (ret < 0)
733 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
Patrick McHardy32292a72006-04-06 14:11:30 -0700735 ret = nf_register_hook(&cip_arp_ops);
736 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 goto cleanup_target;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
739#ifdef CONFIG_PROC_FS
740 clusterip_procdir = proc_mkdir("ipt_CLUSTERIP", proc_net);
741 if (!clusterip_procdir) {
742 printk(KERN_ERR "CLUSTERIP: Unable to proc dir entry\n");
743 ret = -ENOMEM;
744 goto cleanup_hook;
745 }
746#endif /* CONFIG_PROC_FS */
747
748 printk(KERN_NOTICE "ClusterIP Version %s loaded successfully\n",
749 CLUSTERIP_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 return 0;
751
Patrick McHardy76592582006-11-29 02:35:42 +0100752#ifdef CONFIG_PROC_FS
Patrick McHardy32292a72006-04-06 14:11:30 -0700753cleanup_hook:
754 nf_unregister_hook(&cip_arp_ops);
Patrick McHardy76592582006-11-29 02:35:42 +0100755#endif /* CONFIG_PROC_FS */
Patrick McHardy32292a72006-04-06 14:11:30 -0700756cleanup_target:
757 ipt_unregister_target(&clusterip_tgt);
758 return ret;
759}
760
761static void __exit ipt_clusterip_fini(void)
762{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 printk(KERN_NOTICE "ClusterIP Version %s unloading\n",
764 CLUSTERIP_VERSION);
765#ifdef CONFIG_PROC_FS
766 remove_proc_entry(clusterip_procdir->name, clusterip_procdir->parent);
767#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 nf_unregister_hook(&cip_arp_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 ipt_unregister_target(&clusterip_tgt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770}
771
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800772module_init(ipt_clusterip_init);
773module_exit(ipt_clusterip_fini);