blob: ab828400ed7160c146f8dc058edf9b17dc81ab96 [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090017#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/ip.h>
19#include <linux/tcp.h>
20#include <linux/udp.h>
21#include <linux/icmp.h>
22#include <linux/if_arp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#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 McHardy587aa642007-03-14 16:37:25 -070028#include <net/netfilter/nf_conntrack.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020029#include <net/net_namespace.h>
Patrick McHardy587aa642007-03-14 16:37:25 -070030#include <net/checksum.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
KOVACS Krisztian136e92b2005-09-16 17:00:04 -070032#define CLUSTERIP_VERSION "0.8"
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Linus Torvalds1da177e2005-04-16 15:20:36 -070034MODULE_LICENSE("GPL");
35MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
Jan Engelhardt2ae15b62008-01-14 23:42:28 -080036MODULE_DESCRIPTION("Xtables: CLUSTERIP target");
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38struct clusterip_config {
39 struct list_head list; /* list of all configs */
40 atomic_t refcount; /* reference count */
KOVACS Krisztian44513622005-09-16 16:59:46 -070041 atomic_t entries; /* number of entries/rules
42 * referencing us */
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Al Viro6a19d612006-09-28 14:22:24 -070044 __be32 clusterip; /* the IP address */
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 u_int8_t clustermac[ETH_ALEN]; /* the MAC address */
46 struct net_device *dev; /* device */
47 u_int16_t num_total_nodes; /* total number of nodes */
KOVACS Krisztian136e92b2005-09-16 17:00:04 -070048 unsigned long local_nodes; /* node number array */
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50#ifdef CONFIG_PROC_FS
51 struct proc_dir_entry *pde; /* proc dir entry */
52#endif
53 enum clusterip_hashmode hash_mode; /* which hashing mode */
54 u_int32_t hash_initval; /* hash initialization */
55};
56
57static LIST_HEAD(clusterip_configs);
58
KOVACS Krisztian136e92b2005-09-16 17:00:04 -070059/* clusterip_lock protects the clusterip_configs list */
Patrick McHardye45b1be2005-06-21 14:01:30 -070060static DEFINE_RWLOCK(clusterip_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62#ifdef CONFIG_PROC_FS
Arjan van de Ven9a321442007-02-12 00:55:35 -080063static const struct file_operations clusterip_proc_fops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064static struct proc_dir_entry *clusterip_procdir;
65#endif
66
67static inline void
KOVACS Krisztian44513622005-09-16 16:59:46 -070068clusterip_config_get(struct clusterip_config *c)
69{
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 atomic_inc(&c->refcount);
71}
72
73static inline void
KOVACS Krisztian44513622005-09-16 16:59:46 -070074clusterip_config_put(struct clusterip_config *c)
75{
76 if (atomic_dec_and_test(&c->refcount))
77 kfree(c);
78}
79
KOVACS Krisztian44513622005-09-16 16:59:46 -070080/* decrease the count of entries using/referencing this config. If last
81 * entry(rule) is removed, remove the config from lists, but don't free it
82 * yet, since proc-files could still be holding references */
83static inline void
84clusterip_config_entry_put(struct clusterip_config *c)
85{
Pavel Emelyanov4dee9592008-04-14 00:44:52 -070086 write_lock_bh(&clusterip_lock);
KOVACS Krisztian44513622005-09-16 16:59:46 -070087 if (atomic_dec_and_test(&c->entries)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 list_del(&c->list);
Patrick McHardye45b1be2005-06-21 14:01:30 -070089 write_unlock_bh(&clusterip_lock);
KOVACS Krisztian44513622005-09-16 16:59:46 -070090
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 dev_mc_delete(c->dev, c->clustermac, ETH_ALEN, 0);
92 dev_put(c->dev);
KOVACS Krisztian44513622005-09-16 16:59:46 -070093
94 /* In case anyone still accesses the file, the open/close
95 * functions are also incrementing the refcount on their own,
96 * so it's safe to remove the entry even if it's in use. */
97#ifdef CONFIG_PROC_FS
98 remove_proc_entry(c->pde->name, c->pde->parent);
99#endif
Pavel Emelyanov4dee9592008-04-14 00:44:52 -0700100 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 }
Pavel Emelyanov4dee9592008-04-14 00:44:52 -0700102 write_unlock_bh(&clusterip_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103}
104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105static struct clusterip_config *
Al Viro6a19d612006-09-28 14:22:24 -0700106__clusterip_config_find(__be32 clusterip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107{
Li Zefan4c610972007-12-04 23:22:26 -0800108 struct clusterip_config *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
Li Zefan4c610972007-12-04 23:22:26 -0800110 list_for_each_entry(c, &clusterip_configs, list) {
Jan Engelhardt7c4e36b2007-07-07 22:19:08 -0700111 if (c->clusterip == clusterip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 return c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 }
114
115 return NULL;
116}
117
118static inline struct clusterip_config *
Al Viro6a19d612006-09-28 14:22:24 -0700119clusterip_config_find_get(__be32 clusterip, int entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120{
121 struct clusterip_config *c;
122
Patrick McHardye45b1be2005-06-21 14:01:30 -0700123 read_lock_bh(&clusterip_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 c = __clusterip_config_find(clusterip);
125 if (!c) {
Patrick McHardye45b1be2005-06-21 14:01:30 -0700126 read_unlock_bh(&clusterip_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 return NULL;
128 }
129 atomic_inc(&c->refcount);
KOVACS Krisztian44513622005-09-16 16:59:46 -0700130 if (entry)
131 atomic_inc(&c->entries);
Patrick McHardye45b1be2005-06-21 14:01:30 -0700132 read_unlock_bh(&clusterip_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
134 return c;
135}
136
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700137static void
138clusterip_config_init_nodelist(struct clusterip_config *c,
139 const struct ipt_clusterip_tgt_info *i)
140{
141 int n;
142
Jan Engelhardt7c4e36b2007-07-07 22:19:08 -0700143 for (n = 0; n < i->num_local_nodes; n++)
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700144 set_bit(i->local_nodes[n] - 1, &c->local_nodes);
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700145}
146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147static struct clusterip_config *
Jan Engelhardt3cf93c92008-04-14 09:56:05 +0200148clusterip_config_init(const struct ipt_clusterip_tgt_info *i, __be32 ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 struct net_device *dev)
150{
151 struct clusterip_config *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700153 c = kzalloc(sizeof(*c), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 if (!c)
155 return NULL;
156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 c->dev = dev;
158 c->clusterip = ip;
159 memcpy(&c->clustermac, &i->clustermac, ETH_ALEN);
160 c->num_total_nodes = i->num_total_nodes;
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700161 clusterip_config_init_nodelist(c, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 c->hash_mode = i->hash_mode;
163 c->hash_initval = i->hash_initval;
164 atomic_set(&c->refcount, 1);
KOVACS Krisztian44513622005-09-16 16:59:46 -0700165 atomic_set(&c->entries, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
167#ifdef CONFIG_PROC_FS
Patrick McHardy76592582006-11-29 02:35:42 +0100168 {
169 char buffer[16];
170
171 /* create proc dir entry */
Harvey Harrisoncffee382008-10-31 00:53:08 -0700172 sprintf(buffer, "%pI4", &ip);
Denis V. Lunev6e79d852008-05-02 02:45:42 -0700173 c->pde = proc_create_data(buffer, S_IWUSR|S_IRUSR,
174 clusterip_procdir,
175 &clusterip_proc_fops, c);
Patrick McHardy76592582006-11-29 02:35:42 +0100176 if (!c->pde) {
177 kfree(c);
178 return NULL;
179 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181#endif
182
Patrick McHardye45b1be2005-06-21 14:01:30 -0700183 write_lock_bh(&clusterip_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 list_add(&c->list, &clusterip_configs);
Patrick McHardye45b1be2005-06-21 14:01:30 -0700185 write_unlock_bh(&clusterip_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
187 return c;
188}
189
Patrick McHardy76592582006-11-29 02:35:42 +0100190#ifdef CONFIG_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191static int
192clusterip_add_node(struct clusterip_config *c, u_int16_t nodenum)
193{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700195 if (nodenum == 0 ||
196 nodenum > c->num_total_nodes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700199 /* check if we already have this number in our bitfield */
200 if (test_and_set_bit(nodenum - 1, &c->local_nodes))
201 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 return 0;
204}
205
Jan Engelhardte1931b72007-07-07 22:16:26 -0700206static bool
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207clusterip_del_node(struct clusterip_config *c, u_int16_t nodenum)
208{
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700209 if (nodenum == 0 ||
210 nodenum > c->num_total_nodes)
Jan Engelhardte1931b72007-07-07 22:16:26 -0700211 return true;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900212
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700213 if (test_and_clear_bit(nodenum - 1, &c->local_nodes))
Jan Engelhardte1931b72007-07-07 22:16:26 -0700214 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Jan Engelhardte1931b72007-07-07 22:16:26 -0700216 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217}
Patrick McHardy76592582006-11-29 02:35:42 +0100218#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
220static inline u_int32_t
Jan Engelhardta47362a2007-07-07 22:16:55 -0700221clusterip_hashfn(const struct sk_buff *skb,
222 const struct clusterip_config *config)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223{
Jan Engelhardta47362a2007-07-07 22:16:55 -0700224 const struct iphdr *iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 unsigned long hashval;
226 u_int16_t sport, dport;
Jan Engelhardta47362a2007-07-07 22:16:55 -0700227 const u_int16_t *ports;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
229 switch (iph->protocol) {
230 case IPPROTO_TCP:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 case IPPROTO_UDP:
Patrick McHardya8d0f952007-02-07 15:07:43 -0800232 case IPPROTO_UDPLITE:
Patrick McHardy957dc802006-05-29 18:19:56 -0700233 case IPPROTO_SCTP:
234 case IPPROTO_DCCP:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 case IPPROTO_ICMP:
Jan Engelhardta47362a2007-07-07 22:16:55 -0700236 ports = (const void *)iph+iph->ihl*4;
Patrick McHardy957dc802006-05-29 18:19:56 -0700237 sport = ports[0];
238 dport = ports[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 break;
240 default:
Jan Engelhardt7c4e36b2007-07-07 22:19:08 -0700241 if (net_ratelimit())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 printk(KERN_NOTICE "CLUSTERIP: unknown protocol `%u'\n",
243 iph->protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 sport = dport = 0;
245 }
246
247 switch (config->hash_mode) {
248 case CLUSTERIP_HASHMODE_SIP:
249 hashval = jhash_1word(ntohl(iph->saddr),
250 config->hash_initval);
251 break;
252 case CLUSTERIP_HASHMODE_SIP_SPT:
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900253 hashval = jhash_2words(ntohl(iph->saddr), sport,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 config->hash_initval);
255 break;
256 case CLUSTERIP_HASHMODE_SIP_SPT_DPT:
257 hashval = jhash_3words(ntohl(iph->saddr), sport, dport,
258 config->hash_initval);
259 break;
260 default:
261 /* to make gcc happy */
262 hashval = 0;
263 /* This cannot happen, unless the check function wasn't called
264 * at rule load time */
265 printk("CLUSTERIP: unknown mode `%u'\n", config->hash_mode);
266 BUG();
267 break;
268 }
269
270 /* node numbers are 1..n, not 0..n */
Patrick McHardy34498822007-12-17 22:45:52 -0800271 return (((u64)hashval * config->num_total_nodes) >> 32) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272}
273
274static inline int
Jan Engelhardta47362a2007-07-07 22:16:55 -0700275clusterip_responsible(const struct clusterip_config *config, u_int32_t hash)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276{
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700277 return test_bit(hash - 1, &config->local_nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278}
279
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900280/***********************************************************************
281 * IPTABLES TARGET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 ***********************************************************************/
283
284static unsigned int
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200285clusterip_tg(struct sk_buff *skb, const struct xt_target_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286{
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200287 const struct ipt_clusterip_tgt_info *cipinfo = par->targinfo;
Patrick McHardy587aa642007-03-14 16:37:25 -0700288 struct nf_conn *ct;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 enum ip_conntrack_info ctinfo;
Patrick McHardy587aa642007-03-14 16:37:25 -0700290 u_int32_t hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
292 /* don't need to clusterip_config_get() here, since refcount
293 * is only decremented by destroy() - and ip_tables guarantees
294 * that the ->target() function isn't called after ->destroy() */
295
Herbert Xu3db05fe2007-10-15 00:53:15 -0700296 ct = nf_ct_get(skb, &ctinfo);
Patrick McHardy587aa642007-03-14 16:37:25 -0700297 if (ct == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 printk(KERN_ERR "CLUSTERIP: no conntrack!\n");
299 /* FIXME: need to drop invalid ones, since replies
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900300 * to outgoing connections of other nodes will be
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 * marked as INVALID */
302 return NF_DROP;
303 }
304
305 /* special case: ICMP error handling. conntrack distinguishes between
306 * error messages (RELATED) and information requests (see below) */
Joe Perches3666ed12009-11-23 23:17:06 +0100307 if (ip_hdr(skb)->protocol == IPPROTO_ICMP &&
308 (ctinfo == IP_CT_RELATED ||
309 ctinfo == IP_CT_RELATED + IP_CT_IS_REPLY))
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800310 return XT_CONTINUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900312 /* ip_conntrack_icmp guarantees us that we only have ICMP_ECHO,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 * TIMESTAMP, INFO_REQUEST or ADDRESS type icmp packets from here
314 * on, which all have an ID field [relevant for hashing]. */
315
Herbert Xu3db05fe2007-10-15 00:53:15 -0700316 hash = clusterip_hashfn(skb, cipinfo->config);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
318 switch (ctinfo) {
319 case IP_CT_NEW:
Patrick McHardy587aa642007-03-14 16:37:25 -0700320 ct->mark = hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 break;
322 case IP_CT_RELATED:
323 case IP_CT_RELATED+IP_CT_IS_REPLY:
324 /* FIXME: we don't handle expectations at the
325 * moment. they can arrive on a different node than
326 * the master connection (e.g. FTP passive mode) */
327 case IP_CT_ESTABLISHED:
328 case IP_CT_ESTABLISHED+IP_CT_IS_REPLY:
329 break;
330 default:
331 break;
332 }
333
Patrick McHardy0d537782007-07-07 22:39:38 -0700334#ifdef DEBUG
Jan Engelhardt3c9fba62008-04-14 11:15:54 +0200335 nf_ct_dump_tuple_ip(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336#endif
Patrick McHardy0d537782007-07-07 22:39:38 -0700337 pr_debug("hash=%u ct_hash=%u ", hash, ct->mark);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 if (!clusterip_responsible(cipinfo->config, hash)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700339 pr_debug("not responsible\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 return NF_DROP;
341 }
Patrick McHardy0d537782007-07-07 22:39:38 -0700342 pr_debug("responsible\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
344 /* despite being received via linklayer multicast, this is
345 * actually a unicast IP packet. TCP doesn't like PACKET_MULTICAST */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700346 skb->pkt_type = PACKET_HOST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800348 return XT_CONTINUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349}
350
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200351static bool clusterip_tg_check(const struct xt_tgchk_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200353 struct ipt_clusterip_tgt_info *cipinfo = par->targinfo;
354 const struct ipt_entry *e = par->entryinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
356 struct clusterip_config *config;
357
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 if (cipinfo->hash_mode != CLUSTERIP_HASHMODE_SIP &&
359 cipinfo->hash_mode != CLUSTERIP_HASHMODE_SIP_SPT &&
360 cipinfo->hash_mode != CLUSTERIP_HASHMODE_SIP_SPT_DPT) {
361 printk(KERN_WARNING "CLUSTERIP: unknown mode `%u'\n",
362 cipinfo->hash_mode);
Jan Engelhardte1931b72007-07-07 22:16:26 -0700363 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
365 }
Joe Perches3666ed12009-11-23 23:17:06 +0100366 if (e->ip.dmsk.s_addr != htonl(0xffffffff) ||
367 e->ip.dst.s_addr == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 printk(KERN_ERR "CLUSTERIP: Please specify destination IP\n");
Jan Engelhardte1931b72007-07-07 22:16:26 -0700369 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 }
371
372 /* FIXME: further sanity checks */
373
KOVACS Krisztian44513622005-09-16 16:59:46 -0700374 config = clusterip_config_find_get(e->ip.dst.s_addr, 1);
Patrick McHardyd3c3f422007-07-07 22:38:30 -0700375 if (!config) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 if (!(cipinfo->flags & CLUSTERIP_FLAG_NEW)) {
Harvey Harrisoncffee382008-10-31 00:53:08 -0700377 printk(KERN_WARNING "CLUSTERIP: no config found for %pI4, need 'new'\n", &e->ip.dst.s_addr);
Jan Engelhardte1931b72007-07-07 22:16:26 -0700378 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 } else {
380 struct net_device *dev;
381
382 if (e->ip.iniface[0] == '\0') {
383 printk(KERN_WARNING "CLUSTERIP: Please specify an interface name\n");
Jan Engelhardte1931b72007-07-07 22:16:26 -0700384 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 }
386
Eric W. Biederman881d9662007-09-17 11:56:21 -0700387 dev = dev_get_by_name(&init_net, e->ip.iniface);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 if (!dev) {
389 printk(KERN_WARNING "CLUSTERIP: no such interface %s\n", e->ip.iniface);
Jan Engelhardte1931b72007-07-07 22:16:26 -0700390 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 }
392
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900393 config = clusterip_config_init(cipinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 e->ip.dst.s_addr, dev);
395 if (!config) {
396 printk(KERN_WARNING "CLUSTERIP: cannot allocate config\n");
397 dev_put(dev);
Jan Engelhardte1931b72007-07-07 22:16:26 -0700398 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 }
400 dev_mc_add(config->dev,config->clustermac, ETH_ALEN, 0);
401 }
402 }
Patrick McHardyd3c3f422007-07-07 22:38:30 -0700403 cipinfo->config = config;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200405 if (nf_ct_l3proto_try_module_get(par->target->family) < 0) {
Yasuyuki Kozakai11078c32006-12-12 00:29:02 -0800406 printk(KERN_WARNING "can't load conntrack support for "
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200407 "proto=%u\n", par->target->family);
Jan Engelhardte1931b72007-07-07 22:16:26 -0700408 return false;
Yasuyuki Kozakai11078c32006-12-12 00:29:02 -0800409 }
410
Jan Engelhardte1931b72007-07-07 22:16:26 -0700411 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412}
413
414/* drop reference count of cluster config when rule is deleted */
Jan Engelhardta2df1642008-10-08 11:35:19 +0200415static void clusterip_tg_destroy(const struct xt_tgdtor_param *par)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416{
Jan Engelhardta2df1642008-10-08 11:35:19 +0200417 const struct ipt_clusterip_tgt_info *cipinfo = par->targinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
KOVACS Krisztian44513622005-09-16 16:59:46 -0700419 /* if no more entries are referencing the config, remove it
420 * from the list and destroy the proc entry */
421 clusterip_config_entry_put(cipinfo->config);
422
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 clusterip_config_put(cipinfo->config);
Yasuyuki Kozakai11078c32006-12-12 00:29:02 -0800424
Jan Engelhardta2df1642008-10-08 11:35:19 +0200425 nf_ct_l3proto_module_put(par->target->family);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426}
427
Patrick McHardyd3c3f422007-07-07 22:38:30 -0700428#ifdef CONFIG_COMPAT
429struct compat_ipt_clusterip_tgt_info
430{
431 u_int32_t flags;
432 u_int8_t clustermac[6];
433 u_int16_t num_total_nodes;
434 u_int16_t num_local_nodes;
435 u_int16_t local_nodes[CLUSTERIP_MAX_NODES];
436 u_int32_t hash_mode;
437 u_int32_t hash_initval;
438 compat_uptr_t config;
439};
440#endif /* CONFIG_COMPAT */
441
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800442static struct xt_target clusterip_tg_reg __read_mostly = {
Patrick McHardy1d5cd902006-03-20 18:01:14 -0800443 .name = "CLUSTERIP",
Jan Engelhardtee999d82008-10-08 11:35:01 +0200444 .family = NFPROTO_IPV4,
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800445 .target = clusterip_tg,
446 .checkentry = clusterip_tg_check,
447 .destroy = clusterip_tg_destroy,
Patrick McHardyd3c3f422007-07-07 22:38:30 -0700448 .targetsize = sizeof(struct ipt_clusterip_tgt_info),
449#ifdef CONFIG_COMPAT
450 .compatsize = sizeof(struct compat_ipt_clusterip_tgt_info),
451#endif /* CONFIG_COMPAT */
Patrick McHardy1d5cd902006-03-20 18:01:14 -0800452 .me = THIS_MODULE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453};
454
455
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900456/***********************************************************************
457 * ARP MANGLING CODE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 ***********************************************************************/
459
460/* hardcoded for 48bit ethernet and 32bit ipv4 addresses */
461struct arp_payload {
462 u_int8_t src_hw[ETH_ALEN];
Al Viro6a19d612006-09-28 14:22:24 -0700463 __be32 src_ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 u_int8_t dst_hw[ETH_ALEN];
Al Viro6a19d612006-09-28 14:22:24 -0700465 __be32 dst_ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466} __attribute__ ((packed));
467
Patrick McHardy0d537782007-07-07 22:39:38 -0700468#ifdef DEBUG
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900469static void arp_print(struct arp_payload *payload)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470{
471#define HBUFFERLEN 30
472 char hbuffer[HBUFFERLEN];
473 int j,k;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
475 for (k=0, j=0; k < HBUFFERLEN-3 && j < ETH_ALEN; j++) {
Harvey Harrison6a8341b2008-07-30 16:30:15 -0700476 hbuffer[k++] = hex_asc_hi(payload->src_hw[j]);
477 hbuffer[k++] = hex_asc_lo(payload->src_hw[j]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 hbuffer[k++]=':';
479 }
480 hbuffer[--k]='\0';
481
Harvey Harrisoncffee382008-10-31 00:53:08 -0700482 printk("src %pI4@%s, dst %pI4\n",
483 &payload->src_ip, hbuffer, &payload->dst_ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484}
485#endif
486
487static unsigned int
488arp_mangle(unsigned int hook,
Herbert Xu3db05fe2007-10-15 00:53:15 -0700489 struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 const struct net_device *in,
491 const struct net_device *out,
492 int (*okfn)(struct sk_buff *))
493{
Herbert Xu3db05fe2007-10-15 00:53:15 -0700494 struct arphdr *arp = arp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 struct arp_payload *payload;
496 struct clusterip_config *c;
497
498 /* we don't care about non-ethernet and non-ipv4 ARP */
Joe Perches3666ed12009-11-23 23:17:06 +0100499 if (arp->ar_hrd != htons(ARPHRD_ETHER) ||
500 arp->ar_pro != htons(ETH_P_IP) ||
501 arp->ar_pln != 4 || arp->ar_hln != ETH_ALEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 return NF_ACCEPT;
503
Harald Welte4095ebf2005-06-28 12:49:30 -0700504 /* we only want to mangle arp requests and replies */
Joe Perches3666ed12009-11-23 23:17:06 +0100505 if (arp->ar_op != htons(ARPOP_REPLY) &&
506 arp->ar_op != htons(ARPOP_REQUEST))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 return NF_ACCEPT;
508
509 payload = (void *)(arp+1);
510
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900511 /* if there is no clusterip configuration for the arp reply's
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 * source ip, we don't want to mangle it */
KOVACS Krisztian44513622005-09-16 16:59:46 -0700513 c = clusterip_config_find_get(payload->src_ip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 if (!c)
515 return NF_ACCEPT;
516
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900517 /* normally the linux kernel always replies to arp queries of
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 * addresses on different interfacs. However, in the CLUSTERIP case
519 * this wouldn't work, since we didn't subscribe the mcast group on
520 * other interfaces */
521 if (c->dev != out) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700522 pr_debug("CLUSTERIP: not mangling arp reply on different "
523 "interface: cip'%s'-skb'%s'\n",
524 c->dev->name, out->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 clusterip_config_put(c);
526 return NF_ACCEPT;
527 }
528
529 /* mangle reply hardware address */
530 memcpy(payload->src_hw, c->clustermac, arp->ar_hln);
531
Patrick McHardy0d537782007-07-07 22:39:38 -0700532#ifdef DEBUG
533 pr_debug(KERN_DEBUG "CLUSTERIP mangled arp reply: ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 arp_print(payload);
535#endif
536
537 clusterip_config_put(c);
538
539 return NF_ACCEPT;
540}
541
Patrick McHardy19994142007-12-05 01:23:00 -0800542static struct nf_hook_ops cip_arp_ops __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 .hook = arp_mangle,
Jan Engelhardtee999d82008-10-08 11:35:01 +0200544 .pf = NFPROTO_ARP,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 .hooknum = NF_ARP_OUT,
546 .priority = -1
547};
548
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900549/***********************************************************************
550 * PROC DIR HANDLING
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 ***********************************************************************/
552
553#ifdef CONFIG_PROC_FS
554
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700555struct clusterip_seq_position {
556 unsigned int pos; /* position */
557 unsigned int weight; /* number of bits set == size */
558 unsigned int bit; /* current bit */
559 unsigned long val; /* current value */
560};
561
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562static void *clusterip_seq_start(struct seq_file *s, loff_t *pos)
563{
Alexey Dobriyan47778142010-01-22 22:21:18 +0100564 struct clusterip_config *c = s->private;
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700565 unsigned int weight;
566 u_int32_t local_nodes;
567 struct clusterip_seq_position *idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700569 /* FIXME: possible race */
570 local_nodes = c->local_nodes;
571 weight = hweight32(local_nodes);
572 if (*pos >= weight)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 return NULL;
574
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700575 idx = kmalloc(sizeof(struct clusterip_seq_position), GFP_KERNEL);
576 if (!idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 return ERR_PTR(-ENOMEM);
578
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700579 idx->pos = *pos;
580 idx->weight = weight;
581 idx->bit = ffs(local_nodes);
582 idx->val = local_nodes;
583 clear_bit(idx->bit - 1, &idx->val);
584
585 return idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586}
587
588static void *clusterip_seq_next(struct seq_file *s, void *v, loff_t *pos)
589{
Jan Engelhardt3cf93c92008-04-14 09:56:05 +0200590 struct clusterip_seq_position *idx = v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700592 *pos = ++idx->pos;
593 if (*pos >= idx->weight) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 kfree(v);
595 return NULL;
596 }
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700597 idx->bit = ffs(idx->val);
598 clear_bit(idx->bit - 1, &idx->val);
599 return idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600}
601
602static void clusterip_seq_stop(struct seq_file *s, void *v)
603{
604 kfree(v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605}
606
607static int clusterip_seq_show(struct seq_file *s, void *v)
608{
Jan Engelhardt3cf93c92008-04-14 09:56:05 +0200609 struct clusterip_seq_position *idx = v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900611 if (idx->pos != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 seq_putc(s, ',');
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
KOVACS Krisztian136e92b2005-09-16 17:00:04 -0700614 seq_printf(s, "%u", idx->bit);
615
616 if (idx->pos == idx->weight - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 seq_putc(s, '\n');
618
619 return 0;
620}
621
Philippe De Muyter56b3d972007-07-10 23:07:31 -0700622static const struct seq_operations clusterip_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 .start = clusterip_seq_start,
624 .next = clusterip_seq_next,
625 .stop = clusterip_seq_stop,
626 .show = clusterip_seq_show,
627};
628
629static int clusterip_proc_open(struct inode *inode, struct file *file)
630{
631 int ret = seq_open(file, &clusterip_seq_ops);
632
633 if (!ret) {
634 struct seq_file *sf = file->private_data;
Alexey Dobriyan47778142010-01-22 22:21:18 +0100635 struct clusterip_config *c = PDE(inode)->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
Alexey Dobriyan47778142010-01-22 22:21:18 +0100637 sf->private = c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
639 clusterip_config_get(c);
640 }
641
642 return ret;
643}
644
645static int clusterip_proc_release(struct inode *inode, struct file *file)
646{
Alexey Dobriyan47778142010-01-22 22:21:18 +0100647 struct clusterip_config *c = PDE(inode)->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 int ret;
649
650 ret = seq_release(inode, file);
651
652 if (!ret)
653 clusterip_config_put(c);
654
655 return ret;
656}
657
658static ssize_t clusterip_proc_write(struct file *file, const char __user *input,
659 size_t size, loff_t *ofs)
660{
Alexey Dobriyan47778142010-01-22 22:21:18 +0100661 struct clusterip_config *c = PDE(file->f_path.dentry->d_inode)->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662#define PROC_WRITELEN 10
663 char buffer[PROC_WRITELEN+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 unsigned long nodenum;
665
666 if (copy_from_user(buffer, input, PROC_WRITELEN))
667 return -EFAULT;
668
669 if (*buffer == '+') {
670 nodenum = simple_strtoul(buffer+1, NULL, 10);
671 if (clusterip_add_node(c, nodenum))
672 return -ENOMEM;
673 } else if (*buffer == '-') {
674 nodenum = simple_strtoul(buffer+1, NULL,10);
675 if (clusterip_del_node(c, nodenum))
676 return -ENOENT;
677 } else
678 return -EIO;
679
680 return size;
681}
682
Arjan van de Ven9a321442007-02-12 00:55:35 -0800683static const struct file_operations clusterip_proc_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 .owner = THIS_MODULE,
685 .open = clusterip_proc_open,
686 .read = seq_read,
687 .write = clusterip_proc_write,
688 .llseek = seq_lseek,
689 .release = clusterip_proc_release,
690};
691
692#endif /* CONFIG_PROC_FS */
693
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800694static int __init clusterip_tg_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695{
696 int ret;
697
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800698 ret = xt_register_target(&clusterip_tg_reg);
Patrick McHardy32292a72006-04-06 14:11:30 -0700699 if (ret < 0)
700 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
Patrick McHardy32292a72006-04-06 14:11:30 -0700702 ret = nf_register_hook(&cip_arp_ops);
703 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 goto cleanup_target;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
706#ifdef CONFIG_PROC_FS
Eric W. Biederman457c4cb2007-09-12 12:01:34 +0200707 clusterip_procdir = proc_mkdir("ipt_CLUSTERIP", init_net.proc_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 if (!clusterip_procdir) {
709 printk(KERN_ERR "CLUSTERIP: Unable to proc dir entry\n");
710 ret = -ENOMEM;
711 goto cleanup_hook;
712 }
713#endif /* CONFIG_PROC_FS */
714
715 printk(KERN_NOTICE "ClusterIP Version %s loaded successfully\n",
716 CLUSTERIP_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 return 0;
718
Patrick McHardy76592582006-11-29 02:35:42 +0100719#ifdef CONFIG_PROC_FS
Patrick McHardy32292a72006-04-06 14:11:30 -0700720cleanup_hook:
721 nf_unregister_hook(&cip_arp_ops);
Patrick McHardy76592582006-11-29 02:35:42 +0100722#endif /* CONFIG_PROC_FS */
Patrick McHardy32292a72006-04-06 14:11:30 -0700723cleanup_target:
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800724 xt_unregister_target(&clusterip_tg_reg);
Patrick McHardy32292a72006-04-06 14:11:30 -0700725 return ret;
726}
727
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800728static void __exit clusterip_tg_exit(void)
Patrick McHardy32292a72006-04-06 14:11:30 -0700729{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 printk(KERN_NOTICE "ClusterIP Version %s unloading\n",
731 CLUSTERIP_VERSION);
732#ifdef CONFIG_PROC_FS
733 remove_proc_entry(clusterip_procdir->name, clusterip_procdir->parent);
734#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 nf_unregister_hook(&cip_arp_ops);
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800736 xt_unregister_target(&clusterip_tg_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737}
738
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800739module_init(clusterip_tg_init);
740module_exit(clusterip_tg_exit);