blob: 311361e1272ce09464ca1b9cad4fb6bbd5873b02 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/netfilter_arp.h>
Jan Engelhardt6709dbb2007-02-07 15:11:19 -080024#include <linux/netfilter/x_tables.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/netfilter_ipv4/ip_tables.h>
26#include <linux/netfilter_ipv4/ipt_CLUSTERIP.h>
Patrick McHardy587aa642007-03-14 16:37:25 -070027#include <net/netfilter/nf_conntrack.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020028#include <net/net_namespace.h>
Patrick McHardy587aa642007-03-14 16:37:25 -070029#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
Linus Torvalds1da177e2005-04-16 15:20:36 -070033MODULE_LICENSE("GPL");
34MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
35MODULE_DESCRIPTION("iptables target for CLUSTERIP");
36
37struct clusterip_config {
38 struct list_head list; /* list of all configs */
39 atomic_t refcount; /* reference count */
KOVACS Krisztian44513622005-09-16 16:59:46 -070040 atomic_t entries; /* number of entries/rules
41 * referencing us */
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Al Viro6a19d612006-09-28 14:22:24 -070043 __be32 clusterip; /* the IP address */
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 u_int8_t clustermac[ETH_ALEN]; /* the MAC address */
45 struct net_device *dev; /* device */
46 u_int16_t num_total_nodes; /* total number of nodes */
KOVACS Krisztian136e92b2005-09-16 17:00:04 -070047 unsigned long local_nodes; /* node number array */
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49#ifdef CONFIG_PROC_FS
50 struct proc_dir_entry *pde; /* proc dir entry */
51#endif
52 enum clusterip_hashmode hash_mode; /* which hashing mode */
53 u_int32_t hash_initval; /* hash initialization */
54};
55
56static LIST_HEAD(clusterip_configs);
57
KOVACS Krisztian136e92b2005-09-16 17:00:04 -070058/* clusterip_lock protects the clusterip_configs list */
Patrick McHardye45b1be2005-06-21 14:01:30 -070059static DEFINE_RWLOCK(clusterip_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61#ifdef CONFIG_PROC_FS
Arjan van de Ven9a321442007-02-12 00:55:35 -080062static const struct file_operations clusterip_proc_fops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063static struct proc_dir_entry *clusterip_procdir;
64#endif
65
66static inline void
KOVACS Krisztian44513622005-09-16 16:59:46 -070067clusterip_config_get(struct clusterip_config *c)
68{
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 atomic_inc(&c->refcount);
70}
71
72static inline void
KOVACS Krisztian44513622005-09-16 16:59:46 -070073clusterip_config_put(struct clusterip_config *c)
74{
75 if (atomic_dec_and_test(&c->refcount))
76 kfree(c);
77}
78
79/* increase the count of entries(rules) using/referencing this config */
80static inline void
81clusterip_config_entry_get(struct clusterip_config *c)
82{
83 atomic_inc(&c->entries);
84}
85
86/* decrease the count of entries using/referencing this config. If last
87 * entry(rule) is removed, remove the config from lists, but don't free it
88 * yet, since proc-files could still be holding references */
89static inline void
90clusterip_config_entry_put(struct clusterip_config *c)
91{
92 if (atomic_dec_and_test(&c->entries)) {
Patrick McHardye45b1be2005-06-21 14:01:30 -070093 write_lock_bh(&clusterip_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 list_del(&c->list);
Patrick McHardye45b1be2005-06-21 14:01:30 -070095 write_unlock_bh(&clusterip_lock);
KOVACS Krisztian44513622005-09-16 16:59:46 -070096
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 dev_mc_delete(c->dev, c->clustermac, ETH_ALEN, 0);
98 dev_put(c->dev);
KOVACS Krisztian44513622005-09-16 16:59:46 -070099
100 /* In case anyone still accesses the file, the open/close
101 * functions are also incrementing the refcount on their own,
102 * so it's safe to remove the entry even if it's in use. */
103#ifdef CONFIG_PROC_FS
104 remove_proc_entry(c->pde->name, c->pde->parent);
105#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 }
107}
108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109static struct clusterip_config *
Al Viro6a19d612006-09-28 14:22:24 -0700110__clusterip_config_find(__be32 clusterip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111{
Li Zefan4c610972007-12-04 23:22:26 -0800112 struct clusterip_config *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Li Zefan4c610972007-12-04 23:22:26 -0800114 list_for_each_entry(c, &clusterip_configs, list) {
Jan Engelhardt7c4e36b2007-07-07 22:19:08 -0700115 if (c->clusterip == clusterip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 return c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 }
118
119 return NULL;
120}
121
122static inline struct clusterip_config *
Al Viro6a19d612006-09-28 14:22:24 -0700123clusterip_config_find_get(__be32 clusterip, int entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124{
125 struct clusterip_config *c;
126
Patrick McHardye45b1be2005-06-21 14:01:30 -0700127 read_lock_bh(&clusterip_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 c = __clusterip_config_find(clusterip);
129 if (!c) {
Patrick McHardye45b1be2005-06-21 14:01:30 -0700130 read_unlock_bh(&clusterip_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 return NULL;
132 }
133 atomic_inc(&c->refcount);
KOVACS Krisztian44513622005-09-16 16:59:46 -0700134 if (entry)
135 atomic_inc(&c->entries);
Patrick McHardye45b1be2005-06-21 14:01:30 -0700136 read_unlock_bh(&clusterip_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
138 return c;
139}
140
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700141static void
142clusterip_config_init_nodelist(struct clusterip_config *c,
143 const struct ipt_clusterip_tgt_info *i)
144{
145 int n;
146
Jan Engelhardt7c4e36b2007-07-07 22:19:08 -0700147 for (n = 0; n < i->num_local_nodes; n++)
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700148 set_bit(i->local_nodes[n] - 1, &c->local_nodes);
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700149}
150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151static struct clusterip_config *
Al Viro6a19d612006-09-28 14:22:24 -0700152clusterip_config_init(struct ipt_clusterip_tgt_info *i, __be32 ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 struct net_device *dev)
154{
155 struct clusterip_config *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700157 c = kzalloc(sizeof(*c), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 if (!c)
159 return NULL;
160
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 c->dev = dev;
162 c->clusterip = ip;
163 memcpy(&c->clustermac, &i->clustermac, ETH_ALEN);
164 c->num_total_nodes = i->num_total_nodes;
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700165 clusterip_config_init_nodelist(c, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 c->hash_mode = i->hash_mode;
167 c->hash_initval = i->hash_initval;
168 atomic_set(&c->refcount, 1);
KOVACS Krisztian44513622005-09-16 16:59:46 -0700169 atomic_set(&c->entries, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
171#ifdef CONFIG_PROC_FS
Patrick McHardy76592582006-11-29 02:35:42 +0100172 {
173 char buffer[16];
174
175 /* create proc dir entry */
176 sprintf(buffer, "%u.%u.%u.%u", NIPQUAD(ip));
177 c->pde = create_proc_entry(buffer, S_IWUSR|S_IRUSR,
178 clusterip_procdir);
179 if (!c->pde) {
180 kfree(c);
181 return NULL;
182 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 }
184 c->pde->proc_fops = &clusterip_proc_fops;
185 c->pde->data = c;
186#endif
187
Patrick McHardye45b1be2005-06-21 14:01:30 -0700188 write_lock_bh(&clusterip_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 list_add(&c->list, &clusterip_configs);
Patrick McHardye45b1be2005-06-21 14:01:30 -0700190 write_unlock_bh(&clusterip_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
192 return c;
193}
194
Patrick McHardy76592582006-11-29 02:35:42 +0100195#ifdef CONFIG_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196static int
197clusterip_add_node(struct clusterip_config *c, u_int16_t nodenum)
198{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700200 if (nodenum == 0 ||
201 nodenum > c->num_total_nodes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700204 /* check if we already have this number in our bitfield */
205 if (test_and_set_bit(nodenum - 1, &c->local_nodes))
206 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 return 0;
209}
210
Jan Engelhardte1931b72007-07-07 22:16:26 -0700211static bool
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212clusterip_del_node(struct clusterip_config *c, u_int16_t nodenum)
213{
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700214 if (nodenum == 0 ||
215 nodenum > c->num_total_nodes)
Jan Engelhardte1931b72007-07-07 22:16:26 -0700216 return true;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900217
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700218 if (test_and_clear_bit(nodenum - 1, &c->local_nodes))
Jan Engelhardte1931b72007-07-07 22:16:26 -0700219 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Jan Engelhardte1931b72007-07-07 22:16:26 -0700221 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222}
Patrick McHardy76592582006-11-29 02:35:42 +0100223#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
225static inline u_int32_t
Jan Engelhardta47362a2007-07-07 22:16:55 -0700226clusterip_hashfn(const struct sk_buff *skb,
227 const struct clusterip_config *config)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228{
Jan Engelhardta47362a2007-07-07 22:16:55 -0700229 const struct iphdr *iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 unsigned long hashval;
231 u_int16_t sport, dport;
Jan Engelhardta47362a2007-07-07 22:16:55 -0700232 const u_int16_t *ports;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
234 switch (iph->protocol) {
235 case IPPROTO_TCP:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 case IPPROTO_UDP:
Patrick McHardya8d0f952007-02-07 15:07:43 -0800237 case IPPROTO_UDPLITE:
Patrick McHardy957dc802006-05-29 18:19:56 -0700238 case IPPROTO_SCTP:
239 case IPPROTO_DCCP:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 case IPPROTO_ICMP:
Jan Engelhardta47362a2007-07-07 22:16:55 -0700241 ports = (const void *)iph+iph->ihl*4;
Patrick McHardy957dc802006-05-29 18:19:56 -0700242 sport = ports[0];
243 dport = ports[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 break;
245 default:
Jan Engelhardt7c4e36b2007-07-07 22:19:08 -0700246 if (net_ratelimit())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 printk(KERN_NOTICE "CLUSTERIP: unknown protocol `%u'\n",
248 iph->protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 sport = dport = 0;
250 }
251
252 switch (config->hash_mode) {
253 case CLUSTERIP_HASHMODE_SIP:
254 hashval = jhash_1word(ntohl(iph->saddr),
255 config->hash_initval);
256 break;
257 case CLUSTERIP_HASHMODE_SIP_SPT:
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900258 hashval = jhash_2words(ntohl(iph->saddr), sport,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 config->hash_initval);
260 break;
261 case CLUSTERIP_HASHMODE_SIP_SPT_DPT:
262 hashval = jhash_3words(ntohl(iph->saddr), sport, dport,
263 config->hash_initval);
264 break;
265 default:
266 /* to make gcc happy */
267 hashval = 0;
268 /* This cannot happen, unless the check function wasn't called
269 * at rule load time */
270 printk("CLUSTERIP: unknown mode `%u'\n", config->hash_mode);
271 BUG();
272 break;
273 }
274
275 /* node numbers are 1..n, not 0..n */
Jan Engelhardt7c4e36b2007-07-07 22:19:08 -0700276 return (hashval % config->num_total_nodes) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277}
278
279static inline int
Jan Engelhardta47362a2007-07-07 22:16:55 -0700280clusterip_responsible(const struct clusterip_config *config, u_int32_t hash)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281{
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700282 return test_bit(hash - 1, &config->local_nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283}
284
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900285/***********************************************************************
286 * IPTABLES TARGET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 ***********************************************************************/
288
289static unsigned int
Herbert Xu3db05fe2007-10-15 00:53:15 -0700290target(struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 const struct net_device *in,
292 const struct net_device *out,
293 unsigned int hooknum,
Patrick McHardyc4986732006-03-20 18:02:56 -0800294 const struct xt_target *target,
Patrick McHardyfe1cb102006-08-22 00:35:47 -0700295 const void *targinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296{
297 const struct ipt_clusterip_tgt_info *cipinfo = targinfo;
Patrick McHardy587aa642007-03-14 16:37:25 -0700298 struct nf_conn *ct;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 enum ip_conntrack_info ctinfo;
Patrick McHardy587aa642007-03-14 16:37:25 -0700300 u_int32_t hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
302 /* don't need to clusterip_config_get() here, since refcount
303 * is only decremented by destroy() - and ip_tables guarantees
304 * that the ->target() function isn't called after ->destroy() */
305
Herbert Xu3db05fe2007-10-15 00:53:15 -0700306 ct = nf_ct_get(skb, &ctinfo);
Patrick McHardy587aa642007-03-14 16:37:25 -0700307 if (ct == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 printk(KERN_ERR "CLUSTERIP: no conntrack!\n");
309 /* FIXME: need to drop invalid ones, since replies
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900310 * to outgoing connections of other nodes will be
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 * marked as INVALID */
312 return NF_DROP;
313 }
314
315 /* special case: ICMP error handling. conntrack distinguishes between
316 * error messages (RELATED) and information requests (see below) */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700317 if (ip_hdr(skb)->protocol == IPPROTO_ICMP
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900318 && (ctinfo == IP_CT_RELATED
Harald Welte5d927eb2005-06-22 12:37:50 -0700319 || ctinfo == IP_CT_RELATED+IP_CT_IS_REPLY))
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800320 return XT_CONTINUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900322 /* ip_conntrack_icmp guarantees us that we only have ICMP_ECHO,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 * TIMESTAMP, INFO_REQUEST or ADDRESS type icmp packets from here
324 * on, which all have an ID field [relevant for hashing]. */
325
Herbert Xu3db05fe2007-10-15 00:53:15 -0700326 hash = clusterip_hashfn(skb, cipinfo->config);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
328 switch (ctinfo) {
329 case IP_CT_NEW:
Patrick McHardy587aa642007-03-14 16:37:25 -0700330 ct->mark = hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 break;
332 case IP_CT_RELATED:
333 case IP_CT_RELATED+IP_CT_IS_REPLY:
334 /* FIXME: we don't handle expectations at the
335 * moment. they can arrive on a different node than
336 * the master connection (e.g. FTP passive mode) */
337 case IP_CT_ESTABLISHED:
338 case IP_CT_ESTABLISHED+IP_CT_IS_REPLY:
339 break;
340 default:
341 break;
342 }
343
Patrick McHardy0d537782007-07-07 22:39:38 -0700344#ifdef DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 DUMP_TUPLE(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple);
346#endif
Patrick McHardy0d537782007-07-07 22:39:38 -0700347 pr_debug("hash=%u ct_hash=%u ", hash, ct->mark);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 if (!clusterip_responsible(cipinfo->config, hash)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700349 pr_debug("not responsible\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 return NF_DROP;
351 }
Patrick McHardy0d537782007-07-07 22:39:38 -0700352 pr_debug("responsible\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
354 /* despite being received via linklayer multicast, this is
355 * actually a unicast IP packet. TCP doesn't like PACKET_MULTICAST */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700356 skb->pkt_type = PACKET_HOST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800358 return XT_CONTINUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359}
360
Jan Engelhardte1931b72007-07-07 22:16:26 -0700361static bool
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362checkentry(const char *tablename,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800363 const void *e_void,
Patrick McHardyc4986732006-03-20 18:02:56 -0800364 const struct xt_target *target,
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900365 void *targinfo,
366 unsigned int hook_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367{
368 struct ipt_clusterip_tgt_info *cipinfo = targinfo;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800369 const struct ipt_entry *e = e_void;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
371 struct clusterip_config *config;
372
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 if (cipinfo->hash_mode != CLUSTERIP_HASHMODE_SIP &&
374 cipinfo->hash_mode != CLUSTERIP_HASHMODE_SIP_SPT &&
375 cipinfo->hash_mode != CLUSTERIP_HASHMODE_SIP_SPT_DPT) {
376 printk(KERN_WARNING "CLUSTERIP: unknown mode `%u'\n",
377 cipinfo->hash_mode);
Jan Engelhardte1931b72007-07-07 22:16:26 -0700378 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
380 }
Al Viro6a19d612006-09-28 14:22:24 -0700381 if (e->ip.dmsk.s_addr != htonl(0xffffffff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 || e->ip.dst.s_addr == 0) {
383 printk(KERN_ERR "CLUSTERIP: Please specify destination IP\n");
Jan Engelhardte1931b72007-07-07 22:16:26 -0700384 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 }
386
387 /* FIXME: further sanity checks */
388
KOVACS Krisztian44513622005-09-16 16:59:46 -0700389 config = clusterip_config_find_get(e->ip.dst.s_addr, 1);
Patrick McHardyd3c3f422007-07-07 22:38:30 -0700390 if (!config) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 if (!(cipinfo->flags & CLUSTERIP_FLAG_NEW)) {
392 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 -0700393 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 } else {
395 struct net_device *dev;
396
397 if (e->ip.iniface[0] == '\0') {
398 printk(KERN_WARNING "CLUSTERIP: Please specify an interface name\n");
Jan Engelhardte1931b72007-07-07 22:16:26 -0700399 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 }
401
Eric W. Biederman881d9662007-09-17 11:56:21 -0700402 dev = dev_get_by_name(&init_net, e->ip.iniface);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 if (!dev) {
404 printk(KERN_WARNING "CLUSTERIP: no such interface %s\n", e->ip.iniface);
Jan Engelhardte1931b72007-07-07 22:16:26 -0700405 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 }
407
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900408 config = clusterip_config_init(cipinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 e->ip.dst.s_addr, dev);
410 if (!config) {
411 printk(KERN_WARNING "CLUSTERIP: cannot allocate config\n");
412 dev_put(dev);
Jan Engelhardte1931b72007-07-07 22:16:26 -0700413 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 }
415 dev_mc_add(config->dev,config->clustermac, ETH_ALEN, 0);
416 }
417 }
Patrick McHardyd3c3f422007-07-07 22:38:30 -0700418 cipinfo->config = config;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Yasuyuki Kozakai11078c32006-12-12 00:29:02 -0800420 if (nf_ct_l3proto_try_module_get(target->family) < 0) {
421 printk(KERN_WARNING "can't load conntrack support for "
422 "proto=%d\n", target->family);
Jan Engelhardte1931b72007-07-07 22:16:26 -0700423 return false;
Yasuyuki Kozakai11078c32006-12-12 00:29:02 -0800424 }
425
Jan Engelhardte1931b72007-07-07 22:16:26 -0700426 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427}
428
429/* drop reference count of cluster config when rule is deleted */
Patrick McHardyefa74162006-08-22 00:36:37 -0700430static void destroy(const struct xt_target *target, void *targinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431{
Patrick McHardyc4986732006-03-20 18:02:56 -0800432 struct ipt_clusterip_tgt_info *cipinfo = targinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
KOVACS Krisztian44513622005-09-16 16:59:46 -0700434 /* if no more entries are referencing the config, remove it
435 * from the list and destroy the proc entry */
436 clusterip_config_entry_put(cipinfo->config);
437
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 clusterip_config_put(cipinfo->config);
Yasuyuki Kozakai11078c32006-12-12 00:29:02 -0800439
440 nf_ct_l3proto_module_put(target->family);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441}
442
Patrick McHardyd3c3f422007-07-07 22:38:30 -0700443#ifdef CONFIG_COMPAT
444struct compat_ipt_clusterip_tgt_info
445{
446 u_int32_t flags;
447 u_int8_t clustermac[6];
448 u_int16_t num_total_nodes;
449 u_int16_t num_local_nodes;
450 u_int16_t local_nodes[CLUSTERIP_MAX_NODES];
451 u_int32_t hash_mode;
452 u_int32_t hash_initval;
453 compat_uptr_t config;
454};
455#endif /* CONFIG_COMPAT */
456
Patrick McHardy9f15c532007-07-07 22:22:02 -0700457static struct xt_target clusterip_tgt __read_mostly = {
Patrick McHardy1d5cd902006-03-20 18:01:14 -0800458 .name = "CLUSTERIP",
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800459 .family = AF_INET,
Patrick McHardy1d5cd902006-03-20 18:01:14 -0800460 .target = target,
Patrick McHardy1d5cd902006-03-20 18:01:14 -0800461 .checkentry = checkentry,
462 .destroy = destroy,
Patrick McHardyd3c3f422007-07-07 22:38:30 -0700463 .targetsize = sizeof(struct ipt_clusterip_tgt_info),
464#ifdef CONFIG_COMPAT
465 .compatsize = sizeof(struct compat_ipt_clusterip_tgt_info),
466#endif /* CONFIG_COMPAT */
Patrick McHardy1d5cd902006-03-20 18:01:14 -0800467 .me = THIS_MODULE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468};
469
470
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900471/***********************************************************************
472 * ARP MANGLING CODE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 ***********************************************************************/
474
475/* hardcoded for 48bit ethernet and 32bit ipv4 addresses */
476struct arp_payload {
477 u_int8_t src_hw[ETH_ALEN];
Al Viro6a19d612006-09-28 14:22:24 -0700478 __be32 src_ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 u_int8_t dst_hw[ETH_ALEN];
Al Viro6a19d612006-09-28 14:22:24 -0700480 __be32 dst_ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481} __attribute__ ((packed));
482
Patrick McHardy0d537782007-07-07 22:39:38 -0700483#ifdef DEBUG
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900484static void arp_print(struct arp_payload *payload)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485{
486#define HBUFFERLEN 30
487 char hbuffer[HBUFFERLEN];
488 int j,k;
489 const char hexbuf[]= "0123456789abcdef";
490
491 for (k=0, j=0; k < HBUFFERLEN-3 && j < ETH_ALEN; j++) {
492 hbuffer[k++]=hexbuf[(payload->src_hw[j]>>4)&15];
493 hbuffer[k++]=hexbuf[payload->src_hw[j]&15];
494 hbuffer[k++]=':';
495 }
496 hbuffer[--k]='\0';
497
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900498 printk("src %u.%u.%u.%u@%s, dst %u.%u.%u.%u\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 NIPQUAD(payload->src_ip), hbuffer,
500 NIPQUAD(payload->dst_ip));
501}
502#endif
503
504static unsigned int
505arp_mangle(unsigned int hook,
Herbert Xu3db05fe2007-10-15 00:53:15 -0700506 struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 const struct net_device *in,
508 const struct net_device *out,
509 int (*okfn)(struct sk_buff *))
510{
Herbert Xu3db05fe2007-10-15 00:53:15 -0700511 struct arphdr *arp = arp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 struct arp_payload *payload;
513 struct clusterip_config *c;
514
515 /* we don't care about non-ethernet and non-ipv4 ARP */
516 if (arp->ar_hrd != htons(ARPHRD_ETHER)
517 || arp->ar_pro != htons(ETH_P_IP)
518 || arp->ar_pln != 4 || arp->ar_hln != ETH_ALEN)
519 return NF_ACCEPT;
520
Harald Welte4095ebf2005-06-28 12:49:30 -0700521 /* we only want to mangle arp requests and replies */
522 if (arp->ar_op != htons(ARPOP_REPLY)
523 && arp->ar_op != htons(ARPOP_REQUEST))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 return NF_ACCEPT;
525
526 payload = (void *)(arp+1);
527
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900528 /* if there is no clusterip configuration for the arp reply's
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 * source ip, we don't want to mangle it */
KOVACS Krisztian44513622005-09-16 16:59:46 -0700530 c = clusterip_config_find_get(payload->src_ip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 if (!c)
532 return NF_ACCEPT;
533
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900534 /* normally the linux kernel always replies to arp queries of
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 * addresses on different interfacs. However, in the CLUSTERIP case
536 * this wouldn't work, since we didn't subscribe the mcast group on
537 * other interfaces */
538 if (c->dev != out) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700539 pr_debug("CLUSTERIP: not mangling arp reply on different "
540 "interface: cip'%s'-skb'%s'\n",
541 c->dev->name, out->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 clusterip_config_put(c);
543 return NF_ACCEPT;
544 }
545
546 /* mangle reply hardware address */
547 memcpy(payload->src_hw, c->clustermac, arp->ar_hln);
548
Patrick McHardy0d537782007-07-07 22:39:38 -0700549#ifdef DEBUG
550 pr_debug(KERN_DEBUG "CLUSTERIP mangled arp reply: ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 arp_print(payload);
552#endif
553
554 clusterip_config_put(c);
555
556 return NF_ACCEPT;
557}
558
559static struct nf_hook_ops cip_arp_ops = {
560 .hook = arp_mangle,
561 .pf = NF_ARP,
562 .hooknum = NF_ARP_OUT,
563 .priority = -1
564};
565
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900566/***********************************************************************
567 * PROC DIR HANDLING
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 ***********************************************************************/
569
570#ifdef CONFIG_PROC_FS
571
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700572struct clusterip_seq_position {
573 unsigned int pos; /* position */
574 unsigned int weight; /* number of bits set == size */
575 unsigned int bit; /* current bit */
576 unsigned long val; /* current value */
577};
578
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579static void *clusterip_seq_start(struct seq_file *s, loff_t *pos)
580{
581 struct proc_dir_entry *pde = s->private;
582 struct clusterip_config *c = pde->data;
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700583 unsigned int weight;
584 u_int32_t local_nodes;
585 struct clusterip_seq_position *idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700587 /* FIXME: possible race */
588 local_nodes = c->local_nodes;
589 weight = hweight32(local_nodes);
590 if (*pos >= weight)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 return NULL;
592
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700593 idx = kmalloc(sizeof(struct clusterip_seq_position), GFP_KERNEL);
594 if (!idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 return ERR_PTR(-ENOMEM);
596
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700597 idx->pos = *pos;
598 idx->weight = weight;
599 idx->bit = ffs(local_nodes);
600 idx->val = local_nodes;
601 clear_bit(idx->bit - 1, &idx->val);
602
603 return idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604}
605
606static void *clusterip_seq_next(struct seq_file *s, void *v, loff_t *pos)
607{
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700608 struct clusterip_seq_position *idx = (struct clusterip_seq_position *)v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700610 *pos = ++idx->pos;
611 if (*pos >= idx->weight) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 kfree(v);
613 return NULL;
614 }
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700615 idx->bit = ffs(idx->val);
616 clear_bit(idx->bit - 1, &idx->val);
617 return idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618}
619
620static void clusterip_seq_stop(struct seq_file *s, void *v)
621{
622 kfree(v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623}
624
625static int clusterip_seq_show(struct seq_file *s, void *v)
626{
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700627 struct clusterip_seq_position *idx = (struct clusterip_seq_position *)v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900629 if (idx->pos != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 seq_putc(s, ',');
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700632 seq_printf(s, "%u", idx->bit);
633
634 if (idx->pos == idx->weight - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 seq_putc(s, '\n');
636
637 return 0;
638}
639
Philippe De Muyter56b3d972007-07-10 23:07:31 -0700640static const struct seq_operations clusterip_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 .start = clusterip_seq_start,
642 .next = clusterip_seq_next,
643 .stop = clusterip_seq_stop,
644 .show = clusterip_seq_show,
645};
646
647static int clusterip_proc_open(struct inode *inode, struct file *file)
648{
649 int ret = seq_open(file, &clusterip_seq_ops);
650
651 if (!ret) {
652 struct seq_file *sf = file->private_data;
653 struct proc_dir_entry *pde = PDE(inode);
654 struct clusterip_config *c = pde->data;
655
656 sf->private = pde;
657
658 clusterip_config_get(c);
659 }
660
661 return ret;
662}
663
664static int clusterip_proc_release(struct inode *inode, struct file *file)
665{
666 struct proc_dir_entry *pde = PDE(inode);
667 struct clusterip_config *c = pde->data;
668 int ret;
669
670 ret = seq_release(inode, file);
671
672 if (!ret)
673 clusterip_config_put(c);
674
675 return ret;
676}
677
678static ssize_t clusterip_proc_write(struct file *file, const char __user *input,
679 size_t size, loff_t *ofs)
680{
681#define PROC_WRITELEN 10
682 char buffer[PROC_WRITELEN+1];
Josef Sipek6df81ab2006-12-08 02:37:24 -0800683 struct proc_dir_entry *pde = PDE(file->f_path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 struct clusterip_config *c = pde->data;
685 unsigned long nodenum;
686
687 if (copy_from_user(buffer, input, PROC_WRITELEN))
688 return -EFAULT;
689
690 if (*buffer == '+') {
691 nodenum = simple_strtoul(buffer+1, NULL, 10);
692 if (clusterip_add_node(c, nodenum))
693 return -ENOMEM;
694 } else if (*buffer == '-') {
695 nodenum = simple_strtoul(buffer+1, NULL,10);
696 if (clusterip_del_node(c, nodenum))
697 return -ENOENT;
698 } else
699 return -EIO;
700
701 return size;
702}
703
Arjan van de Ven9a321442007-02-12 00:55:35 -0800704static const struct file_operations clusterip_proc_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 .owner = THIS_MODULE,
706 .open = clusterip_proc_open,
707 .read = seq_read,
708 .write = clusterip_proc_write,
709 .llseek = seq_lseek,
710 .release = clusterip_proc_release,
711};
712
713#endif /* CONFIG_PROC_FS */
714
Patrick McHardy32292a72006-04-06 14:11:30 -0700715static int __init ipt_clusterip_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716{
717 int ret;
718
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800719 ret = xt_register_target(&clusterip_tgt);
Patrick McHardy32292a72006-04-06 14:11:30 -0700720 if (ret < 0)
721 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
Patrick McHardy32292a72006-04-06 14:11:30 -0700723 ret = nf_register_hook(&cip_arp_ops);
724 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 goto cleanup_target;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
727#ifdef CONFIG_PROC_FS
Eric W. Biederman457c4cb2007-09-12 12:01:34 +0200728 clusterip_procdir = proc_mkdir("ipt_CLUSTERIP", init_net.proc_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 if (!clusterip_procdir) {
730 printk(KERN_ERR "CLUSTERIP: Unable to proc dir entry\n");
731 ret = -ENOMEM;
732 goto cleanup_hook;
733 }
734#endif /* CONFIG_PROC_FS */
735
736 printk(KERN_NOTICE "ClusterIP Version %s loaded successfully\n",
737 CLUSTERIP_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 return 0;
739
Patrick McHardy76592582006-11-29 02:35:42 +0100740#ifdef CONFIG_PROC_FS
Patrick McHardy32292a72006-04-06 14:11:30 -0700741cleanup_hook:
742 nf_unregister_hook(&cip_arp_ops);
Patrick McHardy76592582006-11-29 02:35:42 +0100743#endif /* CONFIG_PROC_FS */
Patrick McHardy32292a72006-04-06 14:11:30 -0700744cleanup_target:
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800745 xt_unregister_target(&clusterip_tgt);
Patrick McHardy32292a72006-04-06 14:11:30 -0700746 return ret;
747}
748
749static void __exit ipt_clusterip_fini(void)
750{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 printk(KERN_NOTICE "ClusterIP Version %s unloading\n",
752 CLUSTERIP_VERSION);
753#ifdef CONFIG_PROC_FS
754 remove_proc_entry(clusterip_procdir->name, clusterip_procdir->parent);
755#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 nf_unregister_hook(&cip_arp_ops);
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800757 xt_unregister_target(&clusterip_tgt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758}
759
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800760module_init(ipt_clusterip_init);
761module_exit(ipt_clusterip_fini);