blob: 50fc9e009fe4443563a511fb1e1b5a6921a12102 [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{
112 struct list_head *pos;
113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 list_for_each(pos, &clusterip_configs) {
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900115 struct clusterip_config *c = list_entry(pos,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 struct clusterip_config, list);
Jan Engelhardt7c4e36b2007-07-07 22:19:08 -0700117 if (c->clusterip == clusterip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 return c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 }
120
121 return NULL;
122}
123
124static inline struct clusterip_config *
Al Viro6a19d612006-09-28 14:22:24 -0700125clusterip_config_find_get(__be32 clusterip, int entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126{
127 struct clusterip_config *c;
128
Patrick McHardye45b1be2005-06-21 14:01:30 -0700129 read_lock_bh(&clusterip_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 c = __clusterip_config_find(clusterip);
131 if (!c) {
Patrick McHardye45b1be2005-06-21 14:01:30 -0700132 read_unlock_bh(&clusterip_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 return NULL;
134 }
135 atomic_inc(&c->refcount);
KOVACS Krisztian44513622005-09-16 16:59:46 -0700136 if (entry)
137 atomic_inc(&c->entries);
Patrick McHardye45b1be2005-06-21 14:01:30 -0700138 read_unlock_bh(&clusterip_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
140 return c;
141}
142
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700143static void
144clusterip_config_init_nodelist(struct clusterip_config *c,
145 const struct ipt_clusterip_tgt_info *i)
146{
147 int n;
148
Jan Engelhardt7c4e36b2007-07-07 22:19:08 -0700149 for (n = 0; n < i->num_local_nodes; n++)
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700150 set_bit(i->local_nodes[n] - 1, &c->local_nodes);
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700151}
152
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153static struct clusterip_config *
Al Viro6a19d612006-09-28 14:22:24 -0700154clusterip_config_init(struct ipt_clusterip_tgt_info *i, __be32 ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 struct net_device *dev)
156{
157 struct clusterip_config *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700159 c = kzalloc(sizeof(*c), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 if (!c)
161 return NULL;
162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 c->dev = dev;
164 c->clusterip = ip;
165 memcpy(&c->clustermac, &i->clustermac, ETH_ALEN);
166 c->num_total_nodes = i->num_total_nodes;
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700167 clusterip_config_init_nodelist(c, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 c->hash_mode = i->hash_mode;
169 c->hash_initval = i->hash_initval;
170 atomic_set(&c->refcount, 1);
KOVACS Krisztian44513622005-09-16 16:59:46 -0700171 atomic_set(&c->entries, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173#ifdef CONFIG_PROC_FS
Patrick McHardy76592582006-11-29 02:35:42 +0100174 {
175 char buffer[16];
176
177 /* create proc dir entry */
178 sprintf(buffer, "%u.%u.%u.%u", NIPQUAD(ip));
179 c->pde = create_proc_entry(buffer, S_IWUSR|S_IRUSR,
180 clusterip_procdir);
181 if (!c->pde) {
182 kfree(c);
183 return NULL;
184 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 }
186 c->pde->proc_fops = &clusterip_proc_fops;
187 c->pde->data = c;
188#endif
189
Patrick McHardye45b1be2005-06-21 14:01:30 -0700190 write_lock_bh(&clusterip_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 list_add(&c->list, &clusterip_configs);
Patrick McHardye45b1be2005-06-21 14:01:30 -0700192 write_unlock_bh(&clusterip_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
194 return c;
195}
196
Patrick McHardy76592582006-11-29 02:35:42 +0100197#ifdef CONFIG_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198static int
199clusterip_add_node(struct clusterip_config *c, u_int16_t nodenum)
200{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700202 if (nodenum == 0 ||
203 nodenum > c->num_total_nodes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700206 /* check if we already have this number in our bitfield */
207 if (test_and_set_bit(nodenum - 1, &c->local_nodes))
208 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 return 0;
211}
212
Jan Engelhardte1931b72007-07-07 22:16:26 -0700213static bool
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214clusterip_del_node(struct clusterip_config *c, u_int16_t nodenum)
215{
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700216 if (nodenum == 0 ||
217 nodenum > c->num_total_nodes)
Jan Engelhardte1931b72007-07-07 22:16:26 -0700218 return true;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900219
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700220 if (test_and_clear_bit(nodenum - 1, &c->local_nodes))
Jan Engelhardte1931b72007-07-07 22:16:26 -0700221 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Jan Engelhardte1931b72007-07-07 22:16:26 -0700223 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224}
Patrick McHardy76592582006-11-29 02:35:42 +0100225#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
227static inline u_int32_t
Jan Engelhardta47362a2007-07-07 22:16:55 -0700228clusterip_hashfn(const struct sk_buff *skb,
229 const struct clusterip_config *config)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230{
Jan Engelhardta47362a2007-07-07 22:16:55 -0700231 const struct iphdr *iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 unsigned long hashval;
233 u_int16_t sport, dport;
Jan Engelhardta47362a2007-07-07 22:16:55 -0700234 const u_int16_t *ports;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
236 switch (iph->protocol) {
237 case IPPROTO_TCP:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 case IPPROTO_UDP:
Patrick McHardya8d0f952007-02-07 15:07:43 -0800239 case IPPROTO_UDPLITE:
Patrick McHardy957dc802006-05-29 18:19:56 -0700240 case IPPROTO_SCTP:
241 case IPPROTO_DCCP:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 case IPPROTO_ICMP:
Jan Engelhardta47362a2007-07-07 22:16:55 -0700243 ports = (const void *)iph+iph->ihl*4;
Patrick McHardy957dc802006-05-29 18:19:56 -0700244 sport = ports[0];
245 dport = ports[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 break;
247 default:
Jan Engelhardt7c4e36b2007-07-07 22:19:08 -0700248 if (net_ratelimit())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 printk(KERN_NOTICE "CLUSTERIP: unknown protocol `%u'\n",
250 iph->protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 sport = dport = 0;
252 }
253
254 switch (config->hash_mode) {
255 case CLUSTERIP_HASHMODE_SIP:
256 hashval = jhash_1word(ntohl(iph->saddr),
257 config->hash_initval);
258 break;
259 case CLUSTERIP_HASHMODE_SIP_SPT:
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900260 hashval = jhash_2words(ntohl(iph->saddr), sport,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 config->hash_initval);
262 break;
263 case CLUSTERIP_HASHMODE_SIP_SPT_DPT:
264 hashval = jhash_3words(ntohl(iph->saddr), sport, dport,
265 config->hash_initval);
266 break;
267 default:
268 /* to make gcc happy */
269 hashval = 0;
270 /* This cannot happen, unless the check function wasn't called
271 * at rule load time */
272 printk("CLUSTERIP: unknown mode `%u'\n", config->hash_mode);
273 BUG();
274 break;
275 }
276
277 /* node numbers are 1..n, not 0..n */
Jan Engelhardt7c4e36b2007-07-07 22:19:08 -0700278 return (hashval % config->num_total_nodes) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279}
280
281static inline int
Jan Engelhardta47362a2007-07-07 22:16:55 -0700282clusterip_responsible(const struct clusterip_config *config, u_int32_t hash)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283{
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700284 return test_bit(hash - 1, &config->local_nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285}
286
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900287/***********************************************************************
288 * IPTABLES TARGET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 ***********************************************************************/
290
291static unsigned int
292target(struct sk_buff **pskb,
293 const struct net_device *in,
294 const struct net_device *out,
295 unsigned int hooknum,
Patrick McHardyc4986732006-03-20 18:02:56 -0800296 const struct xt_target *target,
Patrick McHardyfe1cb102006-08-22 00:35:47 -0700297 const void *targinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298{
299 const struct ipt_clusterip_tgt_info *cipinfo = targinfo;
Patrick McHardy587aa642007-03-14 16:37:25 -0700300 struct nf_conn *ct;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 enum ip_conntrack_info ctinfo;
Patrick McHardy587aa642007-03-14 16:37:25 -0700302 u_int32_t hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
304 /* don't need to clusterip_config_get() here, since refcount
305 * is only decremented by destroy() - and ip_tables guarantees
306 * that the ->target() function isn't called after ->destroy() */
307
Patrick McHardy587aa642007-03-14 16:37:25 -0700308 ct = nf_ct_get(*pskb, &ctinfo);
309 if (ct == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 printk(KERN_ERR "CLUSTERIP: no conntrack!\n");
311 /* FIXME: need to drop invalid ones, since replies
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900312 * to outgoing connections of other nodes will be
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 * marked as INVALID */
314 return NF_DROP;
315 }
316
317 /* special case: ICMP error handling. conntrack distinguishes between
318 * error messages (RELATED) and information requests (see below) */
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700319 if (ip_hdr(*pskb)->protocol == IPPROTO_ICMP
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900320 && (ctinfo == IP_CT_RELATED
Harald Welte5d927eb2005-06-22 12:37:50 -0700321 || ctinfo == IP_CT_RELATED+IP_CT_IS_REPLY))
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800322 return XT_CONTINUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900324 /* ip_conntrack_icmp guarantees us that we only have ICMP_ECHO,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 * TIMESTAMP, INFO_REQUEST or ADDRESS type icmp packets from here
326 * on, which all have an ID field [relevant for hashing]. */
327
328 hash = clusterip_hashfn(*pskb, cipinfo->config);
329
330 switch (ctinfo) {
331 case IP_CT_NEW:
Patrick McHardy587aa642007-03-14 16:37:25 -0700332 ct->mark = hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 break;
334 case IP_CT_RELATED:
335 case IP_CT_RELATED+IP_CT_IS_REPLY:
336 /* FIXME: we don't handle expectations at the
337 * moment. they can arrive on a different node than
338 * the master connection (e.g. FTP passive mode) */
339 case IP_CT_ESTABLISHED:
340 case IP_CT_ESTABLISHED+IP_CT_IS_REPLY:
341 break;
342 default:
343 break;
344 }
345
Patrick McHardy0d537782007-07-07 22:39:38 -0700346#ifdef DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 DUMP_TUPLE(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple);
348#endif
Patrick McHardy0d537782007-07-07 22:39:38 -0700349 pr_debug("hash=%u ct_hash=%u ", hash, ct->mark);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 if (!clusterip_responsible(cipinfo->config, hash)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700351 pr_debug("not responsible\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 return NF_DROP;
353 }
Patrick McHardy0d537782007-07-07 22:39:38 -0700354 pr_debug("responsible\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
356 /* despite being received via linklayer multicast, this is
357 * actually a unicast IP packet. TCP doesn't like PACKET_MULTICAST */
358 (*pskb)->pkt_type = PACKET_HOST;
359
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800360 return XT_CONTINUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361}
362
Jan Engelhardte1931b72007-07-07 22:16:26 -0700363static bool
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364checkentry(const char *tablename,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800365 const void *e_void,
Patrick McHardyc4986732006-03-20 18:02:56 -0800366 const struct xt_target *target,
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900367 void *targinfo,
368 unsigned int hook_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369{
370 struct ipt_clusterip_tgt_info *cipinfo = targinfo;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800371 const struct ipt_entry *e = e_void;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
373 struct clusterip_config *config;
374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 if (cipinfo->hash_mode != CLUSTERIP_HASHMODE_SIP &&
376 cipinfo->hash_mode != CLUSTERIP_HASHMODE_SIP_SPT &&
377 cipinfo->hash_mode != CLUSTERIP_HASHMODE_SIP_SPT_DPT) {
378 printk(KERN_WARNING "CLUSTERIP: unknown mode `%u'\n",
379 cipinfo->hash_mode);
Jan Engelhardte1931b72007-07-07 22:16:26 -0700380 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
382 }
Al Viro6a19d612006-09-28 14:22:24 -0700383 if (e->ip.dmsk.s_addr != htonl(0xffffffff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 || e->ip.dst.s_addr == 0) {
385 printk(KERN_ERR "CLUSTERIP: Please specify destination IP\n");
Jan Engelhardte1931b72007-07-07 22:16:26 -0700386 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 }
388
389 /* FIXME: further sanity checks */
390
KOVACS Krisztian44513622005-09-16 16:59:46 -0700391 config = clusterip_config_find_get(e->ip.dst.s_addr, 1);
Patrick McHardyd3c3f422007-07-07 22:38:30 -0700392 if (!config) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 if (!(cipinfo->flags & CLUSTERIP_FLAG_NEW)) {
394 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 -0700395 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 } else {
397 struct net_device *dev;
398
399 if (e->ip.iniface[0] == '\0') {
400 printk(KERN_WARNING "CLUSTERIP: Please specify an interface name\n");
Jan Engelhardte1931b72007-07-07 22:16:26 -0700401 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 }
403
404 dev = dev_get_by_name(e->ip.iniface);
405 if (!dev) {
406 printk(KERN_WARNING "CLUSTERIP: no such interface %s\n", e->ip.iniface);
Jan Engelhardte1931b72007-07-07 22:16:26 -0700407 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 }
409
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900410 config = clusterip_config_init(cipinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 e->ip.dst.s_addr, dev);
412 if (!config) {
413 printk(KERN_WARNING "CLUSTERIP: cannot allocate config\n");
414 dev_put(dev);
Jan Engelhardte1931b72007-07-07 22:16:26 -0700415 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 }
417 dev_mc_add(config->dev,config->clustermac, ETH_ALEN, 0);
418 }
419 }
Patrick McHardyd3c3f422007-07-07 22:38:30 -0700420 cipinfo->config = config;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
Yasuyuki Kozakai11078c32006-12-12 00:29:02 -0800422 if (nf_ct_l3proto_try_module_get(target->family) < 0) {
423 printk(KERN_WARNING "can't load conntrack support for "
424 "proto=%d\n", target->family);
Jan Engelhardte1931b72007-07-07 22:16:26 -0700425 return false;
Yasuyuki Kozakai11078c32006-12-12 00:29:02 -0800426 }
427
Jan Engelhardte1931b72007-07-07 22:16:26 -0700428 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429}
430
431/* drop reference count of cluster config when rule is deleted */
Patrick McHardyefa74162006-08-22 00:36:37 -0700432static void destroy(const struct xt_target *target, void *targinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433{
Patrick McHardyc4986732006-03-20 18:02:56 -0800434 struct ipt_clusterip_tgt_info *cipinfo = targinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
KOVACS Krisztian44513622005-09-16 16:59:46 -0700436 /* if no more entries are referencing the config, remove it
437 * from the list and destroy the proc entry */
438 clusterip_config_entry_put(cipinfo->config);
439
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 clusterip_config_put(cipinfo->config);
Yasuyuki Kozakai11078c32006-12-12 00:29:02 -0800441
442 nf_ct_l3proto_module_put(target->family);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443}
444
Patrick McHardyd3c3f422007-07-07 22:38:30 -0700445#ifdef CONFIG_COMPAT
446struct compat_ipt_clusterip_tgt_info
447{
448 u_int32_t flags;
449 u_int8_t clustermac[6];
450 u_int16_t num_total_nodes;
451 u_int16_t num_local_nodes;
452 u_int16_t local_nodes[CLUSTERIP_MAX_NODES];
453 u_int32_t hash_mode;
454 u_int32_t hash_initval;
455 compat_uptr_t config;
456};
457#endif /* CONFIG_COMPAT */
458
Patrick McHardy9f15c532007-07-07 22:22:02 -0700459static struct xt_target clusterip_tgt __read_mostly = {
Patrick McHardy1d5cd902006-03-20 18:01:14 -0800460 .name = "CLUSTERIP",
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800461 .family = AF_INET,
Patrick McHardy1d5cd902006-03-20 18:01:14 -0800462 .target = target,
Patrick McHardy1d5cd902006-03-20 18:01:14 -0800463 .checkentry = checkentry,
464 .destroy = destroy,
Patrick McHardyd3c3f422007-07-07 22:38:30 -0700465 .targetsize = sizeof(struct ipt_clusterip_tgt_info),
466#ifdef CONFIG_COMPAT
467 .compatsize = sizeof(struct compat_ipt_clusterip_tgt_info),
468#endif /* CONFIG_COMPAT */
Patrick McHardy1d5cd902006-03-20 18:01:14 -0800469 .me = THIS_MODULE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470};
471
472
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900473/***********************************************************************
474 * ARP MANGLING CODE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 ***********************************************************************/
476
477/* hardcoded for 48bit ethernet and 32bit ipv4 addresses */
478struct arp_payload {
479 u_int8_t src_hw[ETH_ALEN];
Al Viro6a19d612006-09-28 14:22:24 -0700480 __be32 src_ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 u_int8_t dst_hw[ETH_ALEN];
Al Viro6a19d612006-09-28 14:22:24 -0700482 __be32 dst_ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483} __attribute__ ((packed));
484
Patrick McHardy0d537782007-07-07 22:39:38 -0700485#ifdef DEBUG
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900486static void arp_print(struct arp_payload *payload)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487{
488#define HBUFFERLEN 30
489 char hbuffer[HBUFFERLEN];
490 int j,k;
491 const char hexbuf[]= "0123456789abcdef";
492
493 for (k=0, j=0; k < HBUFFERLEN-3 && j < ETH_ALEN; j++) {
494 hbuffer[k++]=hexbuf[(payload->src_hw[j]>>4)&15];
495 hbuffer[k++]=hexbuf[payload->src_hw[j]&15];
496 hbuffer[k++]=':';
497 }
498 hbuffer[--k]='\0';
499
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900500 printk("src %u.%u.%u.%u@%s, dst %u.%u.%u.%u\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 NIPQUAD(payload->src_ip), hbuffer,
502 NIPQUAD(payload->dst_ip));
503}
504#endif
505
506static unsigned int
507arp_mangle(unsigned int hook,
508 struct sk_buff **pskb,
509 const struct net_device *in,
510 const struct net_device *out,
511 int (*okfn)(struct sk_buff *))
512{
Arnaldo Carvalho de Melod0a92be2007-03-12 20:56:31 -0300513 struct arphdr *arp = arp_hdr(*pskb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 struct arp_payload *payload;
515 struct clusterip_config *c;
516
517 /* we don't care about non-ethernet and non-ipv4 ARP */
518 if (arp->ar_hrd != htons(ARPHRD_ETHER)
519 || arp->ar_pro != htons(ETH_P_IP)
520 || arp->ar_pln != 4 || arp->ar_hln != ETH_ALEN)
521 return NF_ACCEPT;
522
Harald Welte4095ebf2005-06-28 12:49:30 -0700523 /* we only want to mangle arp requests and replies */
524 if (arp->ar_op != htons(ARPOP_REPLY)
525 && arp->ar_op != htons(ARPOP_REQUEST))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 return NF_ACCEPT;
527
528 payload = (void *)(arp+1);
529
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900530 /* if there is no clusterip configuration for the arp reply's
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 * source ip, we don't want to mangle it */
KOVACS Krisztian44513622005-09-16 16:59:46 -0700532 c = clusterip_config_find_get(payload->src_ip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 if (!c)
534 return NF_ACCEPT;
535
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900536 /* normally the linux kernel always replies to arp queries of
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 * addresses on different interfacs. However, in the CLUSTERIP case
538 * this wouldn't work, since we didn't subscribe the mcast group on
539 * other interfaces */
540 if (c->dev != out) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700541 pr_debug("CLUSTERIP: not mangling arp reply on different "
542 "interface: cip'%s'-skb'%s'\n",
543 c->dev->name, out->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 clusterip_config_put(c);
545 return NF_ACCEPT;
546 }
547
548 /* mangle reply hardware address */
549 memcpy(payload->src_hw, c->clustermac, arp->ar_hln);
550
Patrick McHardy0d537782007-07-07 22:39:38 -0700551#ifdef DEBUG
552 pr_debug(KERN_DEBUG "CLUSTERIP mangled arp reply: ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 arp_print(payload);
554#endif
555
556 clusterip_config_put(c);
557
558 return NF_ACCEPT;
559}
560
561static struct nf_hook_ops cip_arp_ops = {
562 .hook = arp_mangle,
563 .pf = NF_ARP,
564 .hooknum = NF_ARP_OUT,
565 .priority = -1
566};
567
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900568/***********************************************************************
569 * PROC DIR HANDLING
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 ***********************************************************************/
571
572#ifdef CONFIG_PROC_FS
573
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700574struct clusterip_seq_position {
575 unsigned int pos; /* position */
576 unsigned int weight; /* number of bits set == size */
577 unsigned int bit; /* current bit */
578 unsigned long val; /* current value */
579};
580
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581static void *clusterip_seq_start(struct seq_file *s, loff_t *pos)
582{
583 struct proc_dir_entry *pde = s->private;
584 struct clusterip_config *c = pde->data;
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700585 unsigned int weight;
586 u_int32_t local_nodes;
587 struct clusterip_seq_position *idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700589 /* FIXME: possible race */
590 local_nodes = c->local_nodes;
591 weight = hweight32(local_nodes);
592 if (*pos >= weight)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 return NULL;
594
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700595 idx = kmalloc(sizeof(struct clusterip_seq_position), GFP_KERNEL);
596 if (!idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 return ERR_PTR(-ENOMEM);
598
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700599 idx->pos = *pos;
600 idx->weight = weight;
601 idx->bit = ffs(local_nodes);
602 idx->val = local_nodes;
603 clear_bit(idx->bit - 1, &idx->val);
604
605 return idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606}
607
608static void *clusterip_seq_next(struct seq_file *s, void *v, loff_t *pos)
609{
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700610 struct clusterip_seq_position *idx = (struct clusterip_seq_position *)v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700612 *pos = ++idx->pos;
613 if (*pos >= idx->weight) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 kfree(v);
615 return NULL;
616 }
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700617 idx->bit = ffs(idx->val);
618 clear_bit(idx->bit - 1, &idx->val);
619 return idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620}
621
622static void clusterip_seq_stop(struct seq_file *s, void *v)
623{
624 kfree(v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625}
626
627static int clusterip_seq_show(struct seq_file *s, void *v)
628{
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700629 struct clusterip_seq_position *idx = (struct clusterip_seq_position *)v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900631 if (idx->pos != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 seq_putc(s, ',');
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700634 seq_printf(s, "%u", idx->bit);
635
636 if (idx->pos == idx->weight - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 seq_putc(s, '\n');
638
639 return 0;
640}
641
Philippe De Muyter56b3d972007-07-10 23:07:31 -0700642static const struct seq_operations clusterip_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 .start = clusterip_seq_start,
644 .next = clusterip_seq_next,
645 .stop = clusterip_seq_stop,
646 .show = clusterip_seq_show,
647};
648
649static int clusterip_proc_open(struct inode *inode, struct file *file)
650{
651 int ret = seq_open(file, &clusterip_seq_ops);
652
653 if (!ret) {
654 struct seq_file *sf = file->private_data;
655 struct proc_dir_entry *pde = PDE(inode);
656 struct clusterip_config *c = pde->data;
657
658 sf->private = pde;
659
660 clusterip_config_get(c);
661 }
662
663 return ret;
664}
665
666static int clusterip_proc_release(struct inode *inode, struct file *file)
667{
668 struct proc_dir_entry *pde = PDE(inode);
669 struct clusterip_config *c = pde->data;
670 int ret;
671
672 ret = seq_release(inode, file);
673
674 if (!ret)
675 clusterip_config_put(c);
676
677 return ret;
678}
679
680static ssize_t clusterip_proc_write(struct file *file, const char __user *input,
681 size_t size, loff_t *ofs)
682{
683#define PROC_WRITELEN 10
684 char buffer[PROC_WRITELEN+1];
Josef Sipek6df81ab2006-12-08 02:37:24 -0800685 struct proc_dir_entry *pde = PDE(file->f_path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 struct clusterip_config *c = pde->data;
687 unsigned long nodenum;
688
689 if (copy_from_user(buffer, input, PROC_WRITELEN))
690 return -EFAULT;
691
692 if (*buffer == '+') {
693 nodenum = simple_strtoul(buffer+1, NULL, 10);
694 if (clusterip_add_node(c, nodenum))
695 return -ENOMEM;
696 } else if (*buffer == '-') {
697 nodenum = simple_strtoul(buffer+1, NULL,10);
698 if (clusterip_del_node(c, nodenum))
699 return -ENOENT;
700 } else
701 return -EIO;
702
703 return size;
704}
705
Arjan van de Ven9a321442007-02-12 00:55:35 -0800706static const struct file_operations clusterip_proc_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 .owner = THIS_MODULE,
708 .open = clusterip_proc_open,
709 .read = seq_read,
710 .write = clusterip_proc_write,
711 .llseek = seq_lseek,
712 .release = clusterip_proc_release,
713};
714
715#endif /* CONFIG_PROC_FS */
716
Patrick McHardy32292a72006-04-06 14:11:30 -0700717static int __init ipt_clusterip_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718{
719 int ret;
720
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800721 ret = xt_register_target(&clusterip_tgt);
Patrick McHardy32292a72006-04-06 14:11:30 -0700722 if (ret < 0)
723 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
Patrick McHardy32292a72006-04-06 14:11:30 -0700725 ret = nf_register_hook(&cip_arp_ops);
726 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 goto cleanup_target;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
729#ifdef CONFIG_PROC_FS
Eric W. Biederman457c4cb2007-09-12 12:01:34 +0200730 clusterip_procdir = proc_mkdir("ipt_CLUSTERIP", init_net.proc_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 if (!clusterip_procdir) {
732 printk(KERN_ERR "CLUSTERIP: Unable to proc dir entry\n");
733 ret = -ENOMEM;
734 goto cleanup_hook;
735 }
736#endif /* CONFIG_PROC_FS */
737
738 printk(KERN_NOTICE "ClusterIP Version %s loaded successfully\n",
739 CLUSTERIP_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 return 0;
741
Patrick McHardy76592582006-11-29 02:35:42 +0100742#ifdef CONFIG_PROC_FS
Patrick McHardy32292a72006-04-06 14:11:30 -0700743cleanup_hook:
744 nf_unregister_hook(&cip_arp_ops);
Patrick McHardy76592582006-11-29 02:35:42 +0100745#endif /* CONFIG_PROC_FS */
Patrick McHardy32292a72006-04-06 14:11:30 -0700746cleanup_target:
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800747 xt_unregister_target(&clusterip_tgt);
Patrick McHardy32292a72006-04-06 14:11:30 -0700748 return ret;
749}
750
751static void __exit ipt_clusterip_fini(void)
752{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 printk(KERN_NOTICE "ClusterIP Version %s unloading\n",
754 CLUSTERIP_VERSION);
755#ifdef CONFIG_PROC_FS
756 remove_proc_entry(clusterip_procdir->name, clusterip_procdir->parent);
757#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 nf_unregister_hook(&cip_arp_ops);
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800759 xt_unregister_target(&clusterip_tgt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760}
761
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800762module_init(ipt_clusterip_init);
763module_exit(ipt_clusterip_fini);