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