[NETFILTER]: ipt_CLUSTERIP: add compat code
[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/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 #include <linux/netfilter_arp.h>
25 #include <linux/netfilter/x_tables.h>
26 #include <linux/netfilter_ipv4/ip_tables.h>
27 #include <linux/netfilter_ipv4/ipt_CLUSTERIP.h>
28 #include <net/netfilter/nf_conntrack.h>
29 #include <net/checksum.h>
30
31 #define CLUSTERIP_VERSION "0.8"
32
33 #define DEBUG_CLUSTERIP
34
35 #ifdef DEBUG_CLUSTERIP
36 #define DEBUGP  printk
37 #else
38 #define DEBUGP
39 #endif
40
41 MODULE_LICENSE("GPL");
42 MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
43 MODULE_DESCRIPTION("iptables target for CLUSTERIP");
44
45 struct clusterip_config {
46         struct list_head list;                  /* list of all configs */
47         atomic_t refcount;                      /* reference count */
48         atomic_t entries;                       /* number of entries/rules
49                                                  * referencing us */
50
51         __be32 clusterip;                       /* the IP address */
52         u_int8_t clustermac[ETH_ALEN];          /* the MAC address */
53         struct net_device *dev;                 /* device */
54         u_int16_t num_total_nodes;              /* total number of nodes */
55         unsigned long local_nodes;              /* node number array */
56
57 #ifdef CONFIG_PROC_FS
58         struct proc_dir_entry *pde;             /* proc dir entry */
59 #endif
60         enum clusterip_hashmode hash_mode;      /* which hashing mode */
61         u_int32_t hash_initval;                 /* hash initialization */
62 };
63
64 static LIST_HEAD(clusterip_configs);
65
66 /* clusterip_lock protects the clusterip_configs list */
67 static DEFINE_RWLOCK(clusterip_lock);
68
69 #ifdef CONFIG_PROC_FS
70 static const struct file_operations clusterip_proc_fops;
71 static struct proc_dir_entry *clusterip_procdir;
72 #endif
73
74 static inline void
75 clusterip_config_get(struct clusterip_config *c)
76 {
77         atomic_inc(&c->refcount);
78 }
79
80 static inline void
81 clusterip_config_put(struct clusterip_config *c)
82 {
83         if (atomic_dec_and_test(&c->refcount))
84                 kfree(c);
85 }
86
87 /* increase the count of entries(rules) using/referencing this config */
88 static inline void
89 clusterip_config_entry_get(struct clusterip_config *c)
90 {
91         atomic_inc(&c->entries);
92 }
93
94 /* decrease the count of entries using/referencing this config.  If last
95  * entry(rule) is removed, remove the config from lists, but don't free it
96  * yet, since proc-files could still be holding references */
97 static inline void
98 clusterip_config_entry_put(struct clusterip_config *c)
99 {
100         if (atomic_dec_and_test(&c->entries)) {
101                 write_lock_bh(&clusterip_lock);
102                 list_del(&c->list);
103                 write_unlock_bh(&clusterip_lock);
104
105                 dev_mc_delete(c->dev, c->clustermac, ETH_ALEN, 0);
106                 dev_put(c->dev);
107
108                 /* In case anyone still accesses the file, the open/close
109                  * functions are also incrementing the refcount on their own,
110                  * so it's safe to remove the entry even if it's in use. */
111 #ifdef CONFIG_PROC_FS
112                 remove_proc_entry(c->pde->name, c->pde->parent);
113 #endif
114         }
115 }
116
117 static struct clusterip_config *
118 __clusterip_config_find(__be32 clusterip)
119 {
120         struct list_head *pos;
121
122         list_for_each(pos, &clusterip_configs) {
123                 struct clusterip_config *c = list_entry(pos,
124                                         struct clusterip_config, list);
125                 if (c->clusterip == clusterip)
126                         return c;
127         }
128
129         return NULL;
130 }
131
132 static inline struct clusterip_config *
133 clusterip_config_find_get(__be32 clusterip, int entry)
134 {
135         struct clusterip_config *c;
136
137         read_lock_bh(&clusterip_lock);
138         c = __clusterip_config_find(clusterip);
139         if (!c) {
140                 read_unlock_bh(&clusterip_lock);
141                 return NULL;
142         }
143         atomic_inc(&c->refcount);
144         if (entry)
145                 atomic_inc(&c->entries);
146         read_unlock_bh(&clusterip_lock);
147
148         return c;
149 }
150
151 static void
152 clusterip_config_init_nodelist(struct clusterip_config *c,
153                                const struct ipt_clusterip_tgt_info *i)
154 {
155         int n;
156
157         for (n = 0; n < i->num_local_nodes; n++)
158                 set_bit(i->local_nodes[n] - 1, &c->local_nodes);
159 }
160
161 static struct clusterip_config *
162 clusterip_config_init(struct ipt_clusterip_tgt_info *i, __be32 ip,
163                         struct net_device *dev)
164 {
165         struct clusterip_config *c;
166
167         c = kzalloc(sizeof(*c), GFP_ATOMIC);
168         if (!c)
169                 return NULL;
170
171         c->dev = dev;
172         c->clusterip = ip;
173         memcpy(&c->clustermac, &i->clustermac, ETH_ALEN);
174         c->num_total_nodes = i->num_total_nodes;
175         clusterip_config_init_nodelist(c, i);
176         c->hash_mode = i->hash_mode;
177         c->hash_initval = i->hash_initval;
178         atomic_set(&c->refcount, 1);
179         atomic_set(&c->entries, 1);
180
181 #ifdef CONFIG_PROC_FS
182         {
183                 char buffer[16];
184
185                 /* create proc dir entry */
186                 sprintf(buffer, "%u.%u.%u.%u", NIPQUAD(ip));
187                 c->pde = create_proc_entry(buffer, S_IWUSR|S_IRUSR,
188                                            clusterip_procdir);
189                 if (!c->pde) {
190                         kfree(c);
191                         return NULL;
192                 }
193         }
194         c->pde->proc_fops = &clusterip_proc_fops;
195         c->pde->data = c;
196 #endif
197
198         write_lock_bh(&clusterip_lock);
199         list_add(&c->list, &clusterip_configs);
200         write_unlock_bh(&clusterip_lock);
201
202         return c;
203 }
204
205 #ifdef CONFIG_PROC_FS
206 static int
207 clusterip_add_node(struct clusterip_config *c, u_int16_t nodenum)
208 {
209
210         if (nodenum == 0 ||
211             nodenum > c->num_total_nodes)
212                 return 1;
213
214         /* check if we already have this number in our bitfield */
215         if (test_and_set_bit(nodenum - 1, &c->local_nodes))
216                 return 1;
217
218         return 0;
219 }
220
221 static bool
222 clusterip_del_node(struct clusterip_config *c, u_int16_t nodenum)
223 {
224         if (nodenum == 0 ||
225             nodenum > c->num_total_nodes)
226                 return true;
227
228         if (test_and_clear_bit(nodenum - 1, &c->local_nodes))
229                 return false;
230
231         return true;
232 }
233 #endif
234
235 static inline u_int32_t
236 clusterip_hashfn(const struct sk_buff *skb,
237                  const struct clusterip_config *config)
238 {
239         const struct iphdr *iph = ip_hdr(skb);
240         unsigned long hashval;
241         u_int16_t sport, dport;
242         const u_int16_t *ports;
243
244         switch (iph->protocol) {
245         case IPPROTO_TCP:
246         case IPPROTO_UDP:
247         case IPPROTO_UDPLITE:
248         case IPPROTO_SCTP:
249         case IPPROTO_DCCP:
250         case IPPROTO_ICMP:
251                 ports = (const void *)iph+iph->ihl*4;
252                 sport = ports[0];
253                 dport = ports[1];
254                 break;
255         default:
256                 if (net_ratelimit())
257                         printk(KERN_NOTICE "CLUSTERIP: unknown protocol `%u'\n",
258                                 iph->protocol);
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
289 static inline int
290 clusterip_responsible(const struct clusterip_config *config, u_int32_t hash)
291 {
292         return test_bit(hash - 1, &config->local_nodes);
293 }
294
295 /***********************************************************************
296  * IPTABLES TARGET
297  ***********************************************************************/
298
299 static unsigned int
300 target(struct sk_buff **pskb,
301        const struct net_device *in,
302        const struct net_device *out,
303        unsigned int hooknum,
304        const struct xt_target *target,
305        const void *targinfo)
306 {
307         const struct ipt_clusterip_tgt_info *cipinfo = targinfo;
308         struct nf_conn *ct;
309         enum ip_conntrack_info ctinfo;
310         u_int32_t hash;
311
312         /* don't need to clusterip_config_get() here, since refcount
313          * is only decremented by destroy() - and ip_tables guarantees
314          * that the ->target() function isn't called after ->destroy() */
315
316         ct = nf_ct_get(*pskb, &ctinfo);
317         if (ct == NULL) {
318                 printk(KERN_ERR "CLUSTERIP: no conntrack!\n");
319                         /* FIXME: need to drop invalid ones, since replies
320                          * to outgoing connections of other nodes will be
321                          * marked as INVALID */
322                 return NF_DROP;
323         }
324
325         /* special case: ICMP error handling. conntrack distinguishes between
326          * error messages (RELATED) and information requests (see below) */
327         if (ip_hdr(*pskb)->protocol == IPPROTO_ICMP
328             && (ctinfo == IP_CT_RELATED
329                 || ctinfo == IP_CT_RELATED+IP_CT_IS_REPLY))
330                 return XT_CONTINUE;
331
332         /* ip_conntrack_icmp guarantees us that we only have ICMP_ECHO,
333          * TIMESTAMP, INFO_REQUEST or ADDRESS type icmp packets from here
334          * on, which all have an ID field [relevant for hashing]. */
335
336         hash = clusterip_hashfn(*pskb, cipinfo->config);
337
338         switch (ctinfo) {
339                 case IP_CT_NEW:
340                         ct->mark = hash;
341                         break;
342                 case IP_CT_RELATED:
343                 case IP_CT_RELATED+IP_CT_IS_REPLY:
344                         /* FIXME: we don't handle expectations at the
345                          * moment.  they can arrive on a different node than
346                          * the master connection (e.g. FTP passive mode) */
347                 case IP_CT_ESTABLISHED:
348                 case IP_CT_ESTABLISHED+IP_CT_IS_REPLY:
349                         break;
350                 default:
351                         break;
352         }
353
354 #ifdef DEBUG_CLUSTERP
355         DUMP_TUPLE(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple);
356 #endif
357         DEBUGP("hash=%u ct_hash=%u ", hash, ct->mark);
358         if (!clusterip_responsible(cipinfo->config, hash)) {
359                 DEBUGP("not responsible\n");
360                 return NF_DROP;
361         }
362         DEBUGP("responsible\n");
363
364         /* despite being received via linklayer multicast, this is
365          * actually a unicast IP packet. TCP doesn't like PACKET_MULTICAST */
366         (*pskb)->pkt_type = PACKET_HOST;
367
368         return XT_CONTINUE;
369 }
370
371 static bool
372 checkentry(const char *tablename,
373            const void *e_void,
374            const struct xt_target *target,
375            void *targinfo,
376            unsigned int hook_mask)
377 {
378         struct ipt_clusterip_tgt_info *cipinfo = targinfo;
379         const struct ipt_entry *e = e_void;
380
381         struct clusterip_config *config;
382
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 false;
389
390         }
391         if (e->ip.dmsk.s_addr != htonl(0xffffffff)
392             || e->ip.dst.s_addr == 0) {
393                 printk(KERN_ERR "CLUSTERIP: Please specify destination IP\n");
394                 return false;
395         }
396
397         /* FIXME: further sanity checks */
398
399         config = clusterip_config_find_get(e->ip.dst.s_addr, 1);
400         if (!config) {
401                 if (!(cipinfo->flags & CLUSTERIP_FLAG_NEW)) {
402                         printk(KERN_WARNING "CLUSTERIP: no config found for %u.%u.%u.%u, need 'new'\n", NIPQUAD(e->ip.dst.s_addr));
403                         return false;
404                 } else {
405                         struct net_device *dev;
406
407                         if (e->ip.iniface[0] == '\0') {
408                                 printk(KERN_WARNING "CLUSTERIP: Please specify an interface name\n");
409                                 return false;
410                         }
411
412                         dev = dev_get_by_name(e->ip.iniface);
413                         if (!dev) {
414                                 printk(KERN_WARNING "CLUSTERIP: no such interface %s\n", e->ip.iniface);
415                                 return false;
416                         }
417
418                         config = clusterip_config_init(cipinfo,
419                                                         e->ip.dst.s_addr, dev);
420                         if (!config) {
421                                 printk(KERN_WARNING "CLUSTERIP: cannot allocate config\n");
422                                 dev_put(dev);
423                                 return false;
424                         }
425                         dev_mc_add(config->dev,config->clustermac, ETH_ALEN, 0);
426                 }
427         }
428         cipinfo->config = config;
429
430         if (nf_ct_l3proto_try_module_get(target->family) < 0) {
431                 printk(KERN_WARNING "can't load conntrack support for "
432                                     "proto=%d\n", target->family);
433                 return false;
434         }
435
436         return true;
437 }
438
439 /* drop reference count of cluster config when rule is deleted */
440 static void destroy(const struct xt_target *target, void *targinfo)
441 {
442         struct ipt_clusterip_tgt_info *cipinfo = targinfo;
443
444         /* if no more entries are referencing the config, remove it
445          * from the list and destroy the proc entry */
446         clusterip_config_entry_put(cipinfo->config);
447
448         clusterip_config_put(cipinfo->config);
449
450         nf_ct_l3proto_module_put(target->family);
451 }
452
453 #ifdef CONFIG_COMPAT
454 struct compat_ipt_clusterip_tgt_info
455 {
456         u_int32_t       flags;
457         u_int8_t        clustermac[6];
458         u_int16_t       num_total_nodes;
459         u_int16_t       num_local_nodes;
460         u_int16_t       local_nodes[CLUSTERIP_MAX_NODES];
461         u_int32_t       hash_mode;
462         u_int32_t       hash_initval;
463         compat_uptr_t   config;
464 };
465 #endif /* CONFIG_COMPAT */
466
467 static struct xt_target clusterip_tgt __read_mostly = {
468         .name           = "CLUSTERIP",
469         .family         = AF_INET,
470         .target         = target,
471         .checkentry     = checkentry,
472         .destroy        = destroy,
473         .targetsize     = sizeof(struct ipt_clusterip_tgt_info),
474 #ifdef CONFIG_COMPAT
475         .compatsize     = sizeof(struct compat_ipt_clusterip_tgt_info),
476 #endif /* CONFIG_COMPAT */
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 = arp_hdr(*pskb);
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 const 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 = xt_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         xt_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         xt_unregister_target(&clusterip_tgt);
767 }
768
769 module_init(ipt_clusterip_init);
770 module_exit(ipt_clusterip_fini);