1 /* Cluster IP hashmark target
2 * (C) 2003-2004 by Harald Welte <laforge@netfilter.org>
3 * based on ideas of Fabio Olive Leite <olive@unixforge.org>
5 * Development of this code funded by SuSE Linux AG, http://www.suse.com/
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.
12 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
13 #include <linux/module.h>
14 #include <linux/proc_fs.h>
15 #include <linux/jhash.h>
16 #include <linux/bitops.h>
17 #include <linux/skbuff.h>
18 #include <linux/slab.h>
20 #include <linux/tcp.h>
21 #include <linux/udp.h>
22 #include <linux/icmp.h>
23 #include <linux/if_arp.h>
24 #include <linux/seq_file.h>
25 #include <linux/netfilter_arp.h>
26 #include <linux/netfilter/x_tables.h>
27 #include <linux/netfilter_ipv4/ip_tables.h>
28 #include <linux/netfilter_ipv4/ipt_CLUSTERIP.h>
29 #include <net/netfilter/nf_conntrack.h>
30 #include <net/net_namespace.h>
31 #include <net/checksum.h>
34 #define CLUSTERIP_VERSION "0.8"
36 MODULE_LICENSE("GPL");
37 MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
38 MODULE_DESCRIPTION("Xtables: CLUSTERIP target");
40 struct clusterip_config
{
41 struct list_head list
; /* list of all configs */
42 atomic_t refcount
; /* reference count */
43 atomic_t entries
; /* number of entries/rules
46 __be32 clusterip
; /* the IP address */
47 u_int8_t clustermac
[ETH_ALEN
]; /* the MAC address */
48 struct net_device
*dev
; /* device */
49 u_int16_t num_total_nodes
; /* total number of nodes */
50 unsigned long local_nodes
; /* node number array */
53 struct proc_dir_entry
*pde
; /* proc dir entry */
55 enum clusterip_hashmode hash_mode
; /* which hashing mode */
56 u_int32_t hash_initval
; /* hash initialization */
60 static LIST_HEAD(clusterip_configs
);
62 /* clusterip_lock protects the clusterip_configs list */
63 static DEFINE_SPINLOCK(clusterip_lock
);
66 static const struct file_operations clusterip_proc_fops
;
67 static struct proc_dir_entry
*clusterip_procdir
;
71 clusterip_config_get(struct clusterip_config
*c
)
73 atomic_inc(&c
->refcount
);
77 static void clusterip_config_rcu_free(struct rcu_head
*head
)
79 kfree(container_of(head
, struct clusterip_config
, rcu
));
83 clusterip_config_put(struct clusterip_config
*c
)
85 if (atomic_dec_and_test(&c
->refcount
))
86 call_rcu_bh(&c
->rcu
, clusterip_config_rcu_free
);
89 /* decrease the count of entries using/referencing this config. If last
90 * entry(rule) is removed, remove the config from lists, but don't free it
91 * yet, since proc-files could still be holding references */
93 clusterip_config_entry_put(struct clusterip_config
*c
)
96 if (atomic_dec_and_lock(&c
->entries
, &clusterip_lock
)) {
97 list_del_rcu(&c
->list
);
98 spin_unlock(&clusterip_lock
);
101 dev_mc_del(c
->dev
, c
->clustermac
);
104 /* In case anyone still accesses the file, the open/close
105 * functions are also incrementing the refcount on their own,
106 * so it's safe to remove the entry even if it's in use. */
107 #ifdef CONFIG_PROC_FS
108 remove_proc_entry(c
->pde
->name
, c
->pde
->parent
);
115 static struct clusterip_config
*
116 __clusterip_config_find(__be32 clusterip
)
118 struct clusterip_config
*c
;
120 list_for_each_entry_rcu(c
, &clusterip_configs
, list
) {
121 if (c
->clusterip
== clusterip
)
128 static inline struct clusterip_config
*
129 clusterip_config_find_get(__be32 clusterip
, int entry
)
131 struct clusterip_config
*c
;
134 c
= __clusterip_config_find(clusterip
);
136 if (unlikely(!atomic_inc_not_zero(&c
->refcount
)))
139 atomic_inc(&c
->entries
);
141 rcu_read_unlock_bh();
147 clusterip_config_init_nodelist(struct clusterip_config
*c
,
148 const struct ipt_clusterip_tgt_info
*i
)
152 for (n
= 0; n
< i
->num_local_nodes
; n
++)
153 set_bit(i
->local_nodes
[n
] - 1, &c
->local_nodes
);
156 static struct clusterip_config
*
157 clusterip_config_init(const struct ipt_clusterip_tgt_info
*i
, __be32 ip
,
158 struct net_device
*dev
)
160 struct clusterip_config
*c
;
162 c
= kzalloc(sizeof(*c
), GFP_ATOMIC
);
168 memcpy(&c
->clustermac
, &i
->clustermac
, ETH_ALEN
);
169 c
->num_total_nodes
= i
->num_total_nodes
;
170 clusterip_config_init_nodelist(c
, i
);
171 c
->hash_mode
= i
->hash_mode
;
172 c
->hash_initval
= i
->hash_initval
;
173 atomic_set(&c
->refcount
, 1);
174 atomic_set(&c
->entries
, 1);
176 #ifdef CONFIG_PROC_FS
180 /* create proc dir entry */
181 sprintf(buffer
, "%pI4", &ip
);
182 c
->pde
= proc_create_data(buffer
, S_IWUSR
|S_IRUSR
,
184 &clusterip_proc_fops
, c
);
192 spin_lock_bh(&clusterip_lock
);
193 list_add_rcu(&c
->list
, &clusterip_configs
);
194 spin_unlock_bh(&clusterip_lock
);
199 #ifdef CONFIG_PROC_FS
201 clusterip_add_node(struct clusterip_config
*c
, u_int16_t nodenum
)
205 nodenum
> c
->num_total_nodes
)
208 /* check if we already have this number in our bitfield */
209 if (test_and_set_bit(nodenum
- 1, &c
->local_nodes
))
216 clusterip_del_node(struct clusterip_config
*c
, u_int16_t nodenum
)
219 nodenum
> c
->num_total_nodes
)
222 if (test_and_clear_bit(nodenum
- 1, &c
->local_nodes
))
229 static inline u_int32_t
230 clusterip_hashfn(const struct sk_buff
*skb
,
231 const struct clusterip_config
*config
)
233 const struct iphdr
*iph
= ip_hdr(skb
);
234 unsigned long hashval
;
235 u_int16_t sport
= 0, dport
= 0;
238 poff
= proto_ports_offset(iph
->protocol
);
240 const u_int16_t
*ports
;
243 ports
= skb_header_pointer(skb
, iph
->ihl
* 4 + poff
, 4, _ports
);
250 pr_info("unknown protocol %u\n", iph
->protocol
);
253 switch (config
->hash_mode
) {
254 case CLUSTERIP_HASHMODE_SIP
:
255 hashval
= jhash_1word(ntohl(iph
->saddr
),
256 config
->hash_initval
);
258 case CLUSTERIP_HASHMODE_SIP_SPT
:
259 hashval
= jhash_2words(ntohl(iph
->saddr
), sport
,
260 config
->hash_initval
);
262 case CLUSTERIP_HASHMODE_SIP_SPT_DPT
:
263 hashval
= jhash_3words(ntohl(iph
->saddr
), sport
, dport
,
264 config
->hash_initval
);
267 /* to make gcc happy */
269 /* This cannot happen, unless the check function wasn't called
270 * at rule load time */
271 pr_info("unknown mode %u\n", config
->hash_mode
);
276 /* node numbers are 1..n, not 0..n */
277 return (((u64
)hashval
* config
->num_total_nodes
) >> 32) + 1;
281 clusterip_responsible(const struct clusterip_config
*config
, u_int32_t hash
)
283 return test_bit(hash
- 1, &config
->local_nodes
);
286 /***********************************************************************
288 ***********************************************************************/
291 clusterip_tg(struct sk_buff
*skb
, const struct xt_action_param
*par
)
293 const struct ipt_clusterip_tgt_info
*cipinfo
= par
->targinfo
;
295 enum ip_conntrack_info ctinfo
;
298 /* don't need to clusterip_config_get() here, since refcount
299 * is only decremented by destroy() - and ip_tables guarantees
300 * that the ->target() function isn't called after ->destroy() */
302 ct
= nf_ct_get(skb
, &ctinfo
);
306 /* special case: ICMP error handling. conntrack distinguishes between
307 * error messages (RELATED) and information requests (see below) */
308 if (ip_hdr(skb
)->protocol
== IPPROTO_ICMP
&&
309 (ctinfo
== IP_CT_RELATED
||
310 ctinfo
== IP_CT_RELATED_REPLY
))
313 /* ip_conntrack_icmp guarantees us that we only have ICMP_ECHO,
314 * TIMESTAMP, INFO_REQUEST or ADDRESS type icmp packets from here
315 * on, which all have an ID field [relevant for hashing]. */
317 hash
= clusterip_hashfn(skb
, cipinfo
->config
);
324 case IP_CT_RELATED_REPLY
:
325 /* FIXME: we don't handle expectations at the moment.
326 * They can arrive on a different node than
327 * the master connection (e.g. FTP passive mode) */
328 case IP_CT_ESTABLISHED
:
329 case IP_CT_ESTABLISHED_REPLY
:
331 default: /* Prevent gcc warnings */
336 nf_ct_dump_tuple_ip(&ct
->tuplehash
[IP_CT_DIR_ORIGINAL
].tuple
);
338 pr_debug("hash=%u ct_hash=%u ", hash
, ct
->mark
);
339 if (!clusterip_responsible(cipinfo
->config
, hash
)) {
340 pr_debug("not responsible\n");
343 pr_debug("responsible\n");
345 /* despite being received via linklayer multicast, this is
346 * actually a unicast IP packet. TCP doesn't like PACKET_MULTICAST */
347 skb
->pkt_type
= PACKET_HOST
;
352 static int clusterip_tg_check(const struct xt_tgchk_param
*par
)
354 struct ipt_clusterip_tgt_info
*cipinfo
= par
->targinfo
;
355 const struct ipt_entry
*e
= par
->entryinfo
;
356 struct clusterip_config
*config
;
359 if (cipinfo
->hash_mode
!= CLUSTERIP_HASHMODE_SIP
&&
360 cipinfo
->hash_mode
!= CLUSTERIP_HASHMODE_SIP_SPT
&&
361 cipinfo
->hash_mode
!= CLUSTERIP_HASHMODE_SIP_SPT_DPT
) {
362 pr_info("unknown mode %u\n", cipinfo
->hash_mode
);
366 if (e
->ip
.dmsk
.s_addr
!= htonl(0xffffffff) ||
367 e
->ip
.dst
.s_addr
== 0) {
368 pr_info("Please specify destination IP\n");
372 /* FIXME: further sanity checks */
374 config
= clusterip_config_find_get(e
->ip
.dst
.s_addr
, 1);
376 if (!(cipinfo
->flags
& CLUSTERIP_FLAG_NEW
)) {
377 pr_info("no config found for %pI4, need 'new'\n",
381 struct net_device
*dev
;
383 if (e
->ip
.iniface
[0] == '\0') {
384 pr_info("Please specify an interface name\n");
388 dev
= dev_get_by_name(&init_net
, e
->ip
.iniface
);
390 pr_info("no such interface %s\n",
395 config
= clusterip_config_init(cipinfo
,
396 e
->ip
.dst
.s_addr
, dev
);
398 pr_info("cannot allocate config\n");
402 dev_mc_add(config
->dev
, config
->clustermac
);
405 cipinfo
->config
= config
;
407 ret
= nf_ct_l3proto_try_module_get(par
->family
);
409 pr_info("cannot load conntrack support for proto=%u\n",
414 /* drop reference count of cluster config when rule is deleted */
415 static void clusterip_tg_destroy(const struct xt_tgdtor_param
*par
)
417 const struct ipt_clusterip_tgt_info
*cipinfo
= par
->targinfo
;
419 /* 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
);
423 clusterip_config_put(cipinfo
->config
);
425 nf_ct_l3proto_module_put(par
->family
);
429 struct compat_ipt_clusterip_tgt_info
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
];
437 u_int32_t hash_initval
;
438 compat_uptr_t config
;
440 #endif /* CONFIG_COMPAT */
442 static struct xt_target clusterip_tg_reg __read_mostly
= {
444 .family
= NFPROTO_IPV4
,
445 .target
= clusterip_tg
,
446 .checkentry
= clusterip_tg_check
,
447 .destroy
= clusterip_tg_destroy
,
448 .targetsize
= sizeof(struct ipt_clusterip_tgt_info
),
450 .compatsize
= sizeof(struct compat_ipt_clusterip_tgt_info
),
451 #endif /* CONFIG_COMPAT */
456 /***********************************************************************
458 ***********************************************************************/
460 /* hardcoded for 48bit ethernet and 32bit ipv4 addresses */
462 u_int8_t src_hw
[ETH_ALEN
];
464 u_int8_t dst_hw
[ETH_ALEN
];
469 static void arp_print(struct arp_payload
*payload
)
471 #define HBUFFERLEN 30
472 char hbuffer
[HBUFFERLEN
];
475 for (k
=0, j
=0; k
< HBUFFERLEN
-3 && j
< ETH_ALEN
; j
++) {
476 hbuffer
[k
++] = hex_asc_hi(payload
->src_hw
[j
]);
477 hbuffer
[k
++] = hex_asc_lo(payload
->src_hw
[j
]);
482 pr_debug("src %pI4@%s, dst %pI4\n",
483 &payload
->src_ip
, hbuffer
, &payload
->dst_ip
);
488 arp_mangle(unsigned int hook
,
490 const struct net_device
*in
,
491 const struct net_device
*out
,
492 int (*okfn
)(struct sk_buff
*))
494 struct arphdr
*arp
= arp_hdr(skb
);
495 struct arp_payload
*payload
;
496 struct clusterip_config
*c
;
498 /* we don't care about non-ethernet and non-ipv4 ARP */
499 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
)
504 /* we only want to mangle arp requests and replies */
505 if (arp
->ar_op
!= htons(ARPOP_REPLY
) &&
506 arp
->ar_op
!= htons(ARPOP_REQUEST
))
509 payload
= (void *)(arp
+1);
511 /* if there is no clusterip configuration for the arp reply's
512 * source ip, we don't want to mangle it */
513 c
= clusterip_config_find_get(payload
->src_ip
, 0);
517 /* normally the linux kernel always replies to arp queries of
518 * 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 */
522 pr_debug("not mangling arp reply on different "
523 "interface: cip'%s'-skb'%s'\n",
524 c
->dev
->name
, out
->name
);
525 clusterip_config_put(c
);
529 /* mangle reply hardware address */
530 memcpy(payload
->src_hw
, c
->clustermac
, arp
->ar_hln
);
533 pr_debug("mangled arp reply: ");
537 clusterip_config_put(c
);
542 static struct nf_hook_ops cip_arp_ops __read_mostly
= {
545 .hooknum
= NF_ARP_OUT
,
549 /***********************************************************************
551 ***********************************************************************/
553 #ifdef CONFIG_PROC_FS
555 struct 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 */
562 static void *clusterip_seq_start(struct seq_file
*s
, loff_t
*pos
)
564 struct clusterip_config
*c
= s
->private;
566 u_int32_t local_nodes
;
567 struct clusterip_seq_position
*idx
;
569 /* FIXME: possible race */
570 local_nodes
= c
->local_nodes
;
571 weight
= hweight32(local_nodes
);
575 idx
= kmalloc(sizeof(struct clusterip_seq_position
), GFP_KERNEL
);
577 return ERR_PTR(-ENOMEM
);
580 idx
->weight
= weight
;
581 idx
->bit
= ffs(local_nodes
);
582 idx
->val
= local_nodes
;
583 clear_bit(idx
->bit
- 1, &idx
->val
);
588 static void *clusterip_seq_next(struct seq_file
*s
, void *v
, loff_t
*pos
)
590 struct clusterip_seq_position
*idx
= v
;
593 if (*pos
>= idx
->weight
) {
597 idx
->bit
= ffs(idx
->val
);
598 clear_bit(idx
->bit
- 1, &idx
->val
);
602 static void clusterip_seq_stop(struct seq_file
*s
, void *v
)
608 static int clusterip_seq_show(struct seq_file
*s
, void *v
)
610 struct clusterip_seq_position
*idx
= v
;
615 seq_printf(s
, "%u", idx
->bit
);
617 if (idx
->pos
== idx
->weight
- 1)
623 static const struct seq_operations clusterip_seq_ops
= {
624 .start
= clusterip_seq_start
,
625 .next
= clusterip_seq_next
,
626 .stop
= clusterip_seq_stop
,
627 .show
= clusterip_seq_show
,
630 static int clusterip_proc_open(struct inode
*inode
, struct file
*file
)
632 int ret
= seq_open(file
, &clusterip_seq_ops
);
635 struct seq_file
*sf
= file
->private_data
;
636 struct clusterip_config
*c
= PDE(inode
)->data
;
640 clusterip_config_get(c
);
646 static int clusterip_proc_release(struct inode
*inode
, struct file
*file
)
648 struct clusterip_config
*c
= PDE(inode
)->data
;
651 ret
= seq_release(inode
, file
);
654 clusterip_config_put(c
);
659 static ssize_t
clusterip_proc_write(struct file
*file
, const char __user
*input
,
660 size_t size
, loff_t
*ofs
)
662 struct clusterip_config
*c
= PDE(file
->f_path
.dentry
->d_inode
)->data
;
663 #define PROC_WRITELEN 10
664 char buffer
[PROC_WRITELEN
+1];
665 unsigned long nodenum
;
667 if (size
> PROC_WRITELEN
)
669 if (copy_from_user(buffer
, input
, size
))
673 if (*buffer
== '+') {
674 nodenum
= simple_strtoul(buffer
+1, NULL
, 10);
675 if (clusterip_add_node(c
, nodenum
))
677 } else if (*buffer
== '-') {
678 nodenum
= simple_strtoul(buffer
+1, NULL
,10);
679 if (clusterip_del_node(c
, nodenum
))
687 static const struct file_operations clusterip_proc_fops
= {
688 .owner
= THIS_MODULE
,
689 .open
= clusterip_proc_open
,
691 .write
= clusterip_proc_write
,
693 .release
= clusterip_proc_release
,
696 #endif /* CONFIG_PROC_FS */
698 static int __init
clusterip_tg_init(void)
702 ret
= xt_register_target(&clusterip_tg_reg
);
706 ret
= nf_register_hook(&cip_arp_ops
);
710 #ifdef CONFIG_PROC_FS
711 clusterip_procdir
= proc_mkdir("ipt_CLUSTERIP", init_net
.proc_net
);
712 if (!clusterip_procdir
) {
713 pr_err("Unable to proc dir entry\n");
717 #endif /* CONFIG_PROC_FS */
719 pr_info("ClusterIP Version %s loaded successfully\n",
723 #ifdef CONFIG_PROC_FS
725 nf_unregister_hook(&cip_arp_ops
);
726 #endif /* CONFIG_PROC_FS */
728 xt_unregister_target(&clusterip_tg_reg
);
732 static void __exit
clusterip_tg_exit(void)
734 pr_info("ClusterIP Version %s unloading\n", CLUSTERIP_VERSION
);
735 #ifdef CONFIG_PROC_FS
736 remove_proc_entry(clusterip_procdir
->name
, clusterip_procdir
->parent
);
738 nf_unregister_hook(&cip_arp_ops
);
739 xt_unregister_target(&clusterip_tg_reg
);
741 /* Wait for completion of call_rcu_bh()'s (clusterip_config_rcu_free) */
745 module_init(clusterip_tg_init
);
746 module_exit(clusterip_tg_exit
);