]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - net/ipv4/netfilter/ipt_CLUSTERIP.c
netfilter: x_tables: avoid out-of-bounds reads in xt_request_find_{match|target}
[mirror_ubuntu-bionic-kernel.git] / net / ipv4 / netfilter / ipt_CLUSTERIP.c
CommitLineData
e905a9ed 1/* Cluster IP hashmark target
1da177e4
LT
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 */
ff67e4e4 12#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
1da177e4 13#include <linux/module.h>
1da177e4
LT
14#include <linux/proc_fs.h>
15#include <linux/jhash.h>
136e92bb 16#include <linux/bitops.h>
1da177e4 17#include <linux/skbuff.h>
5a0e3ad6 18#include <linux/slab.h>
1da177e4
LT
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>
1da177e4 24#include <linux/seq_file.h>
b54ab92b 25#include <linux/refcount.h>
1da177e4 26#include <linux/netfilter_arp.h>
6709dbbb 27#include <linux/netfilter/x_tables.h>
1da177e4
LT
28#include <linux/netfilter_ipv4/ip_tables.h>
29#include <linux/netfilter_ipv4/ipt_CLUSTERIP.h>
587aa641 30#include <net/netfilter/nf_conntrack.h>
457c4cbc 31#include <net/net_namespace.h>
ce4ff76c 32#include <net/netns/generic.h>
587aa641 33#include <net/checksum.h>
3d04ebb6 34#include <net/ip.h>
1da177e4 35
136e92bb 36#define CLUSTERIP_VERSION "0.8"
1da177e4 37
1da177e4
LT
38MODULE_LICENSE("GPL");
39MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
2ae15b64 40MODULE_DESCRIPTION("Xtables: CLUSTERIP target");
1da177e4
LT
41
42struct clusterip_config {
43 struct list_head list; /* list of all configs */
b54ab92b
RE
44 refcount_t refcount; /* reference count */
45 refcount_t entries; /* number of entries/rules
44513624 46 * referencing us */
1da177e4 47
6a19d614 48 __be32 clusterip; /* the IP address */
1da177e4 49 u_int8_t clustermac[ETH_ALEN]; /* the MAC address */
202f59af 50 int ifindex; /* device ifindex */
1da177e4 51 u_int16_t num_total_nodes; /* total number of nodes */
136e92bb 52 unsigned long local_nodes; /* node number array */
1da177e4
LT
53
54#ifdef CONFIG_PROC_FS
55 struct proc_dir_entry *pde; /* proc dir entry */
56#endif
57 enum clusterip_hashmode hash_mode; /* which hashing mode */
58 u_int32_t hash_initval; /* hash initialization */
d73f33b1 59 struct rcu_head rcu;
202f59af
XL
60
61 char ifname[IFNAMSIZ]; /* device ifname */
62 struct notifier_block notifier; /* refresh c->ifindex in it */
1da177e4
LT
63};
64
1da177e4 65#ifdef CONFIG_PROC_FS
9a32144e 66static const struct file_operations clusterip_proc_fops;
1da177e4 67#endif
1da177e4 68
c7d03a00 69static unsigned int clusterip_net_id __read_mostly;
ce4ff76c
G
70
71struct clusterip_net {
26a89e43 72 struct list_head configs;
f1e8077f
G
73 /* lock protects the configs list */
74 spinlock_t lock;
1da177e4
LT
75
76#ifdef CONFIG_PROC_FS
ce4ff76c 77 struct proc_dir_entry *procdir;
1da177e4 78#endif
ce4ff76c 79};
1da177e4
LT
80
81static inline void
44513624
KK
82clusterip_config_get(struct clusterip_config *c)
83{
b54ab92b 84 refcount_inc(&c->refcount);
1da177e4
LT
85}
86
d73f33b1
ED
87
88static void clusterip_config_rcu_free(struct rcu_head *head)
89{
90 kfree(container_of(head, struct clusterip_config, rcu));
91}
92
1da177e4 93static inline void
44513624
KK
94clusterip_config_put(struct clusterip_config *c)
95{
b54ab92b 96 if (refcount_dec_and_test(&c->refcount))
d73f33b1 97 call_rcu_bh(&c->rcu, clusterip_config_rcu_free);
44513624
KK
98}
99
44513624
KK
100/* decrease the count of entries using/referencing this config. If last
101 * entry(rule) is removed, remove the config from lists, but don't free it
102 * yet, since proc-files could still be holding references */
103static inline void
202f59af 104clusterip_config_entry_put(struct net *net, struct clusterip_config *c)
44513624 105{
d86946d2 106 struct clusterip_net *cn = net_generic(net, clusterip_net_id);
f1e8077f 107
d73f33b1 108 local_bh_disable();
b54ab92b 109 if (refcount_dec_and_lock(&c->entries, &cn->lock)) {
d73f33b1 110 list_del_rcu(&c->list);
f1e8077f 111 spin_unlock(&cn->lock);
d73f33b1 112 local_bh_enable();
44513624 113
202f59af 114 unregister_netdevice_notifier(&c->notifier);
44513624
KK
115
116 /* In case anyone still accesses the file, the open/close
117 * functions are also incrementing the refcount on their own,
118 * so it's safe to remove the entry even if it's in use. */
119#ifdef CONFIG_PROC_FS
3840538a
SD
120 if (cn->procdir)
121 proc_remove(c->pde);
44513624 122#endif
4dee9597 123 return;
1da177e4 124 }
d73f33b1 125 local_bh_enable();
1da177e4
LT
126}
127
1da177e4 128static struct clusterip_config *
b5ef0f85 129__clusterip_config_find(struct net *net, __be32 clusterip)
1da177e4 130{
4c610979 131 struct clusterip_config *c;
b5ef0f85 132 struct clusterip_net *cn = net_generic(net, clusterip_net_id);
1da177e4 133
26a89e43 134 list_for_each_entry_rcu(c, &cn->configs, list) {
7c4e36bc 135 if (c->clusterip == clusterip)
1da177e4 136 return c;
1da177e4
LT
137 }
138
139 return NULL;
140}
141
142static inline struct clusterip_config *
b5ef0f85 143clusterip_config_find_get(struct net *net, __be32 clusterip, int entry)
1da177e4
LT
144{
145 struct clusterip_config *c;
146
d73f33b1 147 rcu_read_lock_bh();
b5ef0f85 148 c = __clusterip_config_find(net, clusterip);
d73f33b1 149 if (c) {
3fd0b634
AB
150#ifdef CONFIG_PROC_FS
151 if (!c->pde)
152 c = NULL;
153 else
154#endif
b54ab92b 155 if (unlikely(!refcount_inc_not_zero(&c->refcount)))
d73f33b1
ED
156 c = NULL;
157 else if (entry)
b54ab92b 158 refcount_inc(&c->entries);
1da177e4 159 }
d73f33b1 160 rcu_read_unlock_bh();
1da177e4
LT
161
162 return c;
163}
164
136e92bb
KK
165static void
166clusterip_config_init_nodelist(struct clusterip_config *c,
167 const struct ipt_clusterip_tgt_info *i)
168{
169 int n;
170
7c4e36bc 171 for (n = 0; n < i->num_local_nodes; n++)
136e92bb 172 set_bit(i->local_nodes[n] - 1, &c->local_nodes);
136e92bb
KK
173}
174
202f59af
XL
175static int
176clusterip_netdev_event(struct notifier_block *this, unsigned long event,
177 void *ptr)
1da177e4 178{
202f59af 179 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
1da177e4 180 struct clusterip_config *c;
202f59af
XL
181
182 c = container_of(this, struct clusterip_config, notifier);
183 switch (event) {
184 case NETDEV_REGISTER:
185 if (!strcmp(dev->name, c->ifname)) {
186 c->ifindex = dev->ifindex;
187 dev_mc_add(dev, c->clustermac);
188 }
189 break;
190 case NETDEV_UNREGISTER:
191 if (dev->ifindex == c->ifindex) {
192 dev_mc_del(dev, c->clustermac);
193 c->ifindex = -1;
194 }
195 break;
196 case NETDEV_CHANGENAME:
197 if (!strcmp(dev->name, c->ifname)) {
198 c->ifindex = dev->ifindex;
199 dev_mc_add(dev, c->clustermac);
200 } else if (dev->ifindex == c->ifindex) {
201 dev_mc_del(dev, c->clustermac);
202 c->ifindex = -1;
203 }
204 break;
205 }
206
207 return NOTIFY_DONE;
208}
209
210static struct clusterip_config *
211clusterip_config_init(struct net *net, const struct ipt_clusterip_tgt_info *i,
212 __be32 ip, const char *iniface)
213{
6c5d5cfb 214 struct clusterip_net *cn = net_generic(net, clusterip_net_id);
202f59af
XL
215 struct clusterip_config *c;
216 int err;
1da177e4 217
0da974f4 218 c = kzalloc(sizeof(*c), GFP_ATOMIC);
1da177e4 219 if (!c)
6c5d5cfb 220 return ERR_PTR(-ENOMEM);
1da177e4 221
202f59af
XL
222 strcpy(c->ifname, iniface);
223 c->ifindex = -1;
1da177e4
LT
224 c->clusterip = ip;
225 memcpy(&c->clustermac, &i->clustermac, ETH_ALEN);
226 c->num_total_nodes = i->num_total_nodes;
136e92bb 227 clusterip_config_init_nodelist(c, i);
1da177e4
LT
228 c->hash_mode = i->hash_mode;
229 c->hash_initval = i->hash_initval;
b54ab92b
RE
230 refcount_set(&c->refcount, 1);
231 refcount_set(&c->entries, 1);
1da177e4 232
6c5d5cfb
XL
233 spin_lock_bh(&cn->lock);
234 if (__clusterip_config_find(net, ip)) {
235 spin_unlock_bh(&cn->lock);
236 kfree(c);
237
238 return ERR_PTR(-EBUSY);
239 }
240
241 list_add_rcu(&c->list, &cn->configs);
242 spin_unlock_bh(&cn->lock);
243
1da177e4 244#ifdef CONFIG_PROC_FS
76592584
PM
245 {
246 char buffer[16];
247
248 /* create proc dir entry */
cffee385 249 sprintf(buffer, "%pI4", &ip);
6e79d85d 250 c->pde = proc_create_data(buffer, S_IWUSR|S_IRUSR,
ce4ff76c 251 cn->procdir,
6e79d85d 252 &clusterip_proc_fops, c);
76592584 253 if (!c->pde) {
202f59af
XL
254 err = -ENOMEM;
255 goto err;
76592584 256 }
1da177e4 257 }
1da177e4
LT
258#endif
259
202f59af
XL
260 c->notifier.notifier_call = clusterip_netdev_event;
261 err = register_netdevice_notifier(&c->notifier);
262 if (!err)
263 return c;
264
265#ifdef CONFIG_PROC_FS
266 proc_remove(c->pde);
267err:
268#endif
269 spin_lock_bh(&cn->lock);
270 list_del_rcu(&c->list);
271 spin_unlock_bh(&cn->lock);
272 kfree(c);
273
274 return ERR_PTR(err);
1da177e4
LT
275}
276
76592584 277#ifdef CONFIG_PROC_FS
1da177e4
LT
278static int
279clusterip_add_node(struct clusterip_config *c, u_int16_t nodenum)
280{
1da177e4 281
136e92bb
KK
282 if (nodenum == 0 ||
283 nodenum > c->num_total_nodes)
1da177e4 284 return 1;
1da177e4 285
136e92bb
KK
286 /* check if we already have this number in our bitfield */
287 if (test_and_set_bit(nodenum - 1, &c->local_nodes))
288 return 1;
1da177e4 289
1da177e4
LT
290 return 0;
291}
292
e1931b78 293static bool
1da177e4
LT
294clusterip_del_node(struct clusterip_config *c, u_int16_t nodenum)
295{
136e92bb
KK
296 if (nodenum == 0 ||
297 nodenum > c->num_total_nodes)
e1931b78 298 return true;
e905a9ed 299
136e92bb 300 if (test_and_clear_bit(nodenum - 1, &c->local_nodes))
e1931b78 301 return false;
1da177e4 302
e1931b78 303 return true;
1da177e4 304}
76592584 305#endif
1da177e4
LT
306
307static inline u_int32_t
a47362a2
JE
308clusterip_hashfn(const struct sk_buff *skb,
309 const struct clusterip_config *config)
1da177e4 310{
a47362a2 311 const struct iphdr *iph = ip_hdr(skb);
1da177e4 312 unsigned long hashval;
3d04ebb6
CG
313 u_int16_t sport = 0, dport = 0;
314 int poff;
315
316 poff = proto_ports_offset(iph->protocol);
317 if (poff >= 0) {
318 const u_int16_t *ports;
319 u16 _ports[2];
320
321 ports = skb_header_pointer(skb, iph->ihl * 4 + poff, 4, _ports);
322 if (ports) {
323 sport = ports[0];
324 dport = ports[1];
325 }
326 } else {
e87cc472 327 net_info_ratelimited("unknown protocol %u\n", iph->protocol);
1da177e4
LT
328 }
329
330 switch (config->hash_mode) {
331 case CLUSTERIP_HASHMODE_SIP:
332 hashval = jhash_1word(ntohl(iph->saddr),
333 config->hash_initval);
334 break;
335 case CLUSTERIP_HASHMODE_SIP_SPT:
e905a9ed 336 hashval = jhash_2words(ntohl(iph->saddr), sport,
1da177e4
LT
337 config->hash_initval);
338 break;
339 case CLUSTERIP_HASHMODE_SIP_SPT_DPT:
340 hashval = jhash_3words(ntohl(iph->saddr), sport, dport,
341 config->hash_initval);
342 break;
343 default:
344 /* to make gcc happy */
345 hashval = 0;
346 /* This cannot happen, unless the check function wasn't called
347 * at rule load time */
ff67e4e4 348 pr_info("unknown mode %u\n", config->hash_mode);
1da177e4
LT
349 BUG();
350 break;
351 }
352
353 /* node numbers are 1..n, not 0..n */
8fc54f68 354 return reciprocal_scale(hashval, config->num_total_nodes) + 1;
1da177e4
LT
355}
356
357static inline int
a47362a2 358clusterip_responsible(const struct clusterip_config *config, u_int32_t hash)
1da177e4 359{
136e92bb 360 return test_bit(hash - 1, &config->local_nodes);
1da177e4
LT
361}
362
e905a9ed
YH
363/***********************************************************************
364 * IPTABLES TARGET
1da177e4
LT
365 ***********************************************************************/
366
367static unsigned int
4b560b44 368clusterip_tg(struct sk_buff *skb, const struct xt_action_param *par)
1da177e4 369{
7eb35586 370 const struct ipt_clusterip_tgt_info *cipinfo = par->targinfo;
587aa641 371 struct nf_conn *ct;
1da177e4 372 enum ip_conntrack_info ctinfo;
587aa641 373 u_int32_t hash;
1da177e4
LT
374
375 /* don't need to clusterip_config_get() here, since refcount
376 * is only decremented by destroy() - and ip_tables guarantees
377 * that the ->target() function isn't called after ->destroy() */
378
3db05fea 379 ct = nf_ct_get(skb, &ctinfo);
94d117a1 380 if (ct == NULL)
1da177e4 381 return NF_DROP;
1da177e4
LT
382
383 /* special case: ICMP error handling. conntrack distinguishes between
384 * error messages (RELATED) and information requests (see below) */
3666ed1c
JP
385 if (ip_hdr(skb)->protocol == IPPROTO_ICMP &&
386 (ctinfo == IP_CT_RELATED ||
fb048833 387 ctinfo == IP_CT_RELATED_REPLY))
6709dbbb 388 return XT_CONTINUE;
1da177e4 389
e905a9ed 390 /* ip_conntrack_icmp guarantees us that we only have ICMP_ECHO,
1da177e4
LT
391 * TIMESTAMP, INFO_REQUEST or ADDRESS type icmp packets from here
392 * on, which all have an ID field [relevant for hashing]. */
393
3db05fea 394 hash = clusterip_hashfn(skb, cipinfo->config);
1da177e4
LT
395
396 switch (ctinfo) {
181b1e9c
JP
397 case IP_CT_NEW:
398 ct->mark = hash;
399 break;
400 case IP_CT_RELATED:
401 case IP_CT_RELATED_REPLY:
402 /* FIXME: we don't handle expectations at the moment.
403 * They can arrive on a different node than
404 * the master connection (e.g. FTP passive mode) */
405 case IP_CT_ESTABLISHED:
406 case IP_CT_ESTABLISHED_REPLY:
407 break;
408 default: /* Prevent gcc warnings */
409 break;
1da177e4
LT
410 }
411
0d53778e 412#ifdef DEBUG
3c9fba65 413 nf_ct_dump_tuple_ip(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple);
1da177e4 414#endif
0d53778e 415 pr_debug("hash=%u ct_hash=%u ", hash, ct->mark);
1da177e4 416 if (!clusterip_responsible(cipinfo->config, hash)) {
0d53778e 417 pr_debug("not responsible\n");
1da177e4
LT
418 return NF_DROP;
419 }
0d53778e 420 pr_debug("responsible\n");
1da177e4
LT
421
422 /* despite being received via linklayer multicast, this is
423 * actually a unicast IP packet. TCP doesn't like PACKET_MULTICAST */
3db05fea 424 skb->pkt_type = PACKET_HOST;
1da177e4 425
6709dbbb 426 return XT_CONTINUE;
1da177e4
LT
427}
428
135367b8 429static int clusterip_tg_check(const struct xt_tgchk_param *par)
1da177e4 430{
af5d6dc2
JE
431 struct ipt_clusterip_tgt_info *cipinfo = par->targinfo;
432 const struct ipt_entry *e = par->entryinfo;
1da177e4 433 struct clusterip_config *config;
4a5a5c73 434 int ret;
1da177e4 435
55917a21
PNA
436 if (par->nft_compat) {
437 pr_err("cannot use CLUSTERIP target from nftables compat\n");
438 return -EOPNOTSUPP;
439 }
440
1da177e4
LT
441 if (cipinfo->hash_mode != CLUSTERIP_HASHMODE_SIP &&
442 cipinfo->hash_mode != CLUSTERIP_HASHMODE_SIP_SPT &&
443 cipinfo->hash_mode != CLUSTERIP_HASHMODE_SIP_SPT_DPT) {
ff67e4e4 444 pr_info("unknown mode %u\n", cipinfo->hash_mode);
d6b00a53 445 return -EINVAL;
1da177e4
LT
446
447 }
3666ed1c
JP
448 if (e->ip.dmsk.s_addr != htonl(0xffffffff) ||
449 e->ip.dst.s_addr == 0) {
ff67e4e4 450 pr_info("Please specify destination IP\n");
d6b00a53 451 return -EINVAL;
1da177e4
LT
452 }
453
454 /* FIXME: further sanity checks */
455
d86946d2 456 config = clusterip_config_find_get(par->net, e->ip.dst.s_addr, 1);
d3c3f424 457 if (!config) {
1da177e4 458 if (!(cipinfo->flags & CLUSTERIP_FLAG_NEW)) {
ff67e4e4
JE
459 pr_info("no config found for %pI4, need 'new'\n",
460 &e->ip.dst.s_addr);
d6b00a53 461 return -EINVAL;
1da177e4
LT
462 } else {
463 struct net_device *dev;
464
465 if (e->ip.iniface[0] == '\0') {
ff67e4e4 466 pr_info("Please specify an interface name\n");
d6b00a53 467 return -EINVAL;
1da177e4
LT
468 }
469
d86946d2 470 dev = dev_get_by_name(par->net, e->ip.iniface);
1da177e4 471 if (!dev) {
ff67e4e4
JE
472 pr_info("no such interface %s\n",
473 e->ip.iniface);
4a5a5c73 474 return -ENOENT;
1da177e4 475 }
202f59af 476 dev_put(dev);
1da177e4 477
202f59af
XL
478 config = clusterip_config_init(par->net, cipinfo,
479 e->ip.dst.s_addr,
480 e->ip.iniface);
481 if (IS_ERR(config))
6c5d5cfb 482 return PTR_ERR(config);
1da177e4
LT
483 }
484 }
d3c3f424 485 cipinfo->config = config;
1da177e4 486
ecb2421b 487 ret = nf_ct_netns_get(par->net, par->family);
f95c74e3 488 if (ret < 0)
ff67e4e4
JE
489 pr_info("cannot load conntrack support for proto=%u\n",
490 par->family);
43270b1b
PNA
491
492 if (!par->net->xt.clusterip_deprecated_warning) {
493 pr_info("ipt_CLUSTERIP is deprecated and it will removed soon, "
494 "use xt_cluster instead\n");
495 par->net->xt.clusterip_deprecated_warning = true;
496 }
497
f95c74e3 498 return ret;
1da177e4
LT
499}
500
501/* drop reference count of cluster config when rule is deleted */
a2df1648 502static void clusterip_tg_destroy(const struct xt_tgdtor_param *par)
1da177e4 503{
a2df1648 504 const struct ipt_clusterip_tgt_info *cipinfo = par->targinfo;
1da177e4 505
44513624
KK
506 /* if no more entries are referencing the config, remove it
507 * from the list and destroy the proc entry */
202f59af 508 clusterip_config_entry_put(par->net, cipinfo->config);
44513624 509
1da177e4 510 clusterip_config_put(cipinfo->config);
11078c37 511
fe50543c 512 nf_ct_netns_put(par->net, par->family);
1da177e4
LT
513}
514
d3c3f424
PM
515#ifdef CONFIG_COMPAT
516struct compat_ipt_clusterip_tgt_info
517{
518 u_int32_t flags;
519 u_int8_t clustermac[6];
520 u_int16_t num_total_nodes;
521 u_int16_t num_local_nodes;
522 u_int16_t local_nodes[CLUSTERIP_MAX_NODES];
523 u_int32_t hash_mode;
524 u_int32_t hash_initval;
525 compat_uptr_t config;
526};
527#endif /* CONFIG_COMPAT */
528
d3c5ee6d 529static struct xt_target clusterip_tg_reg __read_mostly = {
1d5cd909 530 .name = "CLUSTERIP",
ee999d8b 531 .family = NFPROTO_IPV4,
d3c5ee6d
JE
532 .target = clusterip_tg,
533 .checkentry = clusterip_tg_check,
534 .destroy = clusterip_tg_destroy,
d3c3f424 535 .targetsize = sizeof(struct ipt_clusterip_tgt_info),
ec231890 536 .usersize = offsetof(struct ipt_clusterip_tgt_info, config),
d3c3f424
PM
537#ifdef CONFIG_COMPAT
538 .compatsize = sizeof(struct compat_ipt_clusterip_tgt_info),
539#endif /* CONFIG_COMPAT */
1d5cd909 540 .me = THIS_MODULE
1da177e4
LT
541};
542
543
e905a9ed
YH
544/***********************************************************************
545 * ARP MANGLING CODE
1da177e4
LT
546 ***********************************************************************/
547
548/* hardcoded for 48bit ethernet and 32bit ipv4 addresses */
549struct arp_payload {
550 u_int8_t src_hw[ETH_ALEN];
6a19d614 551 __be32 src_ip;
1da177e4 552 u_int8_t dst_hw[ETH_ALEN];
6a19d614 553 __be32 dst_ip;
3f30fc15 554} __packed;
1da177e4 555
0d53778e 556#ifdef DEBUG
e905a9ed 557static void arp_print(struct arp_payload *payload)
1da177e4
LT
558{
559#define HBUFFERLEN 30
560 char hbuffer[HBUFFERLEN];
c8d71d08 561 int j, k;
1da177e4 562
c8d71d08 563 for (k = 0, j = 0; k < HBUFFERLEN - 3 && j < ETH_ALEN; j++) {
6a8341b6
HH
564 hbuffer[k++] = hex_asc_hi(payload->src_hw[j]);
565 hbuffer[k++] = hex_asc_lo(payload->src_hw[j]);
c8d71d08 566 hbuffer[k++] = ':';
1da177e4 567 }
c8d71d08 568 hbuffer[--k] = '\0';
1da177e4 569
ff67e4e4
JE
570 pr_debug("src %pI4@%s, dst %pI4\n",
571 &payload->src_ip, hbuffer, &payload->dst_ip);
1da177e4
LT
572}
573#endif
574
575static unsigned int
06198b34 576arp_mangle(void *priv,
3db05fea 577 struct sk_buff *skb,
238e54c9 578 const struct nf_hook_state *state)
1da177e4 579{
3db05fea 580 struct arphdr *arp = arp_hdr(skb);
1da177e4
LT
581 struct arp_payload *payload;
582 struct clusterip_config *c;
9dff2c96 583 struct net *net = state->net;
1da177e4
LT
584
585 /* we don't care about non-ethernet and non-ipv4 ARP */
3666ed1c
JP
586 if (arp->ar_hrd != htons(ARPHRD_ETHER) ||
587 arp->ar_pro != htons(ETH_P_IP) ||
588 arp->ar_pln != 4 || arp->ar_hln != ETH_ALEN)
1da177e4
LT
589 return NF_ACCEPT;
590
4095ebf1 591 /* we only want to mangle arp requests and replies */
3666ed1c
JP
592 if (arp->ar_op != htons(ARPOP_REPLY) &&
593 arp->ar_op != htons(ARPOP_REQUEST))
1da177e4
LT
594 return NF_ACCEPT;
595
596 payload = (void *)(arp+1);
597
e905a9ed 598 /* if there is no clusterip configuration for the arp reply's
1da177e4 599 * source ip, we don't want to mangle it */
d86946d2 600 c = clusterip_config_find_get(net, payload->src_ip, 0);
1da177e4
LT
601 if (!c)
602 return NF_ACCEPT;
603
e905a9ed 604 /* normally the linux kernel always replies to arp queries of
1da177e4
LT
605 * addresses on different interfacs. However, in the CLUSTERIP case
606 * this wouldn't work, since we didn't subscribe the mcast group on
607 * other interfaces */
202f59af
XL
608 if (c->ifindex != state->out->ifindex) {
609 pr_debug("not mangling arp reply on different interface: cip'%d'-skb'%d'\n",
610 c->ifindex, state->out->ifindex);
1da177e4
LT
611 clusterip_config_put(c);
612 return NF_ACCEPT;
613 }
614
615 /* mangle reply hardware address */
616 memcpy(payload->src_hw, c->clustermac, arp->ar_hln);
617
0d53778e 618#ifdef DEBUG
ff67e4e4 619 pr_debug("mangled arp reply: ");
1da177e4
LT
620 arp_print(payload);
621#endif
622
623 clusterip_config_put(c);
624
625 return NF_ACCEPT;
626}
627
591bb278 628static const struct nf_hook_ops cip_arp_ops = {
1da177e4 629 .hook = arp_mangle,
ee999d8b 630 .pf = NFPROTO_ARP,
1da177e4
LT
631 .hooknum = NF_ARP_OUT,
632 .priority = -1
633};
634
e905a9ed
YH
635/***********************************************************************
636 * PROC DIR HANDLING
1da177e4
LT
637 ***********************************************************************/
638
639#ifdef CONFIG_PROC_FS
640
136e92bb
KK
641struct clusterip_seq_position {
642 unsigned int pos; /* position */
643 unsigned int weight; /* number of bits set == size */
644 unsigned int bit; /* current bit */
645 unsigned long val; /* current value */
646};
647
1da177e4
LT
648static void *clusterip_seq_start(struct seq_file *s, loff_t *pos)
649{
47778147 650 struct clusterip_config *c = s->private;
136e92bb
KK
651 unsigned int weight;
652 u_int32_t local_nodes;
653 struct clusterip_seq_position *idx;
654
655 /* FIXME: possible race */
656 local_nodes = c->local_nodes;
657 weight = hweight32(local_nodes);
658 if (*pos >= weight)
1da177e4
LT
659 return NULL;
660
136e92bb
KK
661 idx = kmalloc(sizeof(struct clusterip_seq_position), GFP_KERNEL);
662 if (!idx)
1da177e4
LT
663 return ERR_PTR(-ENOMEM);
664
136e92bb
KK
665 idx->pos = *pos;
666 idx->weight = weight;
667 idx->bit = ffs(local_nodes);
668 idx->val = local_nodes;
669 clear_bit(idx->bit - 1, &idx->val);
670
671 return idx;
1da177e4
LT
672}
673
674static void *clusterip_seq_next(struct seq_file *s, void *v, loff_t *pos)
675{
3cf93c96 676 struct clusterip_seq_position *idx = v;
1da177e4 677
136e92bb
KK
678 *pos = ++idx->pos;
679 if (*pos >= idx->weight) {
1da177e4
LT
680 kfree(v);
681 return NULL;
682 }
136e92bb
KK
683 idx->bit = ffs(idx->val);
684 clear_bit(idx->bit - 1, &idx->val);
685 return idx;
1da177e4
LT
686}
687
688static void clusterip_seq_stop(struct seq_file *s, void *v)
689{
902a3dd5
ED
690 if (!IS_ERR(v))
691 kfree(v);
1da177e4
LT
692}
693
694static int clusterip_seq_show(struct seq_file *s, void *v)
695{
3cf93c96 696 struct clusterip_seq_position *idx = v;
1da177e4 697
e905a9ed 698 if (idx->pos != 0)
1da177e4 699 seq_putc(s, ',');
1da177e4 700
136e92bb
KK
701 seq_printf(s, "%u", idx->bit);
702
703 if (idx->pos == idx->weight - 1)
1da177e4
LT
704 seq_putc(s, '\n');
705
706 return 0;
707}
708
56b3d975 709static const struct seq_operations clusterip_seq_ops = {
1da177e4
LT
710 .start = clusterip_seq_start,
711 .next = clusterip_seq_next,
712 .stop = clusterip_seq_stop,
713 .show = clusterip_seq_show,
714};
715
716static int clusterip_proc_open(struct inode *inode, struct file *file)
717{
718 int ret = seq_open(file, &clusterip_seq_ops);
719
720 if (!ret) {
721 struct seq_file *sf = file->private_data;
d9dda78b 722 struct clusterip_config *c = PDE_DATA(inode);
1da177e4 723
47778147 724 sf->private = c;
1da177e4
LT
725
726 clusterip_config_get(c);
727 }
728
729 return ret;
730}
731
732static int clusterip_proc_release(struct inode *inode, struct file *file)
733{
d9dda78b 734 struct clusterip_config *c = PDE_DATA(inode);
1da177e4
LT
735 int ret;
736
737 ret = seq_release(inode, file);
738
739 if (!ret)
740 clusterip_config_put(c);
741
742 return ret;
743}
744
745static ssize_t clusterip_proc_write(struct file *file, const char __user *input,
746 size_t size, loff_t *ofs)
747{
d9dda78b 748 struct clusterip_config *c = PDE_DATA(file_inode(file));
1da177e4
LT
749#define PROC_WRITELEN 10
750 char buffer[PROC_WRITELEN+1];
1da177e4 751 unsigned long nodenum;
4b5511eb 752 int rc;
1da177e4 753
961ed183
VK
754 if (size > PROC_WRITELEN)
755 return -EIO;
756 if (copy_from_user(buffer, input, size))
1da177e4 757 return -EFAULT;
961ed183 758 buffer[size] = 0;
1da177e4
LT
759
760 if (*buffer == '+') {
4b5511eb
AP
761 rc = kstrtoul(buffer+1, 10, &nodenum);
762 if (rc)
763 return rc;
1da177e4
LT
764 if (clusterip_add_node(c, nodenum))
765 return -ENOMEM;
766 } else if (*buffer == '-') {
4b5511eb
AP
767 rc = kstrtoul(buffer+1, 10, &nodenum);
768 if (rc)
769 return rc;
1da177e4
LT
770 if (clusterip_del_node(c, nodenum))
771 return -ENOENT;
772 } else
773 return -EIO;
774
775 return size;
776}
777
9a32144e 778static const struct file_operations clusterip_proc_fops = {
1da177e4
LT
779 .owner = THIS_MODULE,
780 .open = clusterip_proc_open,
781 .read = seq_read,
782 .write = clusterip_proc_write,
783 .llseek = seq_lseek,
784 .release = clusterip_proc_release,
785};
786
787#endif /* CONFIG_PROC_FS */
788
ce4ff76c
G
789static int clusterip_net_init(struct net *net)
790{
ce4ff76c 791 struct clusterip_net *cn = net_generic(net, clusterip_net_id);
03eb7d49 792 int ret;
ce4ff76c 793
26a89e43
G
794 INIT_LIST_HEAD(&cn->configs);
795
f1e8077f
G
796 spin_lock_init(&cn->lock);
797
03eb7d49
FW
798 ret = nf_register_net_hook(net, &cip_arp_ops);
799 if (ret < 0)
800 return ret;
801
26a89e43 802#ifdef CONFIG_PROC_FS
ce4ff76c
G
803 cn->procdir = proc_mkdir("ipt_CLUSTERIP", net->proc_net);
804 if (!cn->procdir) {
03eb7d49 805 nf_unregister_net_hook(net, &cip_arp_ops);
ce4ff76c
G
806 pr_err("Unable to proc dir entry\n");
807 return -ENOMEM;
808 }
809#endif /* CONFIG_PROC_FS */
810
811 return 0;
812}
813
814static void clusterip_net_exit(struct net *net)
815{
ce4ff76c 816 struct clusterip_net *cn = net_generic(net, clusterip_net_id);
96307a0a 817#ifdef CONFIG_PROC_FS
ce4ff76c 818 proc_remove(cn->procdir);
3840538a 819 cn->procdir = NULL;
ce4ff76c 820#endif
03eb7d49 821 nf_unregister_net_hook(net, &cip_arp_ops);
613d0776 822 WARN_ON_ONCE(!list_empty(&cn->configs));
ce4ff76c
G
823}
824
825static struct pernet_operations clusterip_net_ops = {
826 .init = clusterip_net_init,
827 .exit = clusterip_net_exit,
828 .id = &clusterip_net_id,
829 .size = sizeof(struct clusterip_net),
830};
831
d3c5ee6d 832static int __init clusterip_tg_init(void)
1da177e4
LT
833{
834 int ret;
835
ce4ff76c 836 ret = register_pernet_subsys(&clusterip_net_ops);
32292a7f
PM
837 if (ret < 0)
838 return ret;
1da177e4 839
ce4ff76c
G
840 ret = xt_register_target(&clusterip_tg_reg);
841 if (ret < 0)
842 goto cleanup_subsys;
843
ff67e4e4 844 pr_info("ClusterIP Version %s loaded successfully\n",
1da177e4 845 CLUSTERIP_VERSION);
ce4ff76c 846
1da177e4
LT
847 return 0;
848
ce4ff76c
G
849cleanup_subsys:
850 unregister_pernet_subsys(&clusterip_net_ops);
32292a7f 851 return ret;
1da177e4
LT
852}
853
d3c5ee6d 854static void __exit clusterip_tg_exit(void)
1da177e4 855{
ff67e4e4 856 pr_info("ClusterIP Version %s unloading\n", CLUSTERIP_VERSION);
ce4ff76c 857
d3c5ee6d 858 xt_unregister_target(&clusterip_tg_reg);
ce4ff76c 859 unregister_pernet_subsys(&clusterip_net_ops);
d73f33b1
ED
860
861 /* Wait for completion of call_rcu_bh()'s (clusterip_config_rcu_free) */
862 rcu_barrier_bh();
1da177e4
LT
863}
864
d3c5ee6d
JE
865module_init(clusterip_tg_init);
866module_exit(clusterip_tg_exit);