]> asedeno.scripts.mit.edu Git - linux.git/blob - net/ipv4/netfilter/ipt_CLUSTERIP.c
PM / QoS: Remove global notifiers
[linux.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 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
13 #include <linux/module.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/slab.h>
19 #include <linux/ip.h>
20 #include <linux/tcp.h>
21 #include <linux/udp.h>
22 #include <linux/icmp.h>
23 #include <linux/if_arp.h>
24 #include <linux/seq_file.h>
25 #include <linux/netfilter_arp.h>
26 #include <linux/netfilter/x_tables.h>
27 #include <linux/netfilter_ipv4/ip_tables.h>
28 #include <linux/netfilter_ipv4/ipt_CLUSTERIP.h>
29 #include <net/netfilter/nf_conntrack.h>
30 #include <net/net_namespace.h>
31 #include <net/netns/generic.h>
32 #include <net/checksum.h>
33 #include <net/ip.h>
34
35 #define CLUSTERIP_VERSION "0.8"
36
37 MODULE_LICENSE("GPL");
38 MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
39 MODULE_DESCRIPTION("Xtables: CLUSTERIP target");
40
41 struct clusterip_config {
42         struct list_head list;                  /* list of all configs */
43         atomic_t refcount;                      /* reference count */
44         atomic_t entries;                       /* number of entries/rules
45                                                  * referencing us */
46
47         __be32 clusterip;                       /* the IP address */
48         u_int8_t clustermac[ETH_ALEN];          /* the MAC address */
49         struct net_device *dev;                 /* device */
50         u_int16_t num_total_nodes;              /* total number of nodes */
51         unsigned long local_nodes;              /* node number array */
52
53 #ifdef CONFIG_PROC_FS
54         struct proc_dir_entry *pde;             /* proc dir entry */
55 #endif
56         enum clusterip_hashmode hash_mode;      /* which hashing mode */
57         u_int32_t hash_initval;                 /* hash initialization */
58         struct rcu_head rcu;
59 };
60
61 #ifdef CONFIG_PROC_FS
62 static const struct file_operations clusterip_proc_fops;
63 #endif
64
65 static unsigned int clusterip_net_id __read_mostly;
66
67 struct clusterip_net {
68         struct list_head configs;
69         /* lock protects the configs list */
70         spinlock_t lock;
71
72 #ifdef CONFIG_PROC_FS
73         struct proc_dir_entry *procdir;
74 #endif
75 };
76
77 static inline void
78 clusterip_config_get(struct clusterip_config *c)
79 {
80         atomic_inc(&c->refcount);
81 }
82
83
84 static void clusterip_config_rcu_free(struct rcu_head *head)
85 {
86         kfree(container_of(head, struct clusterip_config, rcu));
87 }
88
89 static inline void
90 clusterip_config_put(struct clusterip_config *c)
91 {
92         if (atomic_dec_and_test(&c->refcount))
93                 call_rcu_bh(&c->rcu, clusterip_config_rcu_free);
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         struct net *net = dev_net(c->dev);
103         struct clusterip_net *cn = net_generic(net, clusterip_net_id);
104
105         local_bh_disable();
106         if (atomic_dec_and_lock(&c->entries, &cn->lock)) {
107                 list_del_rcu(&c->list);
108                 spin_unlock(&cn->lock);
109                 local_bh_enable();
110
111                 dev_mc_del(c->dev, c->clustermac);
112                 dev_put(c->dev);
113
114                 /* In case anyone still accesses the file, the open/close
115                  * functions are also incrementing the refcount on their own,
116                  * so it's safe to remove the entry even if it's in use. */
117 #ifdef CONFIG_PROC_FS
118                 proc_remove(c->pde);
119 #endif
120                 return;
121         }
122         local_bh_enable();
123 }
124
125 static struct clusterip_config *
126 __clusterip_config_find(struct net *net, __be32 clusterip)
127 {
128         struct clusterip_config *c;
129         struct clusterip_net *cn = net_generic(net, clusterip_net_id);
130
131         list_for_each_entry_rcu(c, &cn->configs, list) {
132                 if (c->clusterip == clusterip)
133                         return c;
134         }
135
136         return NULL;
137 }
138
139 static inline struct clusterip_config *
140 clusterip_config_find_get(struct net *net, __be32 clusterip, int entry)
141 {
142         struct clusterip_config *c;
143
144         rcu_read_lock_bh();
145         c = __clusterip_config_find(net, clusterip);
146         if (c) {
147                 if (!c->pde || unlikely(!atomic_inc_not_zero(&c->refcount)))
148                         c = NULL;
149                 else if (entry)
150                         atomic_inc(&c->entries);
151         }
152         rcu_read_unlock_bh();
153
154         return c;
155 }
156
157 static void
158 clusterip_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 static struct clusterip_config *
168 clusterip_config_init(const struct ipt_clusterip_tgt_info *i, __be32 ip,
169                       struct net_device *dev)
170 {
171         struct net *net = dev_net(dev);
172         struct clusterip_config *c;
173         struct clusterip_net *cn = net_generic(net, clusterip_net_id);
174
175         c = kzalloc(sizeof(*c), GFP_ATOMIC);
176         if (!c)
177                 return ERR_PTR(-ENOMEM);
178
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;
183         clusterip_config_init_nodelist(c, i);
184         c->hash_mode = i->hash_mode;
185         c->hash_initval = i->hash_initval;
186         atomic_set(&c->refcount, 1);
187         atomic_set(&c->entries, 1);
188
189         spin_lock_bh(&cn->lock);
190         if (__clusterip_config_find(net, ip)) {
191                 spin_unlock_bh(&cn->lock);
192                 kfree(c);
193
194                 return ERR_PTR(-EBUSY);
195         }
196
197         list_add_rcu(&c->list, &cn->configs);
198         spin_unlock_bh(&cn->lock);
199
200 #ifdef CONFIG_PROC_FS
201         {
202                 char buffer[16];
203
204                 /* create proc dir entry */
205                 sprintf(buffer, "%pI4", &ip);
206                 c->pde = proc_create_data(buffer, S_IWUSR|S_IRUSR,
207                                           cn->procdir,
208                                           &clusterip_proc_fops, c);
209                 if (!c->pde) {
210                         spin_lock_bh(&cn->lock);
211                         list_del_rcu(&c->list);
212                         spin_unlock_bh(&cn->lock);
213                         kfree(c);
214
215                         return ERR_PTR(-ENOMEM);
216                 }
217         }
218 #endif
219
220         return c;
221 }
222
223 #ifdef CONFIG_PROC_FS
224 static int
225 clusterip_add_node(struct clusterip_config *c, u_int16_t nodenum)
226 {
227
228         if (nodenum == 0 ||
229             nodenum > c->num_total_nodes)
230                 return 1;
231
232         /* check if we already have this number in our bitfield */
233         if (test_and_set_bit(nodenum - 1, &c->local_nodes))
234                 return 1;
235
236         return 0;
237 }
238
239 static bool
240 clusterip_del_node(struct clusterip_config *c, u_int16_t nodenum)
241 {
242         if (nodenum == 0 ||
243             nodenum > c->num_total_nodes)
244                 return true;
245
246         if (test_and_clear_bit(nodenum - 1, &c->local_nodes))
247                 return false;
248
249         return true;
250 }
251 #endif
252
253 static inline u_int32_t
254 clusterip_hashfn(const struct sk_buff *skb,
255                  const struct clusterip_config *config)
256 {
257         const struct iphdr *iph = ip_hdr(skb);
258         unsigned long hashval;
259         u_int16_t sport = 0, dport = 0;
260         int poff;
261
262         poff = proto_ports_offset(iph->protocol);
263         if (poff >= 0) {
264                 const u_int16_t *ports;
265                 u16 _ports[2];
266
267                 ports = skb_header_pointer(skb, iph->ihl * 4 + poff, 4, _ports);
268                 if (ports) {
269                         sport = ports[0];
270                         dport = ports[1];
271                 }
272         } else {
273                 net_info_ratelimited("unknown protocol %u\n", iph->protocol);
274         }
275
276         switch (config->hash_mode) {
277         case CLUSTERIP_HASHMODE_SIP:
278                 hashval = jhash_1word(ntohl(iph->saddr),
279                                       config->hash_initval);
280                 break;
281         case CLUSTERIP_HASHMODE_SIP_SPT:
282                 hashval = jhash_2words(ntohl(iph->saddr), sport,
283                                        config->hash_initval);
284                 break;
285         case CLUSTERIP_HASHMODE_SIP_SPT_DPT:
286                 hashval = jhash_3words(ntohl(iph->saddr), sport, dport,
287                                        config->hash_initval);
288                 break;
289         default:
290                 /* to make gcc happy */
291                 hashval = 0;
292                 /* This cannot happen, unless the check function wasn't called
293                  * at rule load time */
294                 pr_info("unknown mode %u\n", config->hash_mode);
295                 BUG();
296                 break;
297         }
298
299         /* node numbers are 1..n, not 0..n */
300         return reciprocal_scale(hashval, config->num_total_nodes) + 1;
301 }
302
303 static inline int
304 clusterip_responsible(const struct clusterip_config *config, u_int32_t hash)
305 {
306         return test_bit(hash - 1, &config->local_nodes);
307 }
308
309 /***********************************************************************
310  * IPTABLES TARGET
311  ***********************************************************************/
312
313 static unsigned int
314 clusterip_tg(struct sk_buff *skb, const struct xt_action_param *par)
315 {
316         const struct ipt_clusterip_tgt_info *cipinfo = par->targinfo;
317         struct nf_conn *ct;
318         enum ip_conntrack_info ctinfo;
319         u_int32_t hash;
320
321         /* don't need to clusterip_config_get() here, since refcount
322          * is only decremented by destroy() - and ip_tables guarantees
323          * that the ->target() function isn't called after ->destroy() */
324
325         ct = nf_ct_get(skb, &ctinfo);
326         if (ct == NULL)
327                 return NF_DROP;
328
329         /* special case: ICMP error handling. conntrack distinguishes between
330          * error messages (RELATED) and information requests (see below) */
331         if (ip_hdr(skb)->protocol == IPPROTO_ICMP &&
332             (ctinfo == IP_CT_RELATED ||
333              ctinfo == IP_CT_RELATED_REPLY))
334                 return XT_CONTINUE;
335
336         /* ip_conntrack_icmp guarantees us that we only have ICMP_ECHO,
337          * TIMESTAMP, INFO_REQUEST or ADDRESS type icmp packets from here
338          * on, which all have an ID field [relevant for hashing]. */
339
340         hash = clusterip_hashfn(skb, cipinfo->config);
341
342         switch (ctinfo) {
343         case IP_CT_NEW:
344                 ct->mark = hash;
345                 break;
346         case IP_CT_RELATED:
347         case IP_CT_RELATED_REPLY:
348                 /* FIXME: we don't handle expectations at the moment.
349                  * They can arrive on a different node than
350                  * the master connection (e.g. FTP passive mode) */
351         case IP_CT_ESTABLISHED:
352         case IP_CT_ESTABLISHED_REPLY:
353                 break;
354         default:                        /* Prevent gcc warnings */
355                 break;
356         }
357
358 #ifdef DEBUG
359         nf_ct_dump_tuple_ip(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple);
360 #endif
361         pr_debug("hash=%u ct_hash=%u ", hash, ct->mark);
362         if (!clusterip_responsible(cipinfo->config, hash)) {
363                 pr_debug("not responsible\n");
364                 return NF_DROP;
365         }
366         pr_debug("responsible\n");
367
368         /* despite being received via linklayer multicast, this is
369          * actually a unicast IP packet. TCP doesn't like PACKET_MULTICAST */
370         skb->pkt_type = PACKET_HOST;
371
372         return XT_CONTINUE;
373 }
374
375 static int clusterip_tg_check(const struct xt_tgchk_param *par)
376 {
377         struct ipt_clusterip_tgt_info *cipinfo = par->targinfo;
378         const struct ipt_entry *e = par->entryinfo;
379         struct clusterip_config *config;
380         int ret;
381
382         if (par->nft_compat) {
383                 pr_err("cannot use CLUSTERIP target from nftables compat\n");
384                 return -EOPNOTSUPP;
385         }
386
387         if (cipinfo->hash_mode != CLUSTERIP_HASHMODE_SIP &&
388             cipinfo->hash_mode != CLUSTERIP_HASHMODE_SIP_SPT &&
389             cipinfo->hash_mode != CLUSTERIP_HASHMODE_SIP_SPT_DPT) {
390                 pr_info("unknown mode %u\n", cipinfo->hash_mode);
391                 return -EINVAL;
392
393         }
394         if (e->ip.dmsk.s_addr != htonl(0xffffffff) ||
395             e->ip.dst.s_addr == 0) {
396                 pr_info("Please specify destination IP\n");
397                 return -EINVAL;
398         }
399
400         /* FIXME: further sanity checks */
401
402         config = clusterip_config_find_get(par->net, e->ip.dst.s_addr, 1);
403         if (!config) {
404                 if (!(cipinfo->flags & CLUSTERIP_FLAG_NEW)) {
405                         pr_info("no config found for %pI4, need 'new'\n",
406                                 &e->ip.dst.s_addr);
407                         return -EINVAL;
408                 } else {
409                         struct net_device *dev;
410
411                         if (e->ip.iniface[0] == '\0') {
412                                 pr_info("Please specify an interface name\n");
413                                 return -EINVAL;
414                         }
415
416                         dev = dev_get_by_name(par->net, e->ip.iniface);
417                         if (!dev) {
418                                 pr_info("no such interface %s\n",
419                                         e->ip.iniface);
420                                 return -ENOENT;
421                         }
422
423                         config = clusterip_config_init(cipinfo,
424                                                         e->ip.dst.s_addr, dev);
425                         if (IS_ERR(config)) {
426                                 dev_put(dev);
427                                 return PTR_ERR(config);
428                         }
429                         dev_mc_add(config->dev, config->clustermac);
430                 }
431         }
432         cipinfo->config = config;
433
434         ret = nf_ct_netns_get(par->net, par->family);
435         if (ret < 0)
436                 pr_info("cannot load conntrack support for proto=%u\n",
437                         par->family);
438
439         if (!par->net->xt.clusterip_deprecated_warning) {
440                 pr_info("ipt_CLUSTERIP is deprecated and it will removed soon, "
441                         "use xt_cluster instead\n");
442                 par->net->xt.clusterip_deprecated_warning = true;
443         }
444
445         return ret;
446 }
447
448 /* drop reference count of cluster config when rule is deleted */
449 static void clusterip_tg_destroy(const struct xt_tgdtor_param *par)
450 {
451         const struct ipt_clusterip_tgt_info *cipinfo = par->targinfo;
452
453         /* if no more entries are referencing the config, remove it
454          * from the list and destroy the proc entry */
455         clusterip_config_entry_put(cipinfo->config);
456
457         clusterip_config_put(cipinfo->config);
458
459         nf_ct_netns_get(par->net, par->family);
460 }
461
462 #ifdef CONFIG_COMPAT
463 struct compat_ipt_clusterip_tgt_info
464 {
465         u_int32_t       flags;
466         u_int8_t        clustermac[6];
467         u_int16_t       num_total_nodes;
468         u_int16_t       num_local_nodes;
469         u_int16_t       local_nodes[CLUSTERIP_MAX_NODES];
470         u_int32_t       hash_mode;
471         u_int32_t       hash_initval;
472         compat_uptr_t   config;
473 };
474 #endif /* CONFIG_COMPAT */
475
476 static struct xt_target clusterip_tg_reg __read_mostly = {
477         .name           = "CLUSTERIP",
478         .family         = NFPROTO_IPV4,
479         .target         = clusterip_tg,
480         .checkentry     = clusterip_tg_check,
481         .destroy        = clusterip_tg_destroy,
482         .targetsize     = sizeof(struct ipt_clusterip_tgt_info),
483 #ifdef CONFIG_COMPAT
484         .compatsize     = sizeof(struct compat_ipt_clusterip_tgt_info),
485 #endif /* CONFIG_COMPAT */
486         .me             = THIS_MODULE
487 };
488
489
490 /***********************************************************************
491  * ARP MANGLING CODE
492  ***********************************************************************/
493
494 /* hardcoded for 48bit ethernet and 32bit ipv4 addresses */
495 struct arp_payload {
496         u_int8_t src_hw[ETH_ALEN];
497         __be32 src_ip;
498         u_int8_t dst_hw[ETH_ALEN];
499         __be32 dst_ip;
500 } __packed;
501
502 #ifdef DEBUG
503 static void arp_print(struct arp_payload *payload)
504 {
505 #define HBUFFERLEN 30
506         char hbuffer[HBUFFERLEN];
507         int j, k;
508
509         for (k = 0, j = 0; k < HBUFFERLEN - 3 && j < ETH_ALEN; j++) {
510                 hbuffer[k++] = hex_asc_hi(payload->src_hw[j]);
511                 hbuffer[k++] = hex_asc_lo(payload->src_hw[j]);
512                 hbuffer[k++] = ':';
513         }
514         hbuffer[--k] = '\0';
515
516         pr_debug("src %pI4@%s, dst %pI4\n",
517                  &payload->src_ip, hbuffer, &payload->dst_ip);
518 }
519 #endif
520
521 static unsigned int
522 arp_mangle(void *priv,
523            struct sk_buff *skb,
524            const struct nf_hook_state *state)
525 {
526         struct arphdr *arp = arp_hdr(skb);
527         struct arp_payload *payload;
528         struct clusterip_config *c;
529         struct net *net = state->net;
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(net, 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 != state->out) {
555                 pr_debug("not mangling arp reply on different "
556                          "interface: cip'%s'-skb'%s'\n",
557                          c->dev->name, state->out->name);
558                 clusterip_config_put(c);
559                 return NF_ACCEPT;
560         }
561
562         /* mangle reply hardware address */
563         memcpy(payload->src_hw, c->clustermac, arp->ar_hln);
564
565 #ifdef DEBUG
566         pr_debug("mangled arp reply: ");
567         arp_print(payload);
568 #endif
569
570         clusterip_config_put(c);
571
572         return NF_ACCEPT;
573 }
574
575 static struct nf_hook_ops cip_arp_ops __read_mostly = {
576         .hook = arp_mangle,
577         .pf = NFPROTO_ARP,
578         .hooknum = NF_ARP_OUT,
579         .priority = -1
580 };
581
582 /***********************************************************************
583  * PROC DIR HANDLING
584  ***********************************************************************/
585
586 #ifdef CONFIG_PROC_FS
587
588 struct clusterip_seq_position {
589         unsigned int pos;       /* position */
590         unsigned int weight;    /* number of bits set == size */
591         unsigned int bit;       /* current bit */
592         unsigned long val;      /* current value */
593 };
594
595 static void *clusterip_seq_start(struct seq_file *s, loff_t *pos)
596 {
597         struct clusterip_config *c = s->private;
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 = 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         if (!IS_ERR(v))
638                 kfree(v);
639 }
640
641 static int clusterip_seq_show(struct seq_file *s, void *v)
642 {
643         struct clusterip_seq_position *idx = v;
644
645         if (idx->pos != 0)
646                 seq_putc(s, ',');
647
648         seq_printf(s, "%u", idx->bit);
649
650         if (idx->pos == idx->weight - 1)
651                 seq_putc(s, '\n');
652
653         return 0;
654 }
655
656 static const struct seq_operations clusterip_seq_ops = {
657         .start  = clusterip_seq_start,
658         .next   = clusterip_seq_next,
659         .stop   = clusterip_seq_stop,
660         .show   = clusterip_seq_show,
661 };
662
663 static int clusterip_proc_open(struct inode *inode, struct file *file)
664 {
665         int ret = seq_open(file, &clusterip_seq_ops);
666
667         if (!ret) {
668                 struct seq_file *sf = file->private_data;
669                 struct clusterip_config *c = PDE_DATA(inode);
670
671                 sf->private = c;
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 clusterip_config *c = PDE_DATA(inode);
682         int ret;
683
684         ret = seq_release(inode, file);
685
686         if (!ret)
687                 clusterip_config_put(c);
688
689         return ret;
690 }
691
692 static ssize_t clusterip_proc_write(struct file *file, const char __user *input,
693                                 size_t size, loff_t *ofs)
694 {
695         struct clusterip_config *c = PDE_DATA(file_inode(file));
696 #define PROC_WRITELEN   10
697         char buffer[PROC_WRITELEN+1];
698         unsigned long nodenum;
699         int rc;
700
701         if (size > PROC_WRITELEN)
702                 return -EIO;
703         if (copy_from_user(buffer, input, size))
704                 return -EFAULT;
705         buffer[size] = 0;
706
707         if (*buffer == '+') {
708                 rc = kstrtoul(buffer+1, 10, &nodenum);
709                 if (rc)
710                         return rc;
711                 if (clusterip_add_node(c, nodenum))
712                         return -ENOMEM;
713         } else if (*buffer == '-') {
714                 rc = kstrtoul(buffer+1, 10, &nodenum);
715                 if (rc)
716                         return rc;
717                 if (clusterip_del_node(c, nodenum))
718                         return -ENOENT;
719         } else
720                 return -EIO;
721
722         return size;
723 }
724
725 static const struct file_operations clusterip_proc_fops = {
726         .owner   = THIS_MODULE,
727         .open    = clusterip_proc_open,
728         .read    = seq_read,
729         .write   = clusterip_proc_write,
730         .llseek  = seq_lseek,
731         .release = clusterip_proc_release,
732 };
733
734 #endif /* CONFIG_PROC_FS */
735
736 static int clusterip_net_init(struct net *net)
737 {
738         struct clusterip_net *cn = net_generic(net, clusterip_net_id);
739
740         INIT_LIST_HEAD(&cn->configs);
741
742         spin_lock_init(&cn->lock);
743
744 #ifdef CONFIG_PROC_FS
745         cn->procdir = proc_mkdir("ipt_CLUSTERIP", net->proc_net);
746         if (!cn->procdir) {
747                 pr_err("Unable to proc dir entry\n");
748                 return -ENOMEM;
749         }
750 #endif /* CONFIG_PROC_FS */
751
752         return 0;
753 }
754
755 static void clusterip_net_exit(struct net *net)
756 {
757 #ifdef CONFIG_PROC_FS
758         struct clusterip_net *cn = net_generic(net, clusterip_net_id);
759         proc_remove(cn->procdir);
760 #endif
761 }
762
763 static struct pernet_operations clusterip_net_ops = {
764         .init = clusterip_net_init,
765         .exit = clusterip_net_exit,
766         .id   = &clusterip_net_id,
767         .size = sizeof(struct clusterip_net),
768 };
769
770 static int __init clusterip_tg_init(void)
771 {
772         int ret;
773
774         ret = register_pernet_subsys(&clusterip_net_ops);
775         if (ret < 0)
776                 return ret;
777
778         ret = xt_register_target(&clusterip_tg_reg);
779         if (ret < 0)
780                 goto cleanup_subsys;
781
782         ret = nf_register_hook(&cip_arp_ops);
783         if (ret < 0)
784                 goto cleanup_target;
785
786         pr_info("ClusterIP Version %s loaded successfully\n",
787                 CLUSTERIP_VERSION);
788
789         return 0;
790
791 cleanup_target:
792         xt_unregister_target(&clusterip_tg_reg);
793 cleanup_subsys:
794         unregister_pernet_subsys(&clusterip_net_ops);
795         return ret;
796 }
797
798 static void __exit clusterip_tg_exit(void)
799 {
800         pr_info("ClusterIP Version %s unloading\n", CLUSTERIP_VERSION);
801
802         nf_unregister_hook(&cip_arp_ops);
803         xt_unregister_target(&clusterip_tg_reg);
804         unregister_pernet_subsys(&clusterip_net_ops);
805
806         /* Wait for completion of call_rcu_bh()'s (clusterip_config_rcu_free) */
807         rcu_barrier_bh();
808 }
809
810 module_init(clusterip_tg_init);
811 module_exit(clusterip_tg_exit);