blob: 2de7ae0180aa0e777916449741f97826f229dac7 [file] [log] [blame]
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001/* Cluster IP hashmark target
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * (C) 2003-2004 by Harald Welte <laforge@netfilter.org>
3 * based on ideas of Fabio Olive Leite <olive@unixforge.org>
4 *
5 * Development of this code funded by SuSE Linux AG, http://www.suse.com/
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 *
11 */
12#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/proc_fs.h>
14#include <linux/jhash.h>
KOVACS Krisztian136e92b2005-09-16 17:00:04 -070015#include <linux/bitops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/skbuff.h>
17#include <linux/ip.h>
18#include <linux/tcp.h>
19#include <linux/udp.h>
20#include <linux/icmp.h>
21#include <linux/if_arp.h>
22#include <linux/proc_fs.h>
23#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/netfilter_arp.h>
Jan Engelhardt6709dbb2007-02-07 15:11:19 -080025#include <linux/netfilter/x_tables.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/netfilter_ipv4/ip_tables.h>
27#include <linux/netfilter_ipv4/ipt_CLUSTERIP.h>
Patrick McHardy587aa6412007-03-14 16:37:25 -070028#include <net/netfilter/nf_conntrack.h>
29#include <net/checksum.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
KOVACS Krisztian136e92b2005-09-16 17:00:04 -070031#define CLUSTERIP_VERSION "0.8"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33#define DEBUG_CLUSTERIP
34
35#ifdef DEBUG_CLUSTERIP
36#define DEBUGP printk
37#else
38#define DEBUGP
39#endif
40
41MODULE_LICENSE("GPL");
42MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
43MODULE_DESCRIPTION("iptables target for CLUSTERIP");
44
45struct clusterip_config {
46 struct list_head list; /* list of all configs */
47 atomic_t refcount; /* reference count */
KOVACS Krisztian44513622005-09-16 16:59:46 -070048 atomic_t entries; /* number of entries/rules
49 * referencing us */
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Al Viro6a19d612006-09-28 14:22:24 -070051 __be32 clusterip; /* the IP address */
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 u_int8_t clustermac[ETH_ALEN]; /* the MAC address */
53 struct net_device *dev; /* device */
54 u_int16_t num_total_nodes; /* total number of nodes */
KOVACS Krisztian136e92b2005-09-16 17:00:04 -070055 unsigned long local_nodes; /* node number array */
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57#ifdef CONFIG_PROC_FS
58 struct proc_dir_entry *pde; /* proc dir entry */
59#endif
60 enum clusterip_hashmode hash_mode; /* which hashing mode */
61 u_int32_t hash_initval; /* hash initialization */
62};
63
64static LIST_HEAD(clusterip_configs);
65
KOVACS Krisztian136e92b2005-09-16 17:00:04 -070066/* clusterip_lock protects the clusterip_configs list */
Patrick McHardye45b1be2005-06-21 14:01:30 -070067static DEFINE_RWLOCK(clusterip_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69#ifdef CONFIG_PROC_FS
Arjan van de Ven9a321442007-02-12 00:55:35 -080070static const struct file_operations clusterip_proc_fops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071static struct proc_dir_entry *clusterip_procdir;
72#endif
73
74static inline void
KOVACS Krisztian44513622005-09-16 16:59:46 -070075clusterip_config_get(struct clusterip_config *c)
76{
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 atomic_inc(&c->refcount);
78}
79
80static inline void
KOVACS Krisztian44513622005-09-16 16:59:46 -070081clusterip_config_put(struct clusterip_config *c)
82{
83 if (atomic_dec_and_test(&c->refcount))
84 kfree(c);
85}
86
87/* increase the count of entries(rules) using/referencing this config */
88static inline void
89clusterip_config_entry_get(struct clusterip_config *c)
90{
91 atomic_inc(&c->entries);
92}
93
94/* decrease the count of entries using/referencing this config. If last
95 * entry(rule) is removed, remove the config from lists, but don't free it
96 * yet, since proc-files could still be holding references */
97static inline void
98clusterip_config_entry_put(struct clusterip_config *c)
99{
100 if (atomic_dec_and_test(&c->entries)) {
Patrick McHardye45b1be2005-06-21 14:01:30 -0700101 write_lock_bh(&clusterip_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 list_del(&c->list);
Patrick McHardye45b1be2005-06-21 14:01:30 -0700103 write_unlock_bh(&clusterip_lock);
KOVACS Krisztian44513622005-09-16 16:59:46 -0700104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 dev_mc_delete(c->dev, c->clustermac, ETH_ALEN, 0);
106 dev_put(c->dev);
KOVACS Krisztian44513622005-09-16 16:59:46 -0700107
108 /* In case anyone still accesses the file, the open/close
109 * functions are also incrementing the refcount on their own,
110 * so it's safe to remove the entry even if it's in use. */
111#ifdef CONFIG_PROC_FS
112 remove_proc_entry(c->pde->name, c->pde->parent);
113#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 }
115}
116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117static struct clusterip_config *
Al Viro6a19d612006-09-28 14:22:24 -0700118__clusterip_config_find(__be32 clusterip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119{
120 struct list_head *pos;
121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 list_for_each(pos, &clusterip_configs) {
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900123 struct clusterip_config *c = list_entry(pos,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 struct clusterip_config, list);
125 if (c->clusterip == clusterip) {
126 return c;
127 }
128 }
129
130 return NULL;
131}
132
133static inline struct clusterip_config *
Al Viro6a19d612006-09-28 14:22:24 -0700134clusterip_config_find_get(__be32 clusterip, int entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135{
136 struct clusterip_config *c;
137
Patrick McHardye45b1be2005-06-21 14:01:30 -0700138 read_lock_bh(&clusterip_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 c = __clusterip_config_find(clusterip);
140 if (!c) {
Patrick McHardye45b1be2005-06-21 14:01:30 -0700141 read_unlock_bh(&clusterip_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 return NULL;
143 }
144 atomic_inc(&c->refcount);
KOVACS Krisztian44513622005-09-16 16:59:46 -0700145 if (entry)
146 atomic_inc(&c->entries);
Patrick McHardye45b1be2005-06-21 14:01:30 -0700147 read_unlock_bh(&clusterip_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
149 return c;
150}
151
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700152static void
153clusterip_config_init_nodelist(struct clusterip_config *c,
154 const struct ipt_clusterip_tgt_info *i)
155{
156 int n;
157
158 for (n = 0; n < i->num_local_nodes; n++) {
159 set_bit(i->local_nodes[n] - 1, &c->local_nodes);
160 }
161}
162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163static struct clusterip_config *
Al Viro6a19d612006-09-28 14:22:24 -0700164clusterip_config_init(struct ipt_clusterip_tgt_info *i, __be32 ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 struct net_device *dev)
166{
167 struct clusterip_config *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700169 c = kzalloc(sizeof(*c), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 if (!c)
171 return NULL;
172
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 c->dev = dev;
174 c->clusterip = ip;
175 memcpy(&c->clustermac, &i->clustermac, ETH_ALEN);
176 c->num_total_nodes = i->num_total_nodes;
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700177 clusterip_config_init_nodelist(c, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 c->hash_mode = i->hash_mode;
179 c->hash_initval = i->hash_initval;
180 atomic_set(&c->refcount, 1);
KOVACS Krisztian44513622005-09-16 16:59:46 -0700181 atomic_set(&c->entries, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
183#ifdef CONFIG_PROC_FS
Patrick McHardy76592582006-11-29 02:35:42 +0100184 {
185 char buffer[16];
186
187 /* create proc dir entry */
188 sprintf(buffer, "%u.%u.%u.%u", NIPQUAD(ip));
189 c->pde = create_proc_entry(buffer, S_IWUSR|S_IRUSR,
190 clusterip_procdir);
191 if (!c->pde) {
192 kfree(c);
193 return NULL;
194 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 }
196 c->pde->proc_fops = &clusterip_proc_fops;
197 c->pde->data = c;
198#endif
199
Patrick McHardye45b1be2005-06-21 14:01:30 -0700200 write_lock_bh(&clusterip_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 list_add(&c->list, &clusterip_configs);
Patrick McHardye45b1be2005-06-21 14:01:30 -0700202 write_unlock_bh(&clusterip_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
204 return c;
205}
206
Patrick McHardy76592582006-11-29 02:35:42 +0100207#ifdef CONFIG_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208static int
209clusterip_add_node(struct clusterip_config *c, u_int16_t nodenum)
210{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700212 if (nodenum == 0 ||
213 nodenum > c->num_total_nodes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700216 /* check if we already have this number in our bitfield */
217 if (test_and_set_bit(nodenum - 1, &c->local_nodes))
218 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 return 0;
221}
222
Jan Engelhardte1931b72007-07-07 22:16:26 -0700223static bool
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224clusterip_del_node(struct clusterip_config *c, u_int16_t nodenum)
225{
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700226 if (nodenum == 0 ||
227 nodenum > c->num_total_nodes)
Jan Engelhardte1931b72007-07-07 22:16:26 -0700228 return true;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900229
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700230 if (test_and_clear_bit(nodenum - 1, &c->local_nodes))
Jan Engelhardte1931b72007-07-07 22:16:26 -0700231 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Jan Engelhardte1931b72007-07-07 22:16:26 -0700233 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234}
Patrick McHardy76592582006-11-29 02:35:42 +0100235#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
237static inline u_int32_t
Jan Engelhardta47362a2007-07-07 22:16:55 -0700238clusterip_hashfn(const struct sk_buff *skb,
239 const struct clusterip_config *config)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240{
Jan Engelhardta47362a2007-07-07 22:16:55 -0700241 const struct iphdr *iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 unsigned long hashval;
243 u_int16_t sport, dport;
Jan Engelhardta47362a2007-07-07 22:16:55 -0700244 const 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 McHardya8d0f952007-02-07 15:07:43 -0800249 case IPPROTO_UDPLITE:
Patrick McHardy957dc802006-05-29 18:19:56 -0700250 case IPPROTO_SCTP:
251 case IPPROTO_DCCP:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 case IPPROTO_ICMP:
Jan Engelhardta47362a2007-07-07 22:16:55 -0700253 ports = (const void *)iph+iph->ihl*4;
Patrick McHardy957dc802006-05-29 18:19:56 -0700254 sport = ports[0];
255 dport = ports[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 break;
257 default:
258 if (net_ratelimit()) {
259 printk(KERN_NOTICE "CLUSTERIP: unknown protocol `%u'\n",
260 iph->protocol);
261 }
262 sport = dport = 0;
263 }
264
265 switch (config->hash_mode) {
266 case CLUSTERIP_HASHMODE_SIP:
267 hashval = jhash_1word(ntohl(iph->saddr),
268 config->hash_initval);
269 break;
270 case CLUSTERIP_HASHMODE_SIP_SPT:
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900271 hashval = jhash_2words(ntohl(iph->saddr), sport,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 config->hash_initval);
273 break;
274 case CLUSTERIP_HASHMODE_SIP_SPT_DPT:
275 hashval = jhash_3words(ntohl(iph->saddr), sport, dport,
276 config->hash_initval);
277 break;
278 default:
279 /* to make gcc happy */
280 hashval = 0;
281 /* This cannot happen, unless the check function wasn't called
282 * at rule load time */
283 printk("CLUSTERIP: unknown mode `%u'\n", config->hash_mode);
284 BUG();
285 break;
286 }
287
288 /* node numbers are 1..n, not 0..n */
289 return ((hashval % config->num_total_nodes)+1);
290}
291
292static inline int
Jan Engelhardta47362a2007-07-07 22:16:55 -0700293clusterip_responsible(const struct clusterip_config *config, u_int32_t hash)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294{
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700295 return test_bit(hash - 1, &config->local_nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296}
297
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900298/***********************************************************************
299 * IPTABLES TARGET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 ***********************************************************************/
301
302static unsigned int
303target(struct sk_buff **pskb,
304 const struct net_device *in,
305 const struct net_device *out,
306 unsigned int hooknum,
Patrick McHardyc4986732006-03-20 18:02:56 -0800307 const struct xt_target *target,
Patrick McHardyfe1cb102006-08-22 00:35:47 -0700308 const void *targinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309{
310 const struct ipt_clusterip_tgt_info *cipinfo = targinfo;
Patrick McHardy587aa6412007-03-14 16:37:25 -0700311 struct nf_conn *ct;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 enum ip_conntrack_info ctinfo;
Patrick McHardy587aa6412007-03-14 16:37:25 -0700313 u_int32_t 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
Patrick McHardy587aa6412007-03-14 16:37:25 -0700319 ct = nf_ct_get(*pskb, &ctinfo);
320 if (ct == 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
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900323 * to outgoing connections of other nodes will be
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 * 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) */
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700330 if (ip_hdr(*pskb)->protocol == IPPROTO_ICMP
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900331 && (ctinfo == IP_CT_RELATED
Harald Welte5d927eb2005-06-22 12:37:50 -0700332 || ctinfo == IP_CT_RELATED+IP_CT_IS_REPLY))
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800333 return XT_CONTINUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900335 /* ip_conntrack_icmp guarantees us that we only have ICMP_ECHO,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 * 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:
Patrick McHardy587aa6412007-03-14 16:37:25 -0700343 ct->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
Patrick McHardy587aa6412007-03-14 16:37:25 -0700360 DEBUGP("hash=%u ct_hash=%u ", hash, ct->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
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800371 return XT_CONTINUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372}
373
Jan Engelhardte1931b72007-07-07 22:16:26 -0700374static bool
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375checkentry(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,
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900378 void *targinfo,
379 unsigned int hook_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380{
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);
Jan Engelhardte1931b72007-07-07 22:16:26 -0700391 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
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");
Jan Engelhardte1931b72007-07-07 22:16:26 -0700397 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 }
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");
Jan Engelhardte1931b72007-07-07 22:16:26 -0700411 return false;
KOVACS Krisztian44513622005-09-16 16:59:46 -0700412 }
KOVACS Krisztian44513622005-09-16 16:59:46 -0700413 } else {
414 /* Case B: This is a new rule referring to an existing
415 * clusterip config. */
416 cipinfo->config = config;
KOVACS Krisztian44513622005-09-16 16:59:46 -0700417 }
418 } else {
419 /* Case C: This is a completely new clusterip config */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 if (!(cipinfo->flags & CLUSTERIP_FLAG_NEW)) {
421 printk(KERN_WARNING "CLUSTERIP: no config found for %u.%u.%u.%u, need 'new'\n", NIPQUAD(e->ip.dst.s_addr));
Jan Engelhardte1931b72007-07-07 22:16:26 -0700422 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 } else {
424 struct net_device *dev;
425
426 if (e->ip.iniface[0] == '\0') {
427 printk(KERN_WARNING "CLUSTERIP: Please specify an interface name\n");
Jan Engelhardte1931b72007-07-07 22:16:26 -0700428 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 }
430
431 dev = dev_get_by_name(e->ip.iniface);
432 if (!dev) {
433 printk(KERN_WARNING "CLUSTERIP: no such interface %s\n", e->ip.iniface);
Jan Engelhardte1931b72007-07-07 22:16:26 -0700434 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 }
436
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900437 config = clusterip_config_init(cipinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 e->ip.dst.s_addr, dev);
439 if (!config) {
440 printk(KERN_WARNING "CLUSTERIP: cannot allocate config\n");
441 dev_put(dev);
Jan Engelhardte1931b72007-07-07 22:16:26 -0700442 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 }
444 dev_mc_add(config->dev,config->clustermac, ETH_ALEN, 0);
445 }
KOVACS Krisztian44513622005-09-16 16:59:46 -0700446 cipinfo->config = config;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 }
448
Yasuyuki Kozakai11078c32006-12-12 00:29:02 -0800449 if (nf_ct_l3proto_try_module_get(target->family) < 0) {
450 printk(KERN_WARNING "can't load conntrack support for "
451 "proto=%d\n", target->family);
Jan Engelhardte1931b72007-07-07 22:16:26 -0700452 return false;
Yasuyuki Kozakai11078c32006-12-12 00:29:02 -0800453 }
454
Jan Engelhardte1931b72007-07-07 22:16:26 -0700455 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456}
457
458/* drop reference count of cluster config when rule is deleted */
Patrick McHardyefa74162006-08-22 00:36:37 -0700459static void destroy(const struct xt_target *target, void *targinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460{
Patrick McHardyc4986732006-03-20 18:02:56 -0800461 struct ipt_clusterip_tgt_info *cipinfo = targinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
KOVACS Krisztian44513622005-09-16 16:59:46 -0700463 /* if no more entries are referencing the config, remove it
464 * from the list and destroy the proc entry */
465 clusterip_config_entry_put(cipinfo->config);
466
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 clusterip_config_put(cipinfo->config);
Yasuyuki Kozakai11078c32006-12-12 00:29:02 -0800468
469 nf_ct_l3proto_module_put(target->family);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470}
471
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800472static struct xt_target clusterip_tgt = {
Patrick McHardy1d5cd902006-03-20 18:01:14 -0800473 .name = "CLUSTERIP",
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800474 .family = AF_INET,
Patrick McHardy1d5cd902006-03-20 18:01:14 -0800475 .target = target,
476 .targetsize = sizeof(struct ipt_clusterip_tgt_info),
477 .checkentry = checkentry,
478 .destroy = destroy,
479 .me = THIS_MODULE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480};
481
482
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900483/***********************************************************************
484 * ARP MANGLING CODE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 ***********************************************************************/
486
487/* hardcoded for 48bit ethernet and 32bit ipv4 addresses */
488struct arp_payload {
489 u_int8_t src_hw[ETH_ALEN];
Al Viro6a19d612006-09-28 14:22:24 -0700490 __be32 src_ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 u_int8_t dst_hw[ETH_ALEN];
Al Viro6a19d612006-09-28 14:22:24 -0700492 __be32 dst_ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493} __attribute__ ((packed));
494
495#ifdef CLUSTERIP_DEBUG
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900496static void arp_print(struct arp_payload *payload)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497{
498#define HBUFFERLEN 30
499 char hbuffer[HBUFFERLEN];
500 int j,k;
501 const char hexbuf[]= "0123456789abcdef";
502
503 for (k=0, j=0; k < HBUFFERLEN-3 && j < ETH_ALEN; j++) {
504 hbuffer[k++]=hexbuf[(payload->src_hw[j]>>4)&15];
505 hbuffer[k++]=hexbuf[payload->src_hw[j]&15];
506 hbuffer[k++]=':';
507 }
508 hbuffer[--k]='\0';
509
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900510 printk("src %u.%u.%u.%u@%s, dst %u.%u.%u.%u\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 NIPQUAD(payload->src_ip), hbuffer,
512 NIPQUAD(payload->dst_ip));
513}
514#endif
515
516static unsigned int
517arp_mangle(unsigned int hook,
518 struct sk_buff **pskb,
519 const struct net_device *in,
520 const struct net_device *out,
521 int (*okfn)(struct sk_buff *))
522{
Arnaldo Carvalho de Melod0a92be2007-03-12 20:56:31 -0300523 struct arphdr *arp = arp_hdr(*pskb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 struct arp_payload *payload;
525 struct clusterip_config *c;
526
527 /* we don't care about non-ethernet and non-ipv4 ARP */
528 if (arp->ar_hrd != htons(ARPHRD_ETHER)
529 || arp->ar_pro != htons(ETH_P_IP)
530 || arp->ar_pln != 4 || arp->ar_hln != ETH_ALEN)
531 return NF_ACCEPT;
532
Harald Welte4095ebf2005-06-28 12:49:30 -0700533 /* we only want to mangle arp requests and replies */
534 if (arp->ar_op != htons(ARPOP_REPLY)
535 && arp->ar_op != htons(ARPOP_REQUEST))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 return NF_ACCEPT;
537
538 payload = (void *)(arp+1);
539
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900540 /* if there is no clusterip configuration for the arp reply's
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 * source ip, we don't want to mangle it */
KOVACS Krisztian44513622005-09-16 16:59:46 -0700542 c = clusterip_config_find_get(payload->src_ip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 if (!c)
544 return NF_ACCEPT;
545
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900546 /* normally the linux kernel always replies to arp queries of
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 * addresses on different interfacs. However, in the CLUSTERIP case
548 * this wouldn't work, since we didn't subscribe the mcast group on
549 * other interfaces */
550 if (c->dev != out) {
551 DEBUGP("CLUSTERIP: not mangling arp reply on different "
552 "interface: cip'%s'-skb'%s'\n", c->dev->name, out->name);
553 clusterip_config_put(c);
554 return NF_ACCEPT;
555 }
556
557 /* mangle reply hardware address */
558 memcpy(payload->src_hw, c->clustermac, arp->ar_hln);
559
560#ifdef CLUSTERIP_DEBUG
561 DEBUGP(KERN_DEBUG "CLUSTERIP mangled arp reply: ");
562 arp_print(payload);
563#endif
564
565 clusterip_config_put(c);
566
567 return NF_ACCEPT;
568}
569
570static struct nf_hook_ops cip_arp_ops = {
571 .hook = arp_mangle,
572 .pf = NF_ARP,
573 .hooknum = NF_ARP_OUT,
574 .priority = -1
575};
576
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900577/***********************************************************************
578 * PROC DIR HANDLING
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 ***********************************************************************/
580
581#ifdef CONFIG_PROC_FS
582
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700583struct clusterip_seq_position {
584 unsigned int pos; /* position */
585 unsigned int weight; /* number of bits set == size */
586 unsigned int bit; /* current bit */
587 unsigned long val; /* current value */
588};
589
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590static void *clusterip_seq_start(struct seq_file *s, loff_t *pos)
591{
592 struct proc_dir_entry *pde = s->private;
593 struct clusterip_config *c = pde->data;
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700594 unsigned int weight;
595 u_int32_t local_nodes;
596 struct clusterip_seq_position *idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700598 /* FIXME: possible race */
599 local_nodes = c->local_nodes;
600 weight = hweight32(local_nodes);
601 if (*pos >= weight)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 return NULL;
603
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700604 idx = kmalloc(sizeof(struct clusterip_seq_position), GFP_KERNEL);
605 if (!idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 return ERR_PTR(-ENOMEM);
607
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700608 idx->pos = *pos;
609 idx->weight = weight;
610 idx->bit = ffs(local_nodes);
611 idx->val = local_nodes;
612 clear_bit(idx->bit - 1, &idx->val);
613
614 return idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615}
616
617static void *clusterip_seq_next(struct seq_file *s, void *v, loff_t *pos)
618{
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700619 struct clusterip_seq_position *idx = (struct clusterip_seq_position *)v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700621 *pos = ++idx->pos;
622 if (*pos >= idx->weight) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 kfree(v);
624 return NULL;
625 }
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700626 idx->bit = ffs(idx->val);
627 clear_bit(idx->bit - 1, &idx->val);
628 return idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629}
630
631static void clusterip_seq_stop(struct seq_file *s, void *v)
632{
633 kfree(v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634}
635
636static int clusterip_seq_show(struct seq_file *s, void *v)
637{
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700638 struct clusterip_seq_position *idx = (struct clusterip_seq_position *)v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900640 if (idx->pos != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 seq_putc(s, ',');
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700643 seq_printf(s, "%u", idx->bit);
644
645 if (idx->pos == idx->weight - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 seq_putc(s, '\n');
647
648 return 0;
649}
650
651static struct seq_operations clusterip_seq_ops = {
652 .start = clusterip_seq_start,
653 .next = clusterip_seq_next,
654 .stop = clusterip_seq_stop,
655 .show = clusterip_seq_show,
656};
657
658static int clusterip_proc_open(struct inode *inode, struct file *file)
659{
660 int ret = seq_open(file, &clusterip_seq_ops);
661
662 if (!ret) {
663 struct seq_file *sf = file->private_data;
664 struct proc_dir_entry *pde = PDE(inode);
665 struct clusterip_config *c = pde->data;
666
667 sf->private = pde;
668
669 clusterip_config_get(c);
670 }
671
672 return ret;
673}
674
675static int clusterip_proc_release(struct inode *inode, struct file *file)
676{
677 struct proc_dir_entry *pde = PDE(inode);
678 struct clusterip_config *c = pde->data;
679 int ret;
680
681 ret = seq_release(inode, file);
682
683 if (!ret)
684 clusterip_config_put(c);
685
686 return ret;
687}
688
689static ssize_t clusterip_proc_write(struct file *file, const char __user *input,
690 size_t size, loff_t *ofs)
691{
692#define PROC_WRITELEN 10
693 char buffer[PROC_WRITELEN+1];
Josef Sipek6df81ab2006-12-08 02:37:24 -0800694 struct proc_dir_entry *pde = PDE(file->f_path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 struct clusterip_config *c = pde->data;
696 unsigned long nodenum;
697
698 if (copy_from_user(buffer, input, PROC_WRITELEN))
699 return -EFAULT;
700
701 if (*buffer == '+') {
702 nodenum = simple_strtoul(buffer+1, NULL, 10);
703 if (clusterip_add_node(c, nodenum))
704 return -ENOMEM;
705 } else if (*buffer == '-') {
706 nodenum = simple_strtoul(buffer+1, NULL,10);
707 if (clusterip_del_node(c, nodenum))
708 return -ENOENT;
709 } else
710 return -EIO;
711
712 return size;
713}
714
Arjan van de Ven9a321442007-02-12 00:55:35 -0800715static const struct file_operations clusterip_proc_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 .owner = THIS_MODULE,
717 .open = clusterip_proc_open,
718 .read = seq_read,
719 .write = clusterip_proc_write,
720 .llseek = seq_lseek,
721 .release = clusterip_proc_release,
722};
723
724#endif /* CONFIG_PROC_FS */
725
Patrick McHardy32292a72006-04-06 14:11:30 -0700726static int __init ipt_clusterip_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727{
728 int ret;
729
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800730 ret = xt_register_target(&clusterip_tgt);
Patrick McHardy32292a72006-04-06 14:11:30 -0700731 if (ret < 0)
732 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
Patrick McHardy32292a72006-04-06 14:11:30 -0700734 ret = nf_register_hook(&cip_arp_ops);
735 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 goto cleanup_target;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
738#ifdef CONFIG_PROC_FS
739 clusterip_procdir = proc_mkdir("ipt_CLUSTERIP", proc_net);
740 if (!clusterip_procdir) {
741 printk(KERN_ERR "CLUSTERIP: Unable to proc dir entry\n");
742 ret = -ENOMEM;
743 goto cleanup_hook;
744 }
745#endif /* CONFIG_PROC_FS */
746
747 printk(KERN_NOTICE "ClusterIP Version %s loaded successfully\n",
748 CLUSTERIP_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 return 0;
750
Patrick McHardy76592582006-11-29 02:35:42 +0100751#ifdef CONFIG_PROC_FS
Patrick McHardy32292a72006-04-06 14:11:30 -0700752cleanup_hook:
753 nf_unregister_hook(&cip_arp_ops);
Patrick McHardy76592582006-11-29 02:35:42 +0100754#endif /* CONFIG_PROC_FS */
Patrick McHardy32292a72006-04-06 14:11:30 -0700755cleanup_target:
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800756 xt_unregister_target(&clusterip_tgt);
Patrick McHardy32292a72006-04-06 14:11:30 -0700757 return ret;
758}
759
760static void __exit ipt_clusterip_fini(void)
761{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 printk(KERN_NOTICE "ClusterIP Version %s unloading\n",
763 CLUSTERIP_VERSION);
764#ifdef CONFIG_PROC_FS
765 remove_proc_entry(clusterip_procdir->name, clusterip_procdir->parent);
766#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 nf_unregister_hook(&cip_arp_ops);
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800768 xt_unregister_target(&clusterip_tgt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769}
770
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800771module_init(ipt_clusterip_init);
772module_exit(ipt_clusterip_fini);