]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - net/ipv4/netfilter/ipt_CLUSTERIP.c
netfilter: xtables: fix reentrancy
[mirror_ubuntu-bionic-kernel.git] / net / ipv4 / netfilter / ipt_CLUSTERIP.c
CommitLineData
e905a9ed 1/* Cluster IP hashmark target
1da177e4
LT
2 * (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 */
ff67e4e4 12#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
1da177e4 13#include <linux/module.h>
1da177e4
LT
14#include <linux/proc_fs.h>
15#include <linux/jhash.h>
136e92bb 16#include <linux/bitops.h>
1da177e4 17#include <linux/skbuff.h>
5a0e3ad6 18#include <linux/slab.h>
1da177e4
LT
19#include <linux/ip.h>
20#include <linux/tcp.h>
21#include <linux/udp.h>
22#include <linux/icmp.h>
23#include <linux/if_arp.h>
1da177e4 24#include <linux/seq_file.h>
1da177e4 25#include <linux/netfilter_arp.h>
6709dbbb 26#include <linux/netfilter/x_tables.h>
1da177e4
LT
27#include <linux/netfilter_ipv4/ip_tables.h>
28#include <linux/netfilter_ipv4/ipt_CLUSTERIP.h>
587aa641 29#include <net/netfilter/nf_conntrack.h>
457c4cbc 30#include <net/net_namespace.h>
587aa641 31#include <net/checksum.h>
3d04ebb6 32#include <net/ip.h>
1da177e4 33
136e92bb 34#define CLUSTERIP_VERSION "0.8"
1da177e4 35
1da177e4
LT
36MODULE_LICENSE("GPL");
37MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
2ae15b64 38MODULE_DESCRIPTION("Xtables: CLUSTERIP target");
1da177e4
LT
39
40struct clusterip_config {
41 struct list_head list; /* list of all configs */
42 atomic_t refcount; /* reference count */
44513624
KK
43 atomic_t entries; /* number of entries/rules
44 * referencing us */
1da177e4 45
6a19d614 46 __be32 clusterip; /* the IP address */
1da177e4
LT
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 */
136e92bb 50 unsigned long local_nodes; /* node number array */
1da177e4
LT
51
52#ifdef CONFIG_PROC_FS
53 struct proc_dir_entry *pde; /* proc dir entry */
54#endif
55 enum clusterip_hashmode hash_mode; /* which hashing mode */
56 u_int32_t hash_initval; /* hash initialization */
d73f33b1 57 struct rcu_head rcu;
1da177e4
LT
58};
59
60static LIST_HEAD(clusterip_configs);
61
136e92bb 62/* clusterip_lock protects the clusterip_configs list */
d73f33b1 63static DEFINE_SPINLOCK(clusterip_lock);
1da177e4
LT
64
65#ifdef CONFIG_PROC_FS
9a32144e 66static const struct file_operations clusterip_proc_fops;
1da177e4
LT
67static struct proc_dir_entry *clusterip_procdir;
68#endif
69
70static inline void
44513624
KK
71clusterip_config_get(struct clusterip_config *c)
72{
1da177e4
LT
73 atomic_inc(&c->refcount);
74}
75
d73f33b1
ED
76
77static void clusterip_config_rcu_free(struct rcu_head *head)
78{
79 kfree(container_of(head, struct clusterip_config, rcu));
80}
81
1da177e4 82static inline void
44513624
KK
83clusterip_config_put(struct clusterip_config *c)
84{
85 if (atomic_dec_and_test(&c->refcount))
d73f33b1 86 call_rcu_bh(&c->rcu, clusterip_config_rcu_free);
44513624
KK
87}
88
44513624
KK
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 */
92static inline void
93clusterip_config_entry_put(struct clusterip_config *c)
94{
d73f33b1
ED
95 local_bh_disable();
96 if (atomic_dec_and_lock(&c->entries, &clusterip_lock)) {
97 list_del_rcu(&c->list);
98 spin_unlock(&clusterip_lock);
99 local_bh_enable();
44513624 100
22bedad3 101 dev_mc_del(c->dev, c->clustermac);
1da177e4 102 dev_put(c->dev);
44513624
KK
103
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);
109#endif
4dee9597 110 return;
1da177e4 111 }
d73f33b1 112 local_bh_enable();
1da177e4
LT
113}
114
1da177e4 115static struct clusterip_config *
6a19d614 116__clusterip_config_find(__be32 clusterip)
1da177e4 117{
4c610979 118 struct clusterip_config *c;
1da177e4 119
d73f33b1 120 list_for_each_entry_rcu(c, &clusterip_configs, list) {
7c4e36bc 121 if (c->clusterip == clusterip)
1da177e4 122 return c;
1da177e4
LT
123 }
124
125 return NULL;
126}
127
128static inline struct clusterip_config *
6a19d614 129clusterip_config_find_get(__be32 clusterip, int entry)
1da177e4
LT
130{
131 struct clusterip_config *c;
132
d73f33b1 133 rcu_read_lock_bh();
1da177e4 134 c = __clusterip_config_find(clusterip);
d73f33b1
ED
135 if (c) {
136 if (unlikely(!atomic_inc_not_zero(&c->refcount)))
137 c = NULL;
138 else if (entry)
139 atomic_inc(&c->entries);
1da177e4 140 }
d73f33b1 141 rcu_read_unlock_bh();
1da177e4
LT
142
143 return c;
144}
145
136e92bb
KK
146static void
147clusterip_config_init_nodelist(struct clusterip_config *c,
148 const struct ipt_clusterip_tgt_info *i)
149{
150 int n;
151
7c4e36bc 152 for (n = 0; n < i->num_local_nodes; n++)
136e92bb 153 set_bit(i->local_nodes[n] - 1, &c->local_nodes);
136e92bb
KK
154}
155
1da177e4 156static struct clusterip_config *
3cf93c96 157clusterip_config_init(const struct ipt_clusterip_tgt_info *i, __be32 ip,
1da177e4
LT
158 struct net_device *dev)
159{
160 struct clusterip_config *c;
1da177e4 161
0da974f4 162 c = kzalloc(sizeof(*c), GFP_ATOMIC);
1da177e4
LT
163 if (!c)
164 return NULL;
165
1da177e4
LT
166 c->dev = dev;
167 c->clusterip = ip;
168 memcpy(&c->clustermac, &i->clustermac, ETH_ALEN);
169 c->num_total_nodes = i->num_total_nodes;
136e92bb 170 clusterip_config_init_nodelist(c, i);
1da177e4
LT
171 c->hash_mode = i->hash_mode;
172 c->hash_initval = i->hash_initval;
173 atomic_set(&c->refcount, 1);
44513624 174 atomic_set(&c->entries, 1);
1da177e4
LT
175
176#ifdef CONFIG_PROC_FS
76592584
PM
177 {
178 char buffer[16];
179
180 /* create proc dir entry */
cffee385 181 sprintf(buffer, "%pI4", &ip);
6e79d85d
DL
182 c->pde = proc_create_data(buffer, S_IWUSR|S_IRUSR,
183 clusterip_procdir,
184 &clusterip_proc_fops, c);
76592584
PM
185 if (!c->pde) {
186 kfree(c);
187 return NULL;
188 }
1da177e4 189 }
1da177e4
LT
190#endif
191
d73f33b1
ED
192 spin_lock_bh(&clusterip_lock);
193 list_add_rcu(&c->list, &clusterip_configs);
194 spin_unlock_bh(&clusterip_lock);
1da177e4
LT
195
196 return c;
197}
198
76592584 199#ifdef CONFIG_PROC_FS
1da177e4
LT
200static int
201clusterip_add_node(struct clusterip_config *c, u_int16_t nodenum)
202{
1da177e4 203
136e92bb
KK
204 if (nodenum == 0 ||
205 nodenum > c->num_total_nodes)
1da177e4 206 return 1;
1da177e4 207
136e92bb
KK
208 /* check if we already have this number in our bitfield */
209 if (test_and_set_bit(nodenum - 1, &c->local_nodes))
210 return 1;
1da177e4 211
1da177e4
LT
212 return 0;
213}
214
e1931b78 215static bool
1da177e4
LT
216clusterip_del_node(struct clusterip_config *c, u_int16_t nodenum)
217{
136e92bb
KK
218 if (nodenum == 0 ||
219 nodenum > c->num_total_nodes)
e1931b78 220 return true;
e905a9ed 221
136e92bb 222 if (test_and_clear_bit(nodenum - 1, &c->local_nodes))
e1931b78 223 return false;
1da177e4 224
e1931b78 225 return true;
1da177e4 226}
76592584 227#endif
1da177e4
LT
228
229static inline u_int32_t
a47362a2
JE
230clusterip_hashfn(const struct sk_buff *skb,
231 const struct clusterip_config *config)
1da177e4 232{
a47362a2 233 const struct iphdr *iph = ip_hdr(skb);
1da177e4 234 unsigned long hashval;
3d04ebb6
CG
235 u_int16_t sport = 0, dport = 0;
236 int poff;
237
238 poff = proto_ports_offset(iph->protocol);
239 if (poff >= 0) {
240 const u_int16_t *ports;
241 u16 _ports[2];
242
243 ports = skb_header_pointer(skb, iph->ihl * 4 + poff, 4, _ports);
244 if (ports) {
245 sport = ports[0];
246 dport = ports[1];
247 }
248 } else {
7c4e36bc 249 if (net_ratelimit())
ff67e4e4 250 pr_info("unknown protocol %u\n", iph->protocol);
1da177e4
LT
251 }
252
253 switch (config->hash_mode) {
254 case CLUSTERIP_HASHMODE_SIP:
255 hashval = jhash_1word(ntohl(iph->saddr),
256 config->hash_initval);
257 break;
258 case CLUSTERIP_HASHMODE_SIP_SPT:
e905a9ed 259 hashval = jhash_2words(ntohl(iph->saddr), sport,
1da177e4
LT
260 config->hash_initval);
261 break;
262 case CLUSTERIP_HASHMODE_SIP_SPT_DPT:
263 hashval = jhash_3words(ntohl(iph->saddr), sport, dport,
264 config->hash_initval);
265 break;
266 default:
267 /* to make gcc happy */
268 hashval = 0;
269 /* This cannot happen, unless the check function wasn't called
270 * at rule load time */
ff67e4e4 271 pr_info("unknown mode %u\n", config->hash_mode);
1da177e4
LT
272 BUG();
273 break;
274 }
275
276 /* node numbers are 1..n, not 0..n */
34498825 277 return (((u64)hashval * config->num_total_nodes) >> 32) + 1;
1da177e4
LT
278}
279
280static inline int
a47362a2 281clusterip_responsible(const struct clusterip_config *config, u_int32_t hash)
1da177e4 282{
136e92bb 283 return test_bit(hash - 1, &config->local_nodes);
1da177e4
LT
284}
285
e905a9ed
YH
286/***********************************************************************
287 * IPTABLES TARGET
1da177e4
LT
288 ***********************************************************************/
289
290static unsigned int
4b560b44 291clusterip_tg(struct sk_buff *skb, const struct xt_action_param *par)
1da177e4 292{
7eb35586 293 const struct ipt_clusterip_tgt_info *cipinfo = par->targinfo;
587aa641 294 struct nf_conn *ct;
1da177e4 295 enum ip_conntrack_info ctinfo;
587aa641 296 u_int32_t hash;
1da177e4
LT
297
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() */
301
3db05fea 302 ct = nf_ct_get(skb, &ctinfo);
94d117a1 303 if (ct == NULL)
1da177e4 304 return NF_DROP;
1da177e4
LT
305
306 /* special case: ICMP error handling. conntrack distinguishes between
307 * error messages (RELATED) and information requests (see below) */
3666ed1c
JP
308 if (ip_hdr(skb)->protocol == IPPROTO_ICMP &&
309 (ctinfo == IP_CT_RELATED ||
310 ctinfo == IP_CT_RELATED + IP_CT_IS_REPLY))
6709dbbb 311 return XT_CONTINUE;
1da177e4 312
e905a9ed 313 /* ip_conntrack_icmp guarantees us that we only have ICMP_ECHO,
1da177e4
LT
314 * TIMESTAMP, INFO_REQUEST or ADDRESS type icmp packets from here
315 * on, which all have an ID field [relevant for hashing]. */
316
3db05fea 317 hash = clusterip_hashfn(skb, cipinfo->config);
1da177e4
LT
318
319 switch (ctinfo) {
320 case IP_CT_NEW:
587aa641 321 ct->mark = hash;
1da177e4
LT
322 break;
323 case IP_CT_RELATED:
324 case IP_CT_RELATED+IP_CT_IS_REPLY:
325 /* FIXME: we don't handle expectations at the
326 * moment. 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+IP_CT_IS_REPLY:
330 break;
331 default:
332 break;
333 }
334
0d53778e 335#ifdef DEBUG
3c9fba65 336 nf_ct_dump_tuple_ip(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple);
1da177e4 337#endif
0d53778e 338 pr_debug("hash=%u ct_hash=%u ", hash, ct->mark);
1da177e4 339 if (!clusterip_responsible(cipinfo->config, hash)) {
0d53778e 340 pr_debug("not responsible\n");
1da177e4
LT
341 return NF_DROP;
342 }
0d53778e 343 pr_debug("responsible\n");
1da177e4
LT
344
345 /* despite being received via linklayer multicast, this is
346 * actually a unicast IP packet. TCP doesn't like PACKET_MULTICAST */
3db05fea 347 skb->pkt_type = PACKET_HOST;
1da177e4 348
6709dbbb 349 return XT_CONTINUE;
1da177e4
LT
350}
351
135367b8 352static int clusterip_tg_check(const struct xt_tgchk_param *par)
1da177e4 353{
af5d6dc2
JE
354 struct ipt_clusterip_tgt_info *cipinfo = par->targinfo;
355 const struct ipt_entry *e = par->entryinfo;
1da177e4 356 struct clusterip_config *config;
4a5a5c73 357 int ret;
1da177e4 358
1da177e4
LT
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) {
ff67e4e4 362 pr_info("unknown mode %u\n", cipinfo->hash_mode);
d6b00a53 363 return -EINVAL;
1da177e4
LT
364
365 }
3666ed1c
JP
366 if (e->ip.dmsk.s_addr != htonl(0xffffffff) ||
367 e->ip.dst.s_addr == 0) {
ff67e4e4 368 pr_info("Please specify destination IP\n");
d6b00a53 369 return -EINVAL;
1da177e4
LT
370 }
371
372 /* FIXME: further sanity checks */
373
44513624 374 config = clusterip_config_find_get(e->ip.dst.s_addr, 1);
d3c3f424 375 if (!config) {
1da177e4 376 if (!(cipinfo->flags & CLUSTERIP_FLAG_NEW)) {
ff67e4e4
JE
377 pr_info("no config found for %pI4, need 'new'\n",
378 &e->ip.dst.s_addr);
d6b00a53 379 return -EINVAL;
1da177e4
LT
380 } else {
381 struct net_device *dev;
382
383 if (e->ip.iniface[0] == '\0') {
ff67e4e4 384 pr_info("Please specify an interface name\n");
d6b00a53 385 return -EINVAL;
1da177e4
LT
386 }
387
881d966b 388 dev = dev_get_by_name(&init_net, e->ip.iniface);
1da177e4 389 if (!dev) {
ff67e4e4
JE
390 pr_info("no such interface %s\n",
391 e->ip.iniface);
4a5a5c73 392 return -ENOENT;
1da177e4
LT
393 }
394
e905a9ed 395 config = clusterip_config_init(cipinfo,
1da177e4
LT
396 e->ip.dst.s_addr, dev);
397 if (!config) {
ff67e4e4 398 pr_info("cannot allocate config\n");
1da177e4 399 dev_put(dev);
4a5a5c73 400 return -ENOMEM;
1da177e4 401 }
22bedad3 402 dev_mc_add(config->dev, config->clustermac);
1da177e4
LT
403 }
404 }
d3c3f424 405 cipinfo->config = config;
1da177e4 406
4a5a5c73 407 ret = nf_ct_l3proto_try_module_get(par->family);
f95c74e3 408 if (ret < 0)
ff67e4e4
JE
409 pr_info("cannot load conntrack support for proto=%u\n",
410 par->family);
f95c74e3 411 return ret;
1da177e4
LT
412}
413
414/* drop reference count of cluster config when rule is deleted */
a2df1648 415static void clusterip_tg_destroy(const struct xt_tgdtor_param *par)
1da177e4 416{
a2df1648 417 const struct ipt_clusterip_tgt_info *cipinfo = par->targinfo;
1da177e4 418
44513624
KK
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);
422
1da177e4 423 clusterip_config_put(cipinfo->config);
11078c37 424
0d345455 425 nf_ct_l3proto_module_put(par->family);
1da177e4
LT
426}
427
d3c3f424
PM
428#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
d3c5ee6d 442static struct xt_target clusterip_tg_reg __read_mostly = {
1d5cd909 443 .name = "CLUSTERIP",
ee999d8b 444 .family = NFPROTO_IPV4,
d3c5ee6d
JE
445 .target = clusterip_tg,
446 .checkentry = clusterip_tg_check,
447 .destroy = clusterip_tg_destroy,
d3c3f424
PM
448 .targetsize = sizeof(struct ipt_clusterip_tgt_info),
449#ifdef CONFIG_COMPAT
450 .compatsize = sizeof(struct compat_ipt_clusterip_tgt_info),
451#endif /* CONFIG_COMPAT */
1d5cd909 452 .me = THIS_MODULE
1da177e4
LT
453};
454
455
e905a9ed
YH
456/***********************************************************************
457 * ARP MANGLING CODE
1da177e4
LT
458 ***********************************************************************/
459
460/* hardcoded for 48bit ethernet and 32bit ipv4 addresses */
461struct arp_payload {
462 u_int8_t src_hw[ETH_ALEN];
6a19d614 463 __be32 src_ip;
1da177e4 464 u_int8_t dst_hw[ETH_ALEN];
6a19d614 465 __be32 dst_ip;
3f30fc15 466} __packed;
1da177e4 467
0d53778e 468#ifdef DEBUG
e905a9ed 469static void arp_print(struct arp_payload *payload)
1da177e4
LT
470{
471#define HBUFFERLEN 30
472 char hbuffer[HBUFFERLEN];
473 int j,k;
1da177e4
LT
474
475 for (k=0, j=0; k < HBUFFERLEN-3 && j < ETH_ALEN; j++) {
6a8341b6
HH
476 hbuffer[k++] = hex_asc_hi(payload->src_hw[j]);
477 hbuffer[k++] = hex_asc_lo(payload->src_hw[j]);
1da177e4
LT
478 hbuffer[k++]=':';
479 }
480 hbuffer[--k]='\0';
481
ff67e4e4
JE
482 pr_debug("src %pI4@%s, dst %pI4\n",
483 &payload->src_ip, hbuffer, &payload->dst_ip);
1da177e4
LT
484}
485#endif
486
487static unsigned int
488arp_mangle(unsigned int hook,
3db05fea 489 struct sk_buff *skb,
1da177e4
LT
490 const struct net_device *in,
491 const struct net_device *out,
492 int (*okfn)(struct sk_buff *))
493{
3db05fea 494 struct arphdr *arp = arp_hdr(skb);
1da177e4
LT
495 struct arp_payload *payload;
496 struct clusterip_config *c;
497
498 /* we don't care about non-ethernet and non-ipv4 ARP */
3666ed1c
JP
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)
1da177e4
LT
502 return NF_ACCEPT;
503
4095ebf1 504 /* we only want to mangle arp requests and replies */
3666ed1c
JP
505 if (arp->ar_op != htons(ARPOP_REPLY) &&
506 arp->ar_op != htons(ARPOP_REQUEST))
1da177e4
LT
507 return NF_ACCEPT;
508
509 payload = (void *)(arp+1);
510
e905a9ed 511 /* if there is no clusterip configuration for the arp reply's
1da177e4 512 * source ip, we don't want to mangle it */
44513624 513 c = clusterip_config_find_get(payload->src_ip, 0);
1da177e4
LT
514 if (!c)
515 return NF_ACCEPT;
516
e905a9ed 517 /* normally the linux kernel always replies to arp queries of
1da177e4
LT
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 */
521 if (c->dev != out) {
ff67e4e4 522 pr_debug("not mangling arp reply on different "
0d53778e
PM
523 "interface: cip'%s'-skb'%s'\n",
524 c->dev->name, out->name);
1da177e4
LT
525 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
0d53778e 532#ifdef DEBUG
ff67e4e4 533 pr_debug("mangled arp reply: ");
1da177e4
LT
534 arp_print(payload);
535#endif
536
537 clusterip_config_put(c);
538
539 return NF_ACCEPT;
540}
541
1999414a 542static struct nf_hook_ops cip_arp_ops __read_mostly = {
1da177e4 543 .hook = arp_mangle,
ee999d8b 544 .pf = NFPROTO_ARP,
1da177e4
LT
545 .hooknum = NF_ARP_OUT,
546 .priority = -1
547};
548
e905a9ed
YH
549/***********************************************************************
550 * PROC DIR HANDLING
1da177e4
LT
551 ***********************************************************************/
552
553#ifdef CONFIG_PROC_FS
554
136e92bb
KK
555struct 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
1da177e4
LT
562static void *clusterip_seq_start(struct seq_file *s, loff_t *pos)
563{
47778147 564 struct clusterip_config *c = s->private;
136e92bb
KK
565 unsigned int weight;
566 u_int32_t local_nodes;
567 struct clusterip_seq_position *idx;
568
569 /* FIXME: possible race */
570 local_nodes = c->local_nodes;
571 weight = hweight32(local_nodes);
572 if (*pos >= weight)
1da177e4
LT
573 return NULL;
574
136e92bb
KK
575 idx = kmalloc(sizeof(struct clusterip_seq_position), GFP_KERNEL);
576 if (!idx)
1da177e4
LT
577 return ERR_PTR(-ENOMEM);
578
136e92bb
KK
579 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;
1da177e4
LT
586}
587
588static void *clusterip_seq_next(struct seq_file *s, void *v, loff_t *pos)
589{
3cf93c96 590 struct clusterip_seq_position *idx = v;
1da177e4 591
136e92bb
KK
592 *pos = ++idx->pos;
593 if (*pos >= idx->weight) {
1da177e4
LT
594 kfree(v);
595 return NULL;
596 }
136e92bb
KK
597 idx->bit = ffs(idx->val);
598 clear_bit(idx->bit - 1, &idx->val);
599 return idx;
1da177e4
LT
600}
601
602static void clusterip_seq_stop(struct seq_file *s, void *v)
603{
902a3dd5
ED
604 if (!IS_ERR(v))
605 kfree(v);
1da177e4
LT
606}
607
608static int clusterip_seq_show(struct seq_file *s, void *v)
609{
3cf93c96 610 struct clusterip_seq_position *idx = v;
1da177e4 611
e905a9ed 612 if (idx->pos != 0)
1da177e4 613 seq_putc(s, ',');
1da177e4 614
136e92bb
KK
615 seq_printf(s, "%u", idx->bit);
616
617 if (idx->pos == idx->weight - 1)
1da177e4
LT
618 seq_putc(s, '\n');
619
620 return 0;
621}
622
56b3d975 623static const struct seq_operations clusterip_seq_ops = {
1da177e4
LT
624 .start = clusterip_seq_start,
625 .next = clusterip_seq_next,
626 .stop = clusterip_seq_stop,
627 .show = clusterip_seq_show,
628};
629
630static int clusterip_proc_open(struct inode *inode, struct file *file)
631{
632 int ret = seq_open(file, &clusterip_seq_ops);
633
634 if (!ret) {
635 struct seq_file *sf = file->private_data;
47778147 636 struct clusterip_config *c = PDE(inode)->data;
1da177e4 637
47778147 638 sf->private = c;
1da177e4
LT
639
640 clusterip_config_get(c);
641 }
642
643 return ret;
644}
645
646static int clusterip_proc_release(struct inode *inode, struct file *file)
647{
47778147 648 struct clusterip_config *c = PDE(inode)->data;
1da177e4
LT
649 int ret;
650
651 ret = seq_release(inode, file);
652
653 if (!ret)
654 clusterip_config_put(c);
655
656 return ret;
657}
658
659static ssize_t clusterip_proc_write(struct file *file, const char __user *input,
660 size_t size, loff_t *ofs)
661{
47778147 662 struct clusterip_config *c = PDE(file->f_path.dentry->d_inode)->data;
1da177e4
LT
663#define PROC_WRITELEN 10
664 char buffer[PROC_WRITELEN+1];
1da177e4
LT
665 unsigned long nodenum;
666
667 if (copy_from_user(buffer, input, PROC_WRITELEN))
668 return -EFAULT;
669
670 if (*buffer == '+') {
671 nodenum = simple_strtoul(buffer+1, NULL, 10);
672 if (clusterip_add_node(c, nodenum))
673 return -ENOMEM;
674 } else if (*buffer == '-') {
675 nodenum = simple_strtoul(buffer+1, NULL,10);
676 if (clusterip_del_node(c, nodenum))
677 return -ENOENT;
678 } else
679 return -EIO;
680
681 return size;
682}
683
9a32144e 684static const struct file_operations clusterip_proc_fops = {
1da177e4
LT
685 .owner = THIS_MODULE,
686 .open = clusterip_proc_open,
687 .read = seq_read,
688 .write = clusterip_proc_write,
689 .llseek = seq_lseek,
690 .release = clusterip_proc_release,
691};
692
693#endif /* CONFIG_PROC_FS */
694
d3c5ee6d 695static int __init clusterip_tg_init(void)
1da177e4
LT
696{
697 int ret;
698
d3c5ee6d 699 ret = xt_register_target(&clusterip_tg_reg);
32292a7f
PM
700 if (ret < 0)
701 return ret;
1da177e4 702
32292a7f
PM
703 ret = nf_register_hook(&cip_arp_ops);
704 if (ret < 0)
1da177e4 705 goto cleanup_target;
1da177e4
LT
706
707#ifdef CONFIG_PROC_FS
457c4cbc 708 clusterip_procdir = proc_mkdir("ipt_CLUSTERIP", init_net.proc_net);
1da177e4 709 if (!clusterip_procdir) {
ff67e4e4 710 pr_err("Unable to proc dir entry\n");
1da177e4
LT
711 ret = -ENOMEM;
712 goto cleanup_hook;
713 }
714#endif /* CONFIG_PROC_FS */
715
ff67e4e4 716 pr_info("ClusterIP Version %s loaded successfully\n",
1da177e4 717 CLUSTERIP_VERSION);
1da177e4
LT
718 return 0;
719
76592584 720#ifdef CONFIG_PROC_FS
1da177e4
LT
721cleanup_hook:
722 nf_unregister_hook(&cip_arp_ops);
76592584 723#endif /* CONFIG_PROC_FS */
1da177e4 724cleanup_target:
d3c5ee6d 725 xt_unregister_target(&clusterip_tg_reg);
32292a7f 726 return ret;
1da177e4
LT
727}
728
d3c5ee6d 729static void __exit clusterip_tg_exit(void)
1da177e4 730{
ff67e4e4 731 pr_info("ClusterIP Version %s unloading\n", CLUSTERIP_VERSION);
32292a7f
PM
732#ifdef CONFIG_PROC_FS
733 remove_proc_entry(clusterip_procdir->name, clusterip_procdir->parent);
734#endif
735 nf_unregister_hook(&cip_arp_ops);
d3c5ee6d 736 xt_unregister_target(&clusterip_tg_reg);
d73f33b1
ED
737
738 /* Wait for completion of call_rcu_bh()'s (clusterip_config_rcu_free) */
739 rcu_barrier_bh();
1da177e4
LT
740}
741
d3c5ee6d
JE
742module_init(clusterip_tg_init);
743module_exit(clusterip_tg_exit);