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