blob: f7f46d1c2f9425d06e7068b61de6ab41aa10face [file] [log] [blame]
Harald Weltec340f6c2003-11-11 18:41:36 +00001/* Shared library add-on to iptables to add CLUSTERIP target support.
2 * (C) 2003 by Harald Welte <laforge@gnumonks.org>
3 *
4 * Development of this code was funded by SuSE AG, http://www.suse.com/
5 */
Jan Engelhardt32b8e612010-07-23 21:16:14 +02006#include <stdbool.h>
Harald Weltec340f6c2003-11-11 18:41:36 +00007#include <stdio.h>
8#include <string.h>
9#include <stdlib.h>
10#include <getopt.h>
Pablo Neira800938f2005-03-07 14:02:02 +000011#include <stddef.h>
Harald Weltec340f6c2003-11-11 18:41:36 +000012
13#if defined(__GLIBC__) && __GLIBC__ == 2
14#include <net/ethernet.h>
15#else
16#include <linux/if_ether.h>
17#endif
18
Jan Engelhardt5d9678a2008-11-20 10:15:35 +010019#include <xtables.h>
Jan Engelhardta2a7f2b2008-09-01 14:20:13 +020020#include <linux/netfilter_ipv4/ipt_CLUSTERIP.h>
Harald Weltec340f6c2003-11-11 18:41:36 +000021
Jan Engelhardt1d5b63d2007-10-04 16:29:00 +000022static void CLUSTERIP_help(void)
Harald Weltec340f6c2003-11-11 18:41:36 +000023{
24 printf(
Jan Engelhardt8b7c64d2008-04-15 11:48:25 +020025"CLUSTERIP target options:\n"
Harald Weltec340f6c2003-11-11 18:41:36 +000026" --new Create a new ClusterIP\n"
27" --hashmode <mode> Specify hashing mode\n"
28" sourceip\n"
29" sourceip-sourceport\n"
30" sourceip-sourceport-destport\n"
31" --clustermac <mac> Set clusterIP MAC address\n"
32" --total-nodes <num> Set number of total nodes in cluster\n"
33" --local-node <num> Set the local node number\n"
Jan Engelhardt8b7c64d2008-04-15 11:48:25 +020034" --hash-init <num> Set init value of the Jenkins hash\n");
Harald Weltec340f6c2003-11-11 18:41:36 +000035}
36
KOVACS Krisztian3643aca2005-09-19 14:50:06 +000037#define PARAM_NEW 0x0001
38#define PARAM_HMODE 0x0002
39#define PARAM_MAC 0x0004
40#define PARAM_TOTALNODE 0x0008
41#define PARAM_LOCALNODE 0x0010
42#define PARAM_HASHINIT 0x0020
43
Jan Engelhardt1d5b63d2007-10-04 16:29:00 +000044static const struct option CLUSTERIP_opts[] = {
Jan Engelhardt32b8e612010-07-23 21:16:14 +020045 {.name = "new", .has_arg = false, .val = '1'},
46 {.name = "hashmode", .has_arg = true, .val = '2'},
47 {.name = "clustermac", .has_arg = true, .val = '3'},
48 {.name = "total-nodes", .has_arg = true, .val = '4'},
49 {.name = "local-node", .has_arg = true, .val = '5'},
50 {.name = "hash-init", .has_arg = true, .val = '6'},
51 XT_GETOPT_TABLEEND,
Harald Weltec340f6c2003-11-11 18:41:36 +000052};
53
54static void
Harald Weltec340f6c2003-11-11 18:41:36 +000055parse_mac(const char *mac, char *macbuf)
56{
57 unsigned int i = 0;
58
59 if (strlen(mac) != ETH_ALEN*3-1)
Jan Engelhardt1829ed42009-02-21 03:29:44 +010060 xtables_error(PARAMETER_PROBLEM, "Bad mac address \"%s\"", mac);
Harald Weltec340f6c2003-11-11 18:41:36 +000061
62 for (i = 0; i < ETH_ALEN; i++) {
63 long number;
64 char *end;
65
66 number = strtol(mac + i*3, &end, 16);
67
68 if (end == mac + i*3 + 2
69 && number >= 0
70 && number <= 255)
71 macbuf[i] = number;
72 else
Jan Engelhardt1829ed42009-02-21 03:29:44 +010073 xtables_error(PARAMETER_PROBLEM,
Harald Weltec340f6c2003-11-11 18:41:36 +000074 "Bad mac address `%s'", mac);
75 }
76}
77
Jan Engelhardt1d5b63d2007-10-04 16:29:00 +000078static int CLUSTERIP_parse(int c, char **argv, int invert, unsigned int *flags,
79 const void *entry, struct xt_entry_target **target)
Harald Weltec340f6c2003-11-11 18:41:36 +000080{
81 struct ipt_clusterip_tgt_info *cipinfo
82 = (struct ipt_clusterip_tgt_info *)(*target)->data;
83
84 switch (c) {
85 unsigned int num;
86 case '1':
87 cipinfo->flags |= CLUSTERIP_FLAG_NEW;
88 if (*flags & PARAM_NEW)
Jan Engelhardt1829ed42009-02-21 03:29:44 +010089 xtables_error(PARAMETER_PROBLEM, "Can only specify \"--new\" once\n");
Harald Weltec340f6c2003-11-11 18:41:36 +000090 *flags |= PARAM_NEW;
91 break;
92 case '2':
93 if (!(*flags & PARAM_NEW))
Jan Engelhardt1829ed42009-02-21 03:29:44 +010094 xtables_error(PARAMETER_PROBLEM, "Can only specify hashmode combined with \"--new\"\n");
Harald Weltec340f6c2003-11-11 18:41:36 +000095 if (*flags & PARAM_HMODE)
Jan Engelhardt1829ed42009-02-21 03:29:44 +010096 xtables_error(PARAMETER_PROBLEM, "Can only specify hashmode once\n");
Harald Weltec340f6c2003-11-11 18:41:36 +000097 if (!strcmp(optarg, "sourceip"))
98 cipinfo->hash_mode = CLUSTERIP_HASHMODE_SIP;
99 else if (!strcmp(optarg, "sourceip-sourceport"))
100 cipinfo->hash_mode = CLUSTERIP_HASHMODE_SIP_SPT;
101 else if (!strcmp(optarg, "sourceip-sourceport-destport"))
102 cipinfo->hash_mode = CLUSTERIP_HASHMODE_SIP_SPT_DPT;
103 else
Jan Engelhardt1829ed42009-02-21 03:29:44 +0100104 xtables_error(PARAMETER_PROBLEM, "Unknown hashmode \"%s\"\n",
Harald Weltec340f6c2003-11-11 18:41:36 +0000105 optarg);
106 *flags |= PARAM_HMODE;
107 break;
108 case '3':
109 if (!(*flags & PARAM_NEW))
Jan Engelhardt1829ed42009-02-21 03:29:44 +0100110 xtables_error(PARAMETER_PROBLEM, "Can only specify MAC combined with \"--new\"\n");
Harald Weltec340f6c2003-11-11 18:41:36 +0000111 if (*flags & PARAM_MAC)
Jan Engelhardt1829ed42009-02-21 03:29:44 +0100112 xtables_error(PARAMETER_PROBLEM, "Can only specify MAC once\n");
Patrick McHardy2739cb82005-11-18 18:00:25 +0000113 parse_mac(optarg, (char *)cipinfo->clustermac);
Harald Weltedb986e82003-11-26 12:50:38 +0000114 if (!(cipinfo->clustermac[0] & 0x01))
Jan Engelhardt1829ed42009-02-21 03:29:44 +0100115 xtables_error(PARAMETER_PROBLEM, "MAC has to be a multicast ethernet address\n");
Harald Weltec340f6c2003-11-11 18:41:36 +0000116 *flags |= PARAM_MAC;
117 break;
118 case '4':
119 if (!(*flags & PARAM_NEW))
Jan Engelhardt1829ed42009-02-21 03:29:44 +0100120 xtables_error(PARAMETER_PROBLEM, "Can only specify node number combined with \"--new\"\n");
Harald Weltec340f6c2003-11-11 18:41:36 +0000121 if (*flags & PARAM_TOTALNODE)
Jan Engelhardt1829ed42009-02-21 03:29:44 +0100122 xtables_error(PARAMETER_PROBLEM, "Can only specify total node number once\n");
Jan Engelhardt5f2922c2009-01-27 18:43:01 +0100123 if (!xtables_strtoui(optarg, NULL, &num, 1, CLUSTERIP_MAX_NODES))
Jan Engelhardt1829ed42009-02-21 03:29:44 +0100124 xtables_error(PARAMETER_PROBLEM, "Unable to parse \"%s\"\n", optarg);
Jan Engelhardt213e1852009-01-27 17:24:34 +0100125 cipinfo->num_total_nodes = num;
Harald Weltec340f6c2003-11-11 18:41:36 +0000126 *flags |= PARAM_TOTALNODE;
127 break;
128 case '5':
129 if (!(*flags & PARAM_NEW))
Jan Engelhardt1829ed42009-02-21 03:29:44 +0100130 xtables_error(PARAMETER_PROBLEM, "Can only specify node number combined with \"--new\"\n");
Harald Weltec340f6c2003-11-11 18:41:36 +0000131 if (*flags & PARAM_LOCALNODE)
Jan Engelhardt1829ed42009-02-21 03:29:44 +0100132 xtables_error(PARAMETER_PROBLEM, "Can only specify local node number once\n");
Jan Engelhardt5f2922c2009-01-27 18:43:01 +0100133 if (!xtables_strtoui(optarg, NULL, &num, 1, CLUSTERIP_MAX_NODES))
Jan Engelhardt1829ed42009-02-21 03:29:44 +0100134 xtables_error(PARAMETER_PROBLEM, "Unable to parse \"%s\"\n", optarg);
Harald Weltec340f6c2003-11-11 18:41:36 +0000135 cipinfo->num_local_nodes = 1;
Jan Engelhardt213e1852009-01-27 17:24:34 +0100136 cipinfo->local_nodes[0] = num;
Harald Weltec340f6c2003-11-11 18:41:36 +0000137 *flags |= PARAM_LOCALNODE;
138 break;
KOVACS Krisztian3643aca2005-09-19 14:50:06 +0000139 case '6':
140 if (!(*flags & PARAM_NEW))
Jan Engelhardt1829ed42009-02-21 03:29:44 +0100141 xtables_error(PARAMETER_PROBLEM, "Can only specify hash init value combined with \"--new\"\n");
KOVACS Krisztian3643aca2005-09-19 14:50:06 +0000142 if (*flags & PARAM_HASHINIT)
Jan Engelhardt1829ed42009-02-21 03:29:44 +0100143 xtables_error(PARAMETER_PROBLEM, "Can specify hash init value only once\n");
Jan Engelhardt5f2922c2009-01-27 18:43:01 +0100144 if (!xtables_strtoui(optarg, NULL, &num, 0, UINT_MAX))
Jan Engelhardt1829ed42009-02-21 03:29:44 +0100145 xtables_error(PARAMETER_PROBLEM, "Unable to parse \"%s\"\n", optarg);
KOVACS Krisztian3643aca2005-09-19 14:50:06 +0000146 cipinfo->hash_initval = num;
147 *flags |= PARAM_HASHINIT;
148 break;
Harald Weltec340f6c2003-11-11 18:41:36 +0000149 }
150
151 return 1;
152}
153
Jan Engelhardt1d5b63d2007-10-04 16:29:00 +0000154static void CLUSTERIP_check(unsigned int flags)
Harald Weltec340f6c2003-11-11 18:41:36 +0000155{
156 if (flags == 0)
157 return;
158
Patrick McHardy2739cb82005-11-18 18:00:25 +0000159 if ((flags & (PARAM_NEW|PARAM_HMODE|PARAM_MAC|PARAM_TOTALNODE|PARAM_LOCALNODE))
KOVACS Krisztian3643aca2005-09-19 14:50:06 +0000160 == (PARAM_NEW|PARAM_HMODE|PARAM_MAC|PARAM_TOTALNODE|PARAM_LOCALNODE))
Harald Weltec340f6c2003-11-11 18:41:36 +0000161 return;
162
Jan Engelhardt1829ed42009-02-21 03:29:44 +0100163 xtables_error(PARAMETER_PROBLEM, "CLUSTERIP target: Invalid parameter combination\n");
Harald Weltec340f6c2003-11-11 18:41:36 +0000164}
165
Jan Engelhardte814c8b2011-01-08 03:16:51 +0100166static const char *hashmode2str(enum clusterip_hashmode mode)
Harald Weltec340f6c2003-11-11 18:41:36 +0000167{
Jan Engelhardte814c8b2011-01-08 03:16:51 +0100168 const char *retstr;
Harald Weltec340f6c2003-11-11 18:41:36 +0000169 switch (mode) {
170 case CLUSTERIP_HASHMODE_SIP:
171 retstr = "sourceip";
172 break;
173 case CLUSTERIP_HASHMODE_SIP_SPT:
174 retstr = "sourceip-sourceport";
175 break;
176 case CLUSTERIP_HASHMODE_SIP_SPT_DPT:
177 retstr = "sourceip-sourceport-destport";
178 break;
179 default:
180 retstr = "unknown-error";
181 break;
182 }
183 return retstr;
184}
185
Jan Engelhardte814c8b2011-01-08 03:16:51 +0100186static const char *mac2str(const uint8_t mac[ETH_ALEN])
Harald Weltec340f6c2003-11-11 18:41:36 +0000187{
188 static char buf[ETH_ALEN*3];
189 sprintf(buf, "%02X:%02X:%02X:%02X:%02X:%02X",
190 mac[0], mac[1], mac[2], mac[3], mac[4], mac[5]);
191 return buf;
192}
Harald Weltec340f6c2003-11-11 18:41:36 +0000193
Jan Engelhardt1d5b63d2007-10-04 16:29:00 +0000194static void CLUSTERIP_print(const void *ip,
195 const struct xt_entry_target *target, int numeric)
Harald Weltec340f6c2003-11-11 18:41:36 +0000196{
197 const struct ipt_clusterip_tgt_info *cipinfo =
198 (const struct ipt_clusterip_tgt_info *)target->data;
199
200 if (!cipinfo->flags & CLUSTERIP_FLAG_NEW) {
Jan Engelhardt73866352010-12-18 02:04:59 +0100201 printf(" CLUSTERIP");
Harald Weltec340f6c2003-11-11 18:41:36 +0000202 return;
203 }
204
Jan Engelhardt73866352010-12-18 02:04:59 +0100205 printf(" CLUSTERIP hashmode=%s clustermac=%s total_nodes=%u local_node=%u hash_init=%u",
Harald Weltec340f6c2003-11-11 18:41:36 +0000206 hashmode2str(cipinfo->hash_mode),
207 mac2str(cipinfo->clustermac),
208 cipinfo->num_total_nodes,
KOVACS Krisztian3643aca2005-09-19 14:50:06 +0000209 cipinfo->local_nodes[0],
210 cipinfo->hash_initval);
Harald Weltec340f6c2003-11-11 18:41:36 +0000211}
212
Jan Engelhardt1d5b63d2007-10-04 16:29:00 +0000213static void CLUSTERIP_save(const void *ip, const struct xt_entry_target *target)
Harald Weltec340f6c2003-11-11 18:41:36 +0000214{
KOVACS Krisztian3643aca2005-09-19 14:50:06 +0000215 const struct ipt_clusterip_tgt_info *cipinfo =
216 (const struct ipt_clusterip_tgt_info *)target->data;
Harald Weltec340f6c2003-11-11 18:41:36 +0000217
KOVACS Krisztian3643aca2005-09-19 14:50:06 +0000218 /* if this is not a new entry, we don't need to save target
219 * parameters */
220 if (!cipinfo->flags & CLUSTERIP_FLAG_NEW)
221 return;
222
Jan Engelhardt73866352010-12-18 02:04:59 +0100223 printf(" --new --hashmode %s --clustermac %s --total-nodes %d --local-node %d --hash-init %u",
KOVACS Krisztian3643aca2005-09-19 14:50:06 +0000224 hashmode2str(cipinfo->hash_mode),
225 mac2str(cipinfo->clustermac),
226 cipinfo->num_total_nodes,
227 cipinfo->local_nodes[0],
228 cipinfo->hash_initval);
Harald Weltec340f6c2003-11-11 18:41:36 +0000229}
230
Jan Engelhardt8b7c64d2008-04-15 11:48:25 +0200231static struct xtables_target clusterip_tg_reg = {
Pablo Neira8caee8b2004-12-28 13:11:59 +0000232 .name = "CLUSTERIP",
Jan Engelhardt8b7c64d2008-04-15 11:48:25 +0200233 .version = XTABLES_VERSION,
Jan Engelhardt03d99482008-11-18 12:27:54 +0100234 .family = NFPROTO_IPV4,
Jan Engelhardt8b7c64d2008-04-15 11:48:25 +0200235 .size = XT_ALIGN(sizeof(struct ipt_clusterip_tgt_info)),
Pablo Neira800938f2005-03-07 14:02:02 +0000236 .userspacesize = offsetof(struct ipt_clusterip_tgt_info, config),
Jan Engelhardt1d5b63d2007-10-04 16:29:00 +0000237 .help = CLUSTERIP_help,
238 .parse = CLUSTERIP_parse,
239 .final_check = CLUSTERIP_check,
240 .print = CLUSTERIP_print,
241 .save = CLUSTERIP_save,
242 .extra_opts = CLUSTERIP_opts,
Harald Weltec340f6c2003-11-11 18:41:36 +0000243};
244
245void _init(void)
246{
Jan Engelhardt8b7c64d2008-04-15 11:48:25 +0200247 xtables_register_target(&clusterip_tg_reg);
Harald Weltec340f6c2003-11-11 18:41:36 +0000248}