[NETFILTER]: x_tables: remove unused argument to target functions
[linux-2.6-block.git] / net / ipv4 / netfilter / ipt_CLUSTERIP.c
CommitLineData
1da177e4
LT
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>
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>
1da177e4
LT
13#include <linux/proc_fs.h>
14#include <linux/jhash.h>
136e92bb 15#include <linux/bitops.h>
1da177e4
LT
16#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>
22#include <linux/proc_fs.h>
23#include <linux/seq_file.h>
24
25#include <net/checksum.h>
26
27#include <linux/netfilter_arp.h>
28
29#include <linux/netfilter_ipv4/ip_tables.h>
30#include <linux/netfilter_ipv4/ipt_CLUSTERIP.h>
9fb9cbb1 31#include <net/netfilter/nf_conntrack_compat.h>
1da177e4 32
136e92bb 33#define CLUSTERIP_VERSION "0.8"
1da177e4
LT
34
35#define DEBUG_CLUSTERIP
36
37#ifdef DEBUG_CLUSTERIP
38#define DEBUGP printk
39#else
40#define DEBUGP
41#endif
42
e45b1be8
PM
43#define ASSERT_READ_LOCK(x)
44
1da177e4
LT
45MODULE_LICENSE("GPL");
46MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
47MODULE_DESCRIPTION("iptables target for CLUSTERIP");
48
49struct clusterip_config {
50 struct list_head list; /* list of all configs */
51 atomic_t refcount; /* reference count */
44513624
KK
52 atomic_t entries; /* number of entries/rules
53 * referencing us */
1da177e4
LT
54
55 u_int32_t clusterip; /* the IP address */
56 u_int8_t clustermac[ETH_ALEN]; /* the MAC address */
57 struct net_device *dev; /* device */
58 u_int16_t num_total_nodes; /* total number of nodes */
136e92bb 59 unsigned long local_nodes; /* node number array */
1da177e4
LT
60
61#ifdef CONFIG_PROC_FS
62 struct proc_dir_entry *pde; /* proc dir entry */
63#endif
64 enum clusterip_hashmode hash_mode; /* which hashing mode */
65 u_int32_t hash_initval; /* hash initialization */
66};
67
68static LIST_HEAD(clusterip_configs);
69
136e92bb 70/* clusterip_lock protects the clusterip_configs list */
e45b1be8 71static DEFINE_RWLOCK(clusterip_lock);
1da177e4
LT
72
73#ifdef CONFIG_PROC_FS
74static struct file_operations clusterip_proc_fops;
75static struct proc_dir_entry *clusterip_procdir;
76#endif
77
78static inline void
44513624
KK
79clusterip_config_get(struct clusterip_config *c)
80{
1da177e4
LT
81 atomic_inc(&c->refcount);
82}
83
84static inline void
44513624
KK
85clusterip_config_put(struct clusterip_config *c)
86{
87 if (atomic_dec_and_test(&c->refcount))
88 kfree(c);
89}
90
91/* increase the count of entries(rules) using/referencing this config */
92static inline void
93clusterip_config_entry_get(struct clusterip_config *c)
94{
95 atomic_inc(&c->entries);
96}
97
98/* decrease the count of entries using/referencing this config. If last
99 * entry(rule) is removed, remove the config from lists, but don't free it
100 * yet, since proc-files could still be holding references */
101static inline void
102clusterip_config_entry_put(struct clusterip_config *c)
103{
104 if (atomic_dec_and_test(&c->entries)) {
e45b1be8 105 write_lock_bh(&clusterip_lock);
1da177e4 106 list_del(&c->list);
e45b1be8 107 write_unlock_bh(&clusterip_lock);
44513624 108
1da177e4
LT
109 dev_mc_delete(c->dev, c->clustermac, ETH_ALEN, 0);
110 dev_put(c->dev);
44513624
KK
111
112 /* In case anyone still accesses the file, the open/close
113 * functions are also incrementing the refcount on their own,
114 * so it's safe to remove the entry even if it's in use. */
115#ifdef CONFIG_PROC_FS
116 remove_proc_entry(c->pde->name, c->pde->parent);
117#endif
1da177e4
LT
118 }
119}
120
1da177e4
LT
121static struct clusterip_config *
122__clusterip_config_find(u_int32_t clusterip)
123{
124 struct list_head *pos;
125
e45b1be8 126 ASSERT_READ_LOCK(&clusterip_lock);
1da177e4
LT
127 list_for_each(pos, &clusterip_configs) {
128 struct clusterip_config *c = list_entry(pos,
129 struct clusterip_config, list);
130 if (c->clusterip == clusterip) {
131 return c;
132 }
133 }
134
135 return NULL;
136}
137
138static inline struct clusterip_config *
44513624 139clusterip_config_find_get(u_int32_t clusterip, int entry)
1da177e4
LT
140{
141 struct clusterip_config *c;
142
e45b1be8 143 read_lock_bh(&clusterip_lock);
1da177e4
LT
144 c = __clusterip_config_find(clusterip);
145 if (!c) {
e45b1be8 146 read_unlock_bh(&clusterip_lock);
1da177e4
LT
147 return NULL;
148 }
149 atomic_inc(&c->refcount);
44513624
KK
150 if (entry)
151 atomic_inc(&c->entries);
e45b1be8 152 read_unlock_bh(&clusterip_lock);
1da177e4
LT
153
154 return c;
155}
156
136e92bb
KK
157static void
158clusterip_config_init_nodelist(struct clusterip_config *c,
159 const struct ipt_clusterip_tgt_info *i)
160{
161 int n;
162
163 for (n = 0; n < i->num_local_nodes; n++) {
164 set_bit(i->local_nodes[n] - 1, &c->local_nodes);
165 }
166}
167
1da177e4
LT
168static struct clusterip_config *
169clusterip_config_init(struct ipt_clusterip_tgt_info *i, u_int32_t ip,
170 struct net_device *dev)
171{
172 struct clusterip_config *c;
173 char buffer[16];
174
0da974f4 175 c = kzalloc(sizeof(*c), GFP_ATOMIC);
1da177e4
LT
176 if (!c)
177 return NULL;
178
1da177e4
LT
179 c->dev = dev;
180 c->clusterip = ip;
181 memcpy(&c->clustermac, &i->clustermac, ETH_ALEN);
182 c->num_total_nodes = i->num_total_nodes;
136e92bb 183 clusterip_config_init_nodelist(c, i);
1da177e4
LT
184 c->hash_mode = i->hash_mode;
185 c->hash_initval = i->hash_initval;
186 atomic_set(&c->refcount, 1);
44513624 187 atomic_set(&c->entries, 1);
1da177e4
LT
188
189#ifdef CONFIG_PROC_FS
190 /* create proc dir entry */
191 sprintf(buffer, "%u.%u.%u.%u", NIPQUAD(ip));
192 c->pde = create_proc_entry(buffer, S_IWUSR|S_IRUSR, clusterip_procdir);
193 if (!c->pde) {
194 kfree(c);
195 return NULL;
196 }
197 c->pde->proc_fops = &clusterip_proc_fops;
198 c->pde->data = c;
199#endif
200
e45b1be8 201 write_lock_bh(&clusterip_lock);
1da177e4 202 list_add(&c->list, &clusterip_configs);
e45b1be8 203 write_unlock_bh(&clusterip_lock);
1da177e4
LT
204
205 return c;
206}
207
208static int
209clusterip_add_node(struct clusterip_config *c, u_int16_t nodenum)
210{
1da177e4 211
136e92bb
KK
212 if (nodenum == 0 ||
213 nodenum > c->num_total_nodes)
1da177e4 214 return 1;
1da177e4 215
136e92bb
KK
216 /* check if we already have this number in our bitfield */
217 if (test_and_set_bit(nodenum - 1, &c->local_nodes))
218 return 1;
1da177e4 219
1da177e4
LT
220 return 0;
221}
222
223static int
224clusterip_del_node(struct clusterip_config *c, u_int16_t nodenum)
225{
136e92bb
KK
226 if (nodenum == 0 ||
227 nodenum > c->num_total_nodes)
1da177e4 228 return 1;
1da177e4 229
136e92bb
KK
230 if (test_and_clear_bit(nodenum - 1, &c->local_nodes))
231 return 0;
1da177e4 232
1da177e4
LT
233 return 1;
234}
235
236static inline u_int32_t
237clusterip_hashfn(struct sk_buff *skb, struct clusterip_config *config)
238{
239 struct iphdr *iph = skb->nh.iph;
240 unsigned long hashval;
241 u_int16_t sport, dport;
957dc80a 242 u_int16_t *ports;
1da177e4
LT
243
244 switch (iph->protocol) {
245 case IPPROTO_TCP:
1da177e4 246 case IPPROTO_UDP:
957dc80a
PM
247 case IPPROTO_SCTP:
248 case IPPROTO_DCCP:
1da177e4 249 case IPPROTO_ICMP:
957dc80a
PM
250 ports = (void *)iph+iph->ihl*4;
251 sport = ports[0];
252 dport = ports[1];
1da177e4
LT
253 break;
254 default:
255 if (net_ratelimit()) {
256 printk(KERN_NOTICE "CLUSTERIP: unknown protocol `%u'\n",
257 iph->protocol);
258 }
259 sport = dport = 0;
260 }
261
262 switch (config->hash_mode) {
263 case CLUSTERIP_HASHMODE_SIP:
264 hashval = jhash_1word(ntohl(iph->saddr),
265 config->hash_initval);
266 break;
267 case CLUSTERIP_HASHMODE_SIP_SPT:
268 hashval = jhash_2words(ntohl(iph->saddr), sport,
269 config->hash_initval);
270 break;
271 case CLUSTERIP_HASHMODE_SIP_SPT_DPT:
272 hashval = jhash_3words(ntohl(iph->saddr), sport, dport,
273 config->hash_initval);
274 break;
275 default:
276 /* to make gcc happy */
277 hashval = 0;
278 /* This cannot happen, unless the check function wasn't called
279 * at rule load time */
280 printk("CLUSTERIP: unknown mode `%u'\n", config->hash_mode);
281 BUG();
282 break;
283 }
284
285 /* node numbers are 1..n, not 0..n */
286 return ((hashval % config->num_total_nodes)+1);
287}
288
289static inline int
290clusterip_responsible(struct clusterip_config *config, u_int32_t hash)
291{
136e92bb 292 return test_bit(hash - 1, &config->local_nodes);
1da177e4
LT
293}
294
295/***********************************************************************
296 * IPTABLES TARGET
297 ***********************************************************************/
298
299static unsigned int
300target(struct sk_buff **pskb,
301 const struct net_device *in,
302 const struct net_device *out,
303 unsigned int hooknum,
c4986734 304 const struct xt_target *target,
fe1cb108 305 const void *targinfo)
1da177e4
LT
306{
307 const struct ipt_clusterip_tgt_info *cipinfo = targinfo;
308 enum ip_conntrack_info ctinfo;
9fb9cbb1 309 u_int32_t *mark, hash;
1da177e4
LT
310
311 /* don't need to clusterip_config_get() here, since refcount
312 * is only decremented by destroy() - and ip_tables guarantees
313 * that the ->target() function isn't called after ->destroy() */
314
9fb9cbb1
YK
315 mark = nf_ct_get_mark((*pskb), &ctinfo);
316 if (mark == NULL) {
1da177e4
LT
317 printk(KERN_ERR "CLUSTERIP: no conntrack!\n");
318 /* FIXME: need to drop invalid ones, since replies
319 * to outgoing connections of other nodes will be
320 * marked as INVALID */
321 return NF_DROP;
322 }
323
324 /* special case: ICMP error handling. conntrack distinguishes between
325 * error messages (RELATED) and information requests (see below) */
326 if ((*pskb)->nh.iph->protocol == IPPROTO_ICMP
327 && (ctinfo == IP_CT_RELATED
5d927eb0 328 || ctinfo == IP_CT_RELATED+IP_CT_IS_REPLY))
1da177e4
LT
329 return IPT_CONTINUE;
330
331 /* ip_conntrack_icmp guarantees us that we only have ICMP_ECHO,
332 * TIMESTAMP, INFO_REQUEST or ADDRESS type icmp packets from here
333 * on, which all have an ID field [relevant for hashing]. */
334
335 hash = clusterip_hashfn(*pskb, cipinfo->config);
336
337 switch (ctinfo) {
338 case IP_CT_NEW:
9fb9cbb1 339 *mark = hash;
1da177e4
LT
340 break;
341 case IP_CT_RELATED:
342 case IP_CT_RELATED+IP_CT_IS_REPLY:
343 /* FIXME: we don't handle expectations at the
344 * moment. they can arrive on a different node than
345 * the master connection (e.g. FTP passive mode) */
346 case IP_CT_ESTABLISHED:
347 case IP_CT_ESTABLISHED+IP_CT_IS_REPLY:
348 break;
349 default:
350 break;
351 }
352
353#ifdef DEBUG_CLUSTERP
354 DUMP_TUPLE(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple);
355#endif
9fb9cbb1 356 DEBUGP("hash=%u ct_hash=%u ", hash, *mark);
1da177e4
LT
357 if (!clusterip_responsible(cipinfo->config, hash)) {
358 DEBUGP("not responsible\n");
359 return NF_DROP;
360 }
361 DEBUGP("responsible\n");
362
363 /* despite being received via linklayer multicast, this is
364 * actually a unicast IP packet. TCP doesn't like PACKET_MULTICAST */
365 (*pskb)->pkt_type = PACKET_HOST;
366
367 return IPT_CONTINUE;
368}
369
370static int
371checkentry(const char *tablename,
2e4e6a17 372 const void *e_void,
c4986734 373 const struct xt_target *target,
1da177e4
LT
374 void *targinfo,
375 unsigned int targinfosize,
376 unsigned int hook_mask)
377{
378 struct ipt_clusterip_tgt_info *cipinfo = targinfo;
2e4e6a17 379 const struct ipt_entry *e = e_void;
1da177e4
LT
380
381 struct clusterip_config *config;
382
1da177e4
LT
383 if (cipinfo->hash_mode != CLUSTERIP_HASHMODE_SIP &&
384 cipinfo->hash_mode != CLUSTERIP_HASHMODE_SIP_SPT &&
385 cipinfo->hash_mode != CLUSTERIP_HASHMODE_SIP_SPT_DPT) {
386 printk(KERN_WARNING "CLUSTERIP: unknown mode `%u'\n",
387 cipinfo->hash_mode);
388 return 0;
389
390 }
391 if (e->ip.dmsk.s_addr != 0xffffffff
392 || e->ip.dst.s_addr == 0) {
393 printk(KERN_ERR "CLUSTERIP: Please specify destination IP\n");
394 return 0;
395 }
396
397 /* FIXME: further sanity checks */
398
44513624
KK
399 config = clusterip_config_find_get(e->ip.dst.s_addr, 1);
400 if (config) {
401 if (cipinfo->config != NULL) {
402 /* Case A: This is an entry that gets reloaded, since
403 * it still has a cipinfo->config pointer. Simply
404 * increase the entry refcount and return */
405 if (cipinfo->config != config) {
406 printk(KERN_ERR "CLUSTERIP: Reloaded entry "
407 "has invalid config pointer!\n");
408 return 0;
409 }
410 clusterip_config_entry_get(cipinfo->config);
411 } else {
412 /* Case B: This is a new rule referring to an existing
413 * clusterip config. */
414 cipinfo->config = config;
415 clusterip_config_entry_get(cipinfo->config);
416 }
417 } else {
418 /* Case C: This is a completely new clusterip config */
1da177e4
LT
419 if (!(cipinfo->flags & CLUSTERIP_FLAG_NEW)) {
420 printk(KERN_WARNING "CLUSTERIP: no config found for %u.%u.%u.%u, need 'new'\n", NIPQUAD(e->ip.dst.s_addr));
421 return 0;
422 } else {
423 struct net_device *dev;
424
425 if (e->ip.iniface[0] == '\0') {
426 printk(KERN_WARNING "CLUSTERIP: Please specify an interface name\n");
427 return 0;
428 }
429
430 dev = dev_get_by_name(e->ip.iniface);
431 if (!dev) {
432 printk(KERN_WARNING "CLUSTERIP: no such interface %s\n", e->ip.iniface);
433 return 0;
434 }
435
436 config = clusterip_config_init(cipinfo,
437 e->ip.dst.s_addr, dev);
438 if (!config) {
439 printk(KERN_WARNING "CLUSTERIP: cannot allocate config\n");
440 dev_put(dev);
441 return 0;
442 }
443 dev_mc_add(config->dev,config->clustermac, ETH_ALEN, 0);
444 }
44513624 445 cipinfo->config = config;
1da177e4
LT
446 }
447
1da177e4
LT
448 return 1;
449}
450
451/* drop reference count of cluster config when rule is deleted */
c4986734
PM
452static void destroy(const struct xt_target *target, void *targinfo,
453 unsigned int targinfosize)
1da177e4 454{
c4986734 455 struct ipt_clusterip_tgt_info *cipinfo = targinfo;
1da177e4 456
44513624
KK
457 /* if no more entries are referencing the config, remove it
458 * from the list and destroy the proc entry */
459 clusterip_config_entry_put(cipinfo->config);
460
1da177e4
LT
461 clusterip_config_put(cipinfo->config);
462}
463
1d5cd909
PM
464static struct ipt_target clusterip_tgt = {
465 .name = "CLUSTERIP",
466 .target = target,
467 .targetsize = sizeof(struct ipt_clusterip_tgt_info),
468 .checkentry = checkentry,
469 .destroy = destroy,
470 .me = THIS_MODULE
1da177e4
LT
471};
472
473
474/***********************************************************************
475 * ARP MANGLING CODE
476 ***********************************************************************/
477
478/* hardcoded for 48bit ethernet and 32bit ipv4 addresses */
479struct arp_payload {
480 u_int8_t src_hw[ETH_ALEN];
481 u_int32_t src_ip;
482 u_int8_t dst_hw[ETH_ALEN];
483 u_int32_t dst_ip;
484} __attribute__ ((packed));
485
486#ifdef CLUSTERIP_DEBUG
487static void arp_print(struct arp_payload *payload)
488{
489#define HBUFFERLEN 30
490 char hbuffer[HBUFFERLEN];
491 int j,k;
492 const char hexbuf[]= "0123456789abcdef";
493
494 for (k=0, j=0; k < HBUFFERLEN-3 && j < ETH_ALEN; j++) {
495 hbuffer[k++]=hexbuf[(payload->src_hw[j]>>4)&15];
496 hbuffer[k++]=hexbuf[payload->src_hw[j]&15];
497 hbuffer[k++]=':';
498 }
499 hbuffer[--k]='\0';
500
501 printk("src %u.%u.%u.%u@%s, dst %u.%u.%u.%u\n",
502 NIPQUAD(payload->src_ip), hbuffer,
503 NIPQUAD(payload->dst_ip));
504}
505#endif
506
507static unsigned int
508arp_mangle(unsigned int hook,
509 struct sk_buff **pskb,
510 const struct net_device *in,
511 const struct net_device *out,
512 int (*okfn)(struct sk_buff *))
513{
514 struct arphdr *arp = (*pskb)->nh.arph;
515 struct arp_payload *payload;
516 struct clusterip_config *c;
517
518 /* we don't care about non-ethernet and non-ipv4 ARP */
519 if (arp->ar_hrd != htons(ARPHRD_ETHER)
520 || arp->ar_pro != htons(ETH_P_IP)
521 || arp->ar_pln != 4 || arp->ar_hln != ETH_ALEN)
522 return NF_ACCEPT;
523
4095ebf1
HW
524 /* we only want to mangle arp requests and replies */
525 if (arp->ar_op != htons(ARPOP_REPLY)
526 && arp->ar_op != htons(ARPOP_REQUEST))
1da177e4
LT
527 return NF_ACCEPT;
528
529 payload = (void *)(arp+1);
530
531 /* if there is no clusterip configuration for the arp reply's
532 * source ip, we don't want to mangle it */
44513624 533 c = clusterip_config_find_get(payload->src_ip, 0);
1da177e4
LT
534 if (!c)
535 return NF_ACCEPT;
536
537 /* normally the linux kernel always replies to arp queries of
538 * addresses on different interfacs. However, in the CLUSTERIP case
539 * this wouldn't work, since we didn't subscribe the mcast group on
540 * other interfaces */
541 if (c->dev != out) {
542 DEBUGP("CLUSTERIP: not mangling arp reply on different "
543 "interface: cip'%s'-skb'%s'\n", c->dev->name, out->name);
544 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
551#ifdef CLUSTERIP_DEBUG
552 DEBUGP(KERN_DEBUG "CLUSTERIP mangled arp reply: ");
553 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
568/***********************************************************************
569 * PROC DIR HANDLING
570 ***********************************************************************/
571
572#ifdef CONFIG_PROC_FS
573
136e92bb
KK
574struct 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
1da177e4
LT
581static 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;
136e92bb
KK
585 unsigned int weight;
586 u_int32_t local_nodes;
587 struct clusterip_seq_position *idx;
588
589 /* FIXME: possible race */
590 local_nodes = c->local_nodes;
591 weight = hweight32(local_nodes);
592 if (*pos >= weight)
1da177e4
LT
593 return NULL;
594
136e92bb
KK
595 idx = kmalloc(sizeof(struct clusterip_seq_position), GFP_KERNEL);
596 if (!idx)
1da177e4
LT
597 return ERR_PTR(-ENOMEM);
598
136e92bb
KK
599 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;
1da177e4
LT
606}
607
608static void *clusterip_seq_next(struct seq_file *s, void *v, loff_t *pos)
609{
136e92bb 610 struct clusterip_seq_position *idx = (struct clusterip_seq_position *)v;
1da177e4 611
136e92bb
KK
612 *pos = ++idx->pos;
613 if (*pos >= idx->weight) {
1da177e4
LT
614 kfree(v);
615 return NULL;
616 }
136e92bb
KK
617 idx->bit = ffs(idx->val);
618 clear_bit(idx->bit - 1, &idx->val);
619 return idx;
1da177e4
LT
620}
621
622static void clusterip_seq_stop(struct seq_file *s, void *v)
623{
624 kfree(v);
1da177e4
LT
625}
626
627static int clusterip_seq_show(struct seq_file *s, void *v)
628{
136e92bb 629 struct clusterip_seq_position *idx = (struct clusterip_seq_position *)v;
1da177e4 630
136e92bb 631 if (idx->pos != 0)
1da177e4 632 seq_putc(s, ',');
1da177e4 633
136e92bb
KK
634 seq_printf(s, "%u", idx->bit);
635
636 if (idx->pos == idx->weight - 1)
1da177e4
LT
637 seq_putc(s, '\n');
638
639 return 0;
640}
641
642static struct seq_operations clusterip_seq_ops = {
643 .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];
685 struct proc_dir_entry *pde = PDE(file->f_dentry->d_inode);
686 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
706static struct file_operations clusterip_proc_fops = {
707 .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
32292a7f 717static int __init ipt_clusterip_init(void)
1da177e4
LT
718{
719 int ret;
720
32292a7f
PM
721 ret = ipt_register_target(&clusterip_tgt);
722 if (ret < 0)
723 return ret;
1da177e4 724
32292a7f
PM
725 ret = nf_register_hook(&cip_arp_ops);
726 if (ret < 0)
1da177e4 727 goto cleanup_target;
1da177e4
LT
728
729#ifdef CONFIG_PROC_FS
730 clusterip_procdir = proc_mkdir("ipt_CLUSTERIP", proc_net);
731 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);
1da177e4
LT
740 return 0;
741
1da177e4
LT
742cleanup_hook:
743 nf_unregister_hook(&cip_arp_ops);
744cleanup_target:
745 ipt_unregister_target(&clusterip_tgt);
32292a7f 746 return ret;
1da177e4
LT
747}
748
65b4b4e8 749static void __exit ipt_clusterip_fini(void)
1da177e4 750{
32292a7f
PM
751 printk(KERN_NOTICE "ClusterIP Version %s unloading\n",
752 CLUSTERIP_VERSION);
753#ifdef CONFIG_PROC_FS
754 remove_proc_entry(clusterip_procdir->name, clusterip_procdir->parent);
755#endif
756 nf_unregister_hook(&cip_arp_ops);
757 ipt_unregister_target(&clusterip_tgt);
1da177e4
LT
758}
759
65b4b4e8
AM
760module_init(ipt_clusterip_init);
761module_exit(ipt_clusterip_fini);