blob: 7658038cdb2e167fc472ce22b147c4506f87b6de [file] [log] [blame]
Yasuyuki KOZAKAI52088062007-07-24 05:44:11 +00001/*
2 * (C) 2000-2006 by the netfilter coreteam <coreteam@netfilter.org>:
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17 */
18
Yasuyuki KOZAKAI3dfa4482007-07-24 05:45:33 +000019#include <errno.h>
Yasuyuki KOZAKAI0b82e8e2007-07-24 05:47:40 +000020#include <fcntl.h>
Yasuyuki KOZAKAI04f8c542007-07-24 05:53:48 +000021#include <netdb.h>
Jan Engelhardtaafd2692008-01-20 13:19:40 +000022#include <stdarg.h>
Jan Engelhardtcd9e7aa2008-01-20 13:18:54 +000023#include <stdbool.h>
Yasuyuki KOZAKAI3dfa4482007-07-24 05:45:33 +000024#include <stdio.h>
25#include <stdlib.h>
Yasuyuki KOZAKAI0b82e8e2007-07-24 05:47:40 +000026#include <string.h>
27#include <unistd.h>
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +000028#include <sys/socket.h>
Yasuyuki KOZAKAI0b82e8e2007-07-24 05:47:40 +000029#include <sys/stat.h>
30#include <sys/types.h>
31#include <sys/wait.h>
Jan Engelhardt08b16162008-01-20 13:36:08 +000032#include <arpa/inet.h>
Yasuyuki KOZAKAI3dfa4482007-07-24 05:45:33 +000033
Yasuyuki KOZAKAI52088062007-07-24 05:44:11 +000034#include <xtables.h>
Jan Engelhardt4e418542009-02-21 03:46:37 +010035#include <limits.h> /* INT_MAX in ip_tables.h/ip6_tables.h */
Jan Engelhardt77f48c22009-02-07 19:59:53 +010036#include <linux/netfilter_ipv4/ip_tables.h>
37#include <linux/netfilter_ipv6/ip6_tables.h>
Jan Engelhardtef18e812008-08-04 12:47:48 +020038#include <libiptc/libxtc.h>
Yasuyuki KOZAKAI3dfa4482007-07-24 05:45:33 +000039
Mike Frysinger5a26b5f2007-12-19 14:51:17 +000040#ifndef NO_SHARED_LIBS
41#include <dlfcn.h>
42#endif
Jan Engelhardtc31870f2009-02-10 10:48:28 +010043#ifndef IPT_SO_GET_REVISION_MATCH /* Old kernel source. */
44# define IPT_SO_GET_REVISION_MATCH (IPT_BASE_CTL + 2)
45# define IPT_SO_GET_REVISION_TARGET (IPT_BASE_CTL + 3)
46#endif
47#ifndef IP6T_SO_GET_REVISION_MATCH /* Old kernel source. */
48# define IP6T_SO_GET_REVISION_MATCH 68
49# define IP6T_SO_GET_REVISION_TARGET 69
50#endif
Jamal Hadi Salim70581922009-02-13 08:36:44 -050051#include <getopt.h>
Jan Engelhardtc31870f2009-02-10 10:48:28 +010052
Mike Frysinger5a26b5f2007-12-19 14:51:17 +000053
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +000054#define NPROTO 255
55
Yasuyuki KOZAKAI0b82e8e2007-07-24 05:47:40 +000056#ifndef PROC_SYS_MODPROBE
57#define PROC_SYS_MODPROBE "/proc/sys/kernel/modprobe"
58#endif
59
Jamal Hadi Salim8b7baeb2009-02-11 13:05:43 +010060void basic_exit_err(enum xtables_exittype status, const char *msg, ...) __attribute__((noreturn, format(printf,2,3)));
61
Jamal Hadi Salim40a83432009-02-11 13:02:21 +010062struct xtables_globals *xt_params = NULL;
63
Jamal Hadi Salim8b7baeb2009-02-11 13:05:43 +010064void basic_exit_err(enum xtables_exittype status, const char *msg, ...)
Jamal Hadi Salim40a83432009-02-11 13:02:21 +010065{
66 va_list args;
67
68 va_start(args, msg);
69 fprintf(stderr, "%s v%s: ", xt_params->program_name, xt_params->program_version);
70 vfprintf(stderr, msg, args);
71 va_end(args);
72 fprintf(stderr, "\n");
73 exit(status);
74}
75
Jan Engelhardt600f38d2010-10-29 18:57:42 +020076void xtables_free_opts(int unused)
Jamal Hadi Salim84c30552009-02-11 13:00:02 +010077{
Jan Engelhardt600f38d2010-10-29 18:57:42 +020078 free(xt_params->opts);
Jamal Hadi Salim84c30552009-02-11 13:00:02 +010079}
80
Jan Engelhardt600f38d2010-10-29 18:57:42 +020081struct option *xtables_merge_options(struct option *orig_opts,
82 struct option *oldopts,
Jamal Hadi Salim70581922009-02-13 08:36:44 -050083 const struct option *newopts,
84 unsigned int *option_offset)
85{
Jan Engelhardt600f38d2010-10-29 18:57:42 +020086 unsigned int num_oold = 0, num_old = 0, num_new = 0, i;
87 struct option *merge, *mp;
Jamal Hadi Salim70581922009-02-13 08:36:44 -050088
89 if (newopts == NULL)
90 return oldopts;
91
Jan Engelhardt600f38d2010-10-29 18:57:42 +020092 for (num_oold = 0; orig_opts[num_oold].name; num_oold++) ;
93 if (oldopts != NULL)
94 for (num_old = 0; oldopts[num_old].name; num_old++) ;
Jamal Hadi Salim70581922009-02-13 08:36:44 -050095 for (num_new = 0; newopts[num_new].name; num_new++) ;
96
Jan Engelhardt600f38d2010-10-29 18:57:42 +020097 merge = malloc(sizeof(*mp) * (num_oold + num_old + num_new + 1));
Jamal Hadi Salim70581922009-02-13 08:36:44 -050098 if (merge == NULL)
99 return NULL;
Jamal Hadi Salim70581922009-02-13 08:36:44 -0500100
Jan Engelhardt600f38d2010-10-29 18:57:42 +0200101 /* Let the base options -[ADI...] have precedence over everything */
102 memcpy(merge, orig_opts, sizeof(*mp) * num_oold);
103 mp = merge + num_oold;
104
105 /* Second, the new options */
106 xt_params->option_offset += 256;
107 *option_offset = xt_params->option_offset;
108 memcpy(mp, newopts, sizeof(*mp) * num_new);
109
110 for (i = 0; i < num_new; ++i, ++mp)
111 mp->val += *option_offset;
112
113 /* Third, the old options */
114 memcpy(mp, oldopts, sizeof(*mp) * num_old);
115 mp += num_old;
116 xtables_free_opts(0);
117
118 /* Clear trailing entry */
119 memset(mp, 0, sizeof(*mp));
Jamal Hadi Salim70581922009-02-13 08:36:44 -0500120 return merge;
121}
122
Jan Engelhardtdacafa52009-01-27 20:56:23 +0100123/**
Jan Engelhardt77f48c22009-02-07 19:59:53 +0100124 * xtables_afinfo - protocol family dependent information
125 * @kmod: kernel module basename (e.g. "ip_tables")
126 * @libprefix: prefix of .so library name (e.g. "libipt_")
127 * @family: nfproto family
128 * @ipproto: used by setsockopt (e.g. IPPROTO_IP)
129 * @so_rev_match: optname to check revision support of match
130 * @so_rev_target: optname to check revision support of target
131 */
132struct xtables_afinfo {
133 const char *kmod;
134 const char *libprefix;
135 uint8_t family;
136 uint8_t ipproto;
137 int so_rev_match;
138 int so_rev_target;
139};
140
141static const struct xtables_afinfo afinfo_ipv4 = {
142 .kmod = "ip_tables",
143 .libprefix = "libipt_",
144 .family = NFPROTO_IPV4,
145 .ipproto = IPPROTO_IP,
146 .so_rev_match = IPT_SO_GET_REVISION_MATCH,
147 .so_rev_target = IPT_SO_GET_REVISION_TARGET,
148};
149
150static const struct xtables_afinfo afinfo_ipv6 = {
151 .kmod = "ip6_tables",
152 .libprefix = "libip6t_",
153 .family = NFPROTO_IPV6,
154 .ipproto = IPPROTO_IPV6,
155 .so_rev_match = IP6T_SO_GET_REVISION_MATCH,
156 .so_rev_target = IP6T_SO_GET_REVISION_TARGET,
157};
158
159static const struct xtables_afinfo *afinfo;
160
Jan Engelhardt39bf9c82009-01-27 15:59:06 +0100161/* Search path for Xtables .so files */
162static const char *xtables_libdir;
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +0000163
Yasuyuki KOZAKAI0b82e8e2007-07-24 05:47:40 +0000164/* the path to command to load kernel module */
Jan Engelhardtc021c3c2009-01-27 15:10:05 +0100165const char *xtables_modprobe_program;
Yasuyuki KOZAKAI0b82e8e2007-07-24 05:47:40 +0000166
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +0000167/* Keeping track of external matches and targets: linked lists. */
168struct xtables_match *xtables_matches;
169struct xtables_target *xtables_targets;
170
Jan Engelhardt39bf9c82009-01-27 15:59:06 +0100171void xtables_init(void)
172{
173 xtables_libdir = getenv("XTABLES_LIBDIR");
174 if (xtables_libdir != NULL)
175 return;
176 xtables_libdir = getenv("IPTABLES_LIB_DIR");
177 if (xtables_libdir != NULL) {
178 fprintf(stderr, "IPTABLES_LIB_DIR is deprecated, "
179 "use XTABLES_LIBDIR.\n");
180 return;
181 }
Jan Engelhardtec934192009-02-10 09:54:04 +0100182 /*
183 * Well yes, IP6TABLES_LIB_DIR is of lower priority over
184 * IPTABLES_LIB_DIR since this moved to libxtables; I think that is ok
185 * for these env vars are deprecated anyhow, and in light of the
186 * (shared) libxt_*.so files, makes less sense to have
187 * IPTABLES_LIB_DIR != IP6TABLES_LIB_DIR.
188 */
189 xtables_libdir = getenv("IP6TABLES_LIB_DIR");
190 if (xtables_libdir != NULL) {
191 fprintf(stderr, "IP6TABLES_LIB_DIR is deprecated, "
192 "use XTABLES_LIBDIR.\n");
193 return;
194 }
Jan Engelhardt39bf9c82009-01-27 15:59:06 +0100195 xtables_libdir = XTABLES_LIBDIR;
196}
197
Jan Engelhardt77f48c22009-02-07 19:59:53 +0100198void xtables_set_nfproto(uint8_t nfproto)
199{
200 switch (nfproto) {
201 case NFPROTO_IPV4:
202 afinfo = &afinfo_ipv4;
203 break;
204 case NFPROTO_IPV6:
205 afinfo = &afinfo_ipv6;
206 break;
207 default:
208 fprintf(stderr, "libxtables: unhandled NFPROTO in %s\n",
209 __func__);
210 }
211}
212
Jan Engelhardt630ef482009-01-27 14:58:41 +0100213/**
Jamal Hadi Salim7e4db2f2009-02-13 09:14:17 -0500214 * xtables_set_params - set the global parameters used by xtables
215 * @xtp: input xtables_globals structure
216 *
217 * The app is expected to pass a valid xtables_globals data-filled
218 * with proper values
219 * @xtp cannot be NULL
220 *
221 * Returns -1 on failure to set and 0 on success
222 */
223int xtables_set_params(struct xtables_globals *xtp)
224{
225 if (!xtp) {
226 fprintf(stderr, "%s: Illegal global params\n",__func__);
227 return -1;
228 }
229
230 xt_params = xtp;
231
232 if (!xt_params->exit_err)
233 xt_params->exit_err = basic_exit_err;
234
235 return 0;
236}
237
238int xtables_init_all(struct xtables_globals *xtp, uint8_t nfproto)
239{
240 xtables_init();
241 xtables_set_nfproto(nfproto);
242 return xtables_set_params(xtp);
243}
244
245/**
Jan Engelhardt630ef482009-01-27 14:58:41 +0100246 * xtables_*alloc - wrappers that exit on failure
247 */
248void *xtables_calloc(size_t count, size_t size)
Yasuyuki KOZAKAI3dfa4482007-07-24 05:45:33 +0000249{
250 void *p;
251
252 if ((p = calloc(count, size)) == NULL) {
253 perror("ip[6]tables: calloc failed");
254 exit(1);
255 }
256
257 return p;
258}
259
Jan Engelhardt630ef482009-01-27 14:58:41 +0100260void *xtables_malloc(size_t size)
Yasuyuki KOZAKAI3dfa4482007-07-24 05:45:33 +0000261{
262 void *p;
263
264 if ((p = malloc(size)) == NULL) {
265 perror("ip[6]tables: malloc failed");
266 exit(1);
267 }
268
269 return p;
270}
Yasuyuki KOZAKAI0b82e8e2007-07-24 05:47:40 +0000271
Michael Granzow332e4ac2009-04-09 18:24:36 +0100272void *xtables_realloc(void *ptr, size_t size)
273{
274 void *p;
275
276 if ((p = realloc(ptr, size)) == NULL) {
277 perror("ip[6]tables: realloc failed");
278 exit(1);
279 }
280
281 return p;
282}
283
Yasuyuki KOZAKAI0b82e8e2007-07-24 05:47:40 +0000284static char *get_modprobe(void)
285{
286 int procfile;
287 char *ret;
288
289#define PROCFILE_BUFSIZ 1024
290 procfile = open(PROC_SYS_MODPROBE, O_RDONLY);
291 if (procfile < 0)
292 return NULL;
293
Jan Engelhardt371cea22010-07-25 23:36:17 +0200294 ret = malloc(PROCFILE_BUFSIZ);
Yasuyuki KOZAKAI0b82e8e2007-07-24 05:47:40 +0000295 if (ret) {
296 memset(ret, 0, PROCFILE_BUFSIZ);
297 switch (read(procfile, ret, PROCFILE_BUFSIZ)) {
298 case -1: goto fail;
299 case PROCFILE_BUFSIZ: goto fail; /* Partial read. Wierd */
300 }
301 if (ret[strlen(ret)-1]=='\n')
302 ret[strlen(ret)-1]=0;
303 close(procfile);
304 return ret;
305 }
306 fail:
307 free(ret);
308 close(procfile);
309 return NULL;
310}
311
Jan Engelhardtc021c3c2009-01-27 15:10:05 +0100312int xtables_insmod(const char *modname, const char *modprobe, bool quiet)
Yasuyuki KOZAKAI0b82e8e2007-07-24 05:47:40 +0000313{
314 char *buf = NULL;
315 char *argv[4];
316 int status;
317
318 /* If they don't explicitly set it, read out of kernel */
319 if (!modprobe) {
320 buf = get_modprobe();
321 if (!buf)
322 return -1;
323 modprobe = buf;
324 }
325
Jan Engelhardtc19f8802009-02-12 01:28:35 +0100326 /*
327 * Need to flush the buffer, or the child may output it again
328 * when switching the program thru execv.
329 */
330 fflush(stdout);
331
Jan Engelhardt94aa2ea2009-10-11 03:56:18 -0400332 switch (vfork()) {
Yasuyuki KOZAKAI0b82e8e2007-07-24 05:47:40 +0000333 case 0:
334 argv[0] = (char *)modprobe;
335 argv[1] = (char *)modname;
336 if (quiet) {
337 argv[2] = "-q";
338 argv[3] = NULL;
339 } else {
340 argv[2] = NULL;
341 argv[3] = NULL;
342 }
343 execv(argv[0], argv);
344
345 /* not usually reached */
346 exit(1);
347 case -1:
348 return -1;
349
350 default: /* parent */
351 wait(&status);
352 }
353
354 free(buf);
355 if (WIFEXITED(status) && WEXITSTATUS(status) == 0)
356 return 0;
357 return -1;
358}
359
Jan Engelhardtc021c3c2009-01-27 15:10:05 +0100360int xtables_load_ko(const char *modprobe, bool quiet)
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +0000361{
Jan Engelhardtc021c3c2009-01-27 15:10:05 +0100362 static bool loaded = false;
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +0000363 static int ret = -1;
364
365 if (!loaded) {
Jan Engelhardt77f48c22009-02-07 19:59:53 +0100366 ret = xtables_insmod(afinfo->kmod, modprobe, quiet);
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +0000367 loaded = (ret == 0);
368 }
369
370 return ret;
371}
372
Jan Engelhardt5f2922c2009-01-27 18:43:01 +0100373/**
374 * xtables_strtou{i,l} - string to number conversion
375 * @s: input string
376 * @end: like strtoul's "end" pointer
377 * @value: pointer for result
378 * @min: minimum accepted value
379 * @max: maximum accepted value
Jan Engelhardtcd9e7aa2008-01-20 13:18:54 +0000380 *
Jan Engelhardt5f2922c2009-01-27 18:43:01 +0100381 * If @end is NULL, we assume the caller wants a "strict strtoul", and hence
382 * "15a" is rejected.
383 * In either case, the value obtained is compared for min-max compliance.
384 * Base is always 0, i.e. autodetect depending on @s.
385 *
386 * Returns true/false whether number was accepted. On failure, *value has
387 * undefined contents.
Jan Engelhardtcd9e7aa2008-01-20 13:18:54 +0000388 */
Jan Engelhardt5f2922c2009-01-27 18:43:01 +0100389bool xtables_strtoul(const char *s, char **end, unsigned long *value,
390 unsigned long min, unsigned long max)
Jan Engelhardtcd9e7aa2008-01-20 13:18:54 +0000391{
392 unsigned long v;
393 char *my_end;
394
395 errno = 0;
396 v = strtoul(s, &my_end, 0);
397
398 if (my_end == s)
399 return false;
400 if (end != NULL)
401 *end = my_end;
402
403 if (errno != ERANGE && min <= v && (max == 0 || v <= max)) {
404 if (value != NULL)
405 *value = v;
406 if (end == NULL)
407 return *my_end == '\0';
408 return true;
409 }
410
411 return false;
412}
413
Jan Engelhardt5f2922c2009-01-27 18:43:01 +0100414bool xtables_strtoui(const char *s, char **end, unsigned int *value,
415 unsigned int min, unsigned int max)
Jan Engelhardtcd9e7aa2008-01-20 13:18:54 +0000416{
417 unsigned long v;
418 bool ret;
419
Jan Engelhardt5f2922c2009-01-27 18:43:01 +0100420 ret = xtables_strtoul(s, end, &v, min, max);
Jan Engelhardtcd9e7aa2008-01-20 13:18:54 +0000421 if (value != NULL)
422 *value = v;
423 return ret;
424}
425
Jan Engelhardtaae6be92009-01-30 04:24:47 +0100426int xtables_service_to_port(const char *name, const char *proto)
Yasuyuki KOZAKAI04f8c542007-07-24 05:53:48 +0000427{
428 struct servent *service;
429
430 if ((service = getservbyname(name, proto)) != NULL)
431 return ntohs((unsigned short) service->s_port);
432
433 return -1;
434}
435
Jan Engelhardtaae6be92009-01-30 04:24:47 +0100436u_int16_t xtables_parse_port(const char *port, const char *proto)
Yasuyuki KOZAKAI04f8c542007-07-24 05:53:48 +0000437{
Jan Engelhardt7a236f42008-03-03 12:30:41 +0100438 unsigned int portnum;
Yasuyuki KOZAKAI04f8c542007-07-24 05:53:48 +0000439
Jan Engelhardt5f2922c2009-01-27 18:43:01 +0100440 if (xtables_strtoui(port, NULL, &portnum, 0, UINT16_MAX) ||
Jan Engelhardtaae6be92009-01-30 04:24:47 +0100441 (portnum = xtables_service_to_port(port, proto)) != (unsigned)-1)
Jan Engelhardt213e1852009-01-27 17:24:34 +0100442 return portnum;
Yasuyuki KOZAKAI04f8c542007-07-24 05:53:48 +0000443
Jamal Hadi Salim8b7baeb2009-02-11 13:05:43 +0100444 xt_params->exit_err(PARAMETER_PROBLEM,
Yasuyuki KOZAKAI04f8c542007-07-24 05:53:48 +0000445 "invalid port/service `%s' specified", port);
446}
447
Jan Engelhardtaae6be92009-01-30 04:24:47 +0100448void xtables_parse_interface(const char *arg, char *vianame,
449 unsigned char *mask)
Yasuyuki KOZAKAI04f8c542007-07-24 05:53:48 +0000450{
Jan Engelhardtfcf57232010-02-09 15:59:13 +0100451 unsigned int vialen = strlen(arg);
Yasuyuki KOZAKAI04f8c542007-07-24 05:53:48 +0000452 unsigned int i;
453
454 memset(mask, 0, IFNAMSIZ);
455 memset(vianame, 0, IFNAMSIZ);
456
457 if (vialen + 1 > IFNAMSIZ)
Jamal Hadi Salim8b7baeb2009-02-11 13:05:43 +0100458 xt_params->exit_err(PARAMETER_PROBLEM,
Yasuyuki KOZAKAI04f8c542007-07-24 05:53:48 +0000459 "interface name `%s' must be shorter than IFNAMSIZ"
460 " (%i)", arg, IFNAMSIZ-1);
461
462 strcpy(vianame, arg);
Jan Engelhardtfcf57232010-02-09 15:59:13 +0100463 if (vialen == 0)
Yasuyuki KOZAKAI04f8c542007-07-24 05:53:48 +0000464 memset(mask, 0, IFNAMSIZ);
465 else if (vianame[vialen - 1] == '+') {
466 memset(mask, 0xFF, vialen - 1);
467 memset(mask + vialen - 1, 0, IFNAMSIZ - vialen + 1);
468 /* Don't remove `+' here! -HW */
469 } else {
470 /* Include nul-terminator in match */
471 memset(mask, 0xFF, vialen + 1);
472 memset(mask + vialen + 1, 0, IFNAMSIZ - vialen - 1);
473 for (i = 0; vianame[i]; i++) {
Jan Engelhardtfcf57232010-02-09 15:59:13 +0100474 if (vianame[i] == '/' ||
475 vianame[i] == ' ') {
Max Kellermannaae4f822007-10-17 16:36:49 +0000476 fprintf(stderr,
477 "Warning: weird character in interface"
Jan Engelhardtfcf57232010-02-09 15:59:13 +0100478 " `%s' ('/' and ' ' are not allowed by the kernel).\n",
Max Kellermannaae4f822007-10-17 16:36:49 +0000479 vianame);
Yasuyuki KOZAKAI04f8c542007-07-24 05:53:48 +0000480 break;
481 }
482 }
483 }
484}
485
Jan Engelhardtcb25af82008-04-14 18:37:57 +0200486#ifndef NO_SHARED_LIBS
Jan Engelhardt21b41ee2008-02-11 01:02:00 +0100487static void *load_extension(const char *search_path, const char *prefix,
488 const char *name, bool is_target)
489{
490 const char *dir = search_path, *next;
491 void *ptr = NULL;
492 struct stat sb;
493 char path[256];
494
495 do {
496 next = strchr(dir, ':');
497 if (next == NULL)
498 next = dir + strlen(dir);
499 snprintf(path, sizeof(path), "%.*s/libxt_%s.so",
Jan Engelhardt2c0a0c92008-04-14 15:58:17 +0200500 (unsigned int)(next - dir), dir, name);
Jan Engelhardt21b41ee2008-02-11 01:02:00 +0100501
502 if (dlopen(path, RTLD_NOW) != NULL) {
503 /* Found library. If it didn't register itself,
504 maybe they specified target as match. */
505 if (is_target)
Jan Engelhardt2338efd2009-01-27 15:23:01 +0100506 ptr = xtables_find_target(name, XTF_DONT_LOAD);
Jan Engelhardt21b41ee2008-02-11 01:02:00 +0100507 else
Jan Engelhardt2338efd2009-01-27 15:23:01 +0100508 ptr = xtables_find_match(name,
509 XTF_DONT_LOAD, NULL);
Jan Engelhardt21b41ee2008-02-11 01:02:00 +0100510 } else if (stat(path, &sb) == 0) {
511 fprintf(stderr, "%s: %s\n", path, dlerror());
512 }
513
514 if (ptr != NULL)
515 return ptr;
516
517 snprintf(path, sizeof(path), "%.*s/%s%s.so",
Jan Engelhardt2c0a0c92008-04-14 15:58:17 +0200518 (unsigned int)(next - dir), dir, prefix, name);
Jan Engelhardt21b41ee2008-02-11 01:02:00 +0100519 if (dlopen(path, RTLD_NOW) != NULL) {
520 if (is_target)
Jan Engelhardt2338efd2009-01-27 15:23:01 +0100521 ptr = xtables_find_target(name, XTF_DONT_LOAD);
Jan Engelhardt21b41ee2008-02-11 01:02:00 +0100522 else
Jan Engelhardt2338efd2009-01-27 15:23:01 +0100523 ptr = xtables_find_match(name,
524 XTF_DONT_LOAD, NULL);
Jan Engelhardt21b41ee2008-02-11 01:02:00 +0100525 } else if (stat(path, &sb) == 0) {
526 fprintf(stderr, "%s: %s\n", path, dlerror());
527 }
528
529 if (ptr != NULL)
530 return ptr;
531
532 dir = next + 1;
533 } while (*next != '\0');
534
535 return NULL;
536}
Jan Engelhardtcb25af82008-04-14 18:37:57 +0200537#endif
Jan Engelhardt21b41ee2008-02-11 01:02:00 +0100538
Jan Engelhardt2338efd2009-01-27 15:23:01 +0100539struct xtables_match *
540xtables_find_match(const char *name, enum xtables_tryload tryload,
541 struct xtables_rule_match **matches)
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +0000542{
543 struct xtables_match *ptr;
544 const char *icmp6 = "icmp6";
545
Jan Engelhardt0cb675b2010-06-07 11:50:25 +0200546 if (strlen(name) >= XT_EXTENSION_MAXNAMELEN)
Jan Engelhardt21d12832010-03-16 16:49:21 +0100547 xtables_error(PARAMETER_PROBLEM,
548 "Invalid match name \"%s\" (%u chars max)",
Jan Engelhardt0cb675b2010-06-07 11:50:25 +0200549 name, XT_EXTENSION_MAXNAMELEN - 1);
Jan Engelhardt21d12832010-03-16 16:49:21 +0100550
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +0000551 /* This is ugly as hell. Nonetheless, there is no way of changing
552 * this without hurting backwards compatibility */
553 if ( (strcmp(name,"icmpv6") == 0) ||
554 (strcmp(name,"ipv6-icmp") == 0) ||
555 (strcmp(name,"icmp6") == 0) )
556 name = icmp6;
557
558 for (ptr = xtables_matches; ptr; ptr = ptr->next) {
559 if (strcmp(name, ptr->name) == 0) {
560 struct xtables_match *clone;
561
562 /* First match of this type: */
563 if (ptr->m == NULL)
564 break;
565
566 /* Second and subsequent clones */
Jan Engelhardt630ef482009-01-27 14:58:41 +0100567 clone = xtables_malloc(sizeof(struct xtables_match));
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +0000568 memcpy(clone, ptr, sizeof(struct xtables_match));
569 clone->mflags = 0;
570 /* This is a clone: */
571 clone->next = clone;
572
573 ptr = clone;
574 break;
575 }
576 }
577
578#ifndef NO_SHARED_LIBS
Jan Engelhardt2338efd2009-01-27 15:23:01 +0100579 if (!ptr && tryload != XTF_DONT_LOAD && tryload != XTF_DURING_LOAD) {
Jan Engelhardt77f48c22009-02-07 19:59:53 +0100580 ptr = load_extension(xtables_libdir, afinfo->libprefix,
Jan Engelhardt39bf9c82009-01-27 15:59:06 +0100581 name, false);
Yasuyuki KOZAKAI170af8c2007-08-04 05:22:17 +0000582
Jan Engelhardt2338efd2009-01-27 15:23:01 +0100583 if (ptr == NULL && tryload == XTF_LOAD_MUST_SUCCEED)
Jamal Hadi Salim8b7baeb2009-02-11 13:05:43 +0100584 xt_params->exit_err(PARAMETER_PROBLEM,
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +0000585 "Couldn't load match `%s':%s\n",
586 name, dlerror());
587 }
588#else
589 if (ptr && !ptr->loaded) {
Jan Engelhardt2338efd2009-01-27 15:23:01 +0100590 if (tryload != XTF_DONT_LOAD)
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +0000591 ptr->loaded = 1;
592 else
593 ptr = NULL;
594 }
Jan Engelhardt2338efd2009-01-27 15:23:01 +0100595 if(!ptr && (tryload == XTF_LOAD_MUST_SUCCEED)) {
Jamal Hadi Salim8b7baeb2009-02-11 13:05:43 +0100596 xt_params->exit_err(PARAMETER_PROBLEM,
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +0000597 "Couldn't find match `%s'\n", name);
598 }
599#endif
600
601 if (ptr && matches) {
602 struct xtables_rule_match **i;
603 struct xtables_rule_match *newentry;
604
Jan Engelhardt630ef482009-01-27 14:58:41 +0100605 newentry = xtables_malloc(sizeof(struct xtables_rule_match));
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +0000606
607 for (i = matches; *i; i = &(*i)->next) {
608 if (strcmp(name, (*i)->match->name) == 0)
Jan Engelhardt2338efd2009-01-27 15:23:01 +0100609 (*i)->completed = true;
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +0000610 }
611 newentry->match = ptr;
Jan Engelhardt2338efd2009-01-27 15:23:01 +0100612 newentry->completed = false;
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +0000613 newentry->next = NULL;
614 *i = newentry;
615 }
616
617 return ptr;
618}
619
Jan Engelhardt2338efd2009-01-27 15:23:01 +0100620struct xtables_target *
621xtables_find_target(const char *name, enum xtables_tryload tryload)
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +0000622{
623 struct xtables_target *ptr;
624
625 /* Standard target? */
626 if (strcmp(name, "") == 0
627 || strcmp(name, XTC_LABEL_ACCEPT) == 0
628 || strcmp(name, XTC_LABEL_DROP) == 0
629 || strcmp(name, XTC_LABEL_QUEUE) == 0
630 || strcmp(name, XTC_LABEL_RETURN) == 0)
631 name = "standard";
632
633 for (ptr = xtables_targets; ptr; ptr = ptr->next) {
634 if (strcmp(name, ptr->name) == 0)
635 break;
636 }
637
638#ifndef NO_SHARED_LIBS
Jan Engelhardt2338efd2009-01-27 15:23:01 +0100639 if (!ptr && tryload != XTF_DONT_LOAD && tryload != XTF_DURING_LOAD) {
Jan Engelhardt77f48c22009-02-07 19:59:53 +0100640 ptr = load_extension(xtables_libdir, afinfo->libprefix,
Jan Engelhardt39bf9c82009-01-27 15:59:06 +0100641 name, true);
Yasuyuki KOZAKAI170af8c2007-08-04 05:22:17 +0000642
Jan Engelhardt2338efd2009-01-27 15:23:01 +0100643 if (ptr == NULL && tryload == XTF_LOAD_MUST_SUCCEED)
Jamal Hadi Salim8b7baeb2009-02-11 13:05:43 +0100644 xt_params->exit_err(PARAMETER_PROBLEM,
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +0000645 "Couldn't load target `%s':%s\n",
646 name, dlerror());
647 }
648#else
649 if (ptr && !ptr->loaded) {
Jan Engelhardt2338efd2009-01-27 15:23:01 +0100650 if (tryload != XTF_DONT_LOAD)
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +0000651 ptr->loaded = 1;
652 else
653 ptr = NULL;
654 }
Peter Volkov854d2d92009-03-24 11:09:16 +0300655 if (ptr == NULL && tryload == XTF_LOAD_MUST_SUCCEED) {
Jamal Hadi Salim8b7baeb2009-02-11 13:05:43 +0100656 xt_params->exit_err(PARAMETER_PROBLEM,
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +0000657 "Couldn't find target `%s'\n", name);
658 }
659#endif
660
661 if (ptr)
662 ptr->used = 1;
663
664 return ptr;
665}
666
667static int compatible_revision(const char *name, u_int8_t revision, int opt)
668{
669 struct xt_get_revision rev;
670 socklen_t s = sizeof(rev);
671 int max_rev, sockfd;
672
Jan Engelhardt77f48c22009-02-07 19:59:53 +0100673 sockfd = socket(afinfo->family, SOCK_RAW, IPPROTO_RAW);
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +0000674 if (sockfd < 0) {
Patrick McHardydf1ef382007-12-03 15:32:28 +0000675 if (errno == EPERM) {
676 /* revision 0 is always supported. */
677 if (revision != 0)
678 fprintf(stderr, "Could not determine whether "
679 "revision %u is supported, "
680 "assuming it is.\n",
681 revision);
682 return 1;
683 }
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +0000684 fprintf(stderr, "Could not open socket to kernel: %s\n",
685 strerror(errno));
686 exit(1);
687 }
688
Jan Engelhardtc021c3c2009-01-27 15:10:05 +0100689 xtables_load_ko(xtables_modprobe_program, true);
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +0000690
691 strcpy(rev.name, name);
692 rev.revision = revision;
693
Jan Engelhardt77f48c22009-02-07 19:59:53 +0100694 max_rev = getsockopt(sockfd, afinfo->ipproto, opt, &rev, &s);
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +0000695 if (max_rev < 0) {
696 /* Definitely don't support this? */
697 if (errno == ENOENT || errno == EPROTONOSUPPORT) {
698 close(sockfd);
699 return 0;
700 } else if (errno == ENOPROTOOPT) {
701 close(sockfd);
702 /* Assume only revision 0 support (old kernel) */
703 return (revision == 0);
704 } else {
705 fprintf(stderr, "getsockopt failed strangely: %s\n",
706 strerror(errno));
707 exit(1);
708 }
709 }
710 close(sockfd);
711 return 1;
712}
713
714
715static int compatible_match_revision(const char *name, u_int8_t revision)
716{
Jan Engelhardt77f48c22009-02-07 19:59:53 +0100717 return compatible_revision(name, revision, afinfo->so_rev_match);
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +0000718}
719
720static int compatible_target_revision(const char *name, u_int8_t revision)
721{
Jan Engelhardt77f48c22009-02-07 19:59:53 +0100722 return compatible_revision(name, revision, afinfo->so_rev_target);
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +0000723}
724
725void xtables_register_match(struct xtables_match *me)
726{
727 struct xtables_match **i, *old;
728
Jan Engelhardtc284de52009-06-25 21:25:24 +0200729 if (me->version == NULL) {
730 fprintf(stderr, "%s: match %s<%u> is missing a version\n",
731 xt_params->program_name, me->name, me->revision);
732 exit(1);
733 }
Jan Engelhardtdacafa52009-01-27 20:56:23 +0100734 if (strcmp(me->version, XTABLES_VERSION) != 0) {
735 fprintf(stderr, "%s: match \"%s\" has version \"%s\", "
736 "but \"%s\" is required.\n",
Jamal Hadi Salim5dd19de2009-02-13 10:42:24 -0500737 xt_params->program_name, me->name,
Jan Engelhardtdacafa52009-01-27 20:56:23 +0100738 me->version, XTABLES_VERSION);
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +0000739 exit(1);
740 }
741
Jan Engelhardt0cb675b2010-06-07 11:50:25 +0200742 if (strlen(me->name) >= XT_EXTENSION_MAXNAMELEN) {
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +0000743 fprintf(stderr, "%s: target `%s' has invalid name\n",
Jamal Hadi Salim5dd19de2009-02-13 10:42:24 -0500744 xt_params->program_name, me->name);
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +0000745 exit(1);
746 }
747
748 if (me->family >= NPROTO) {
749 fprintf(stderr,
750 "%s: BUG: match %s has invalid protocol family\n",
Jamal Hadi Salim5dd19de2009-02-13 10:42:24 -0500751 xt_params->program_name, me->name);
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +0000752 exit(1);
753 }
754
755 /* ignore not interested match */
Jan Engelhardt77f48c22009-02-07 19:59:53 +0100756 if (me->family != afinfo->family && me->family != AF_UNSPEC)
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +0000757 return;
758
Jan Engelhardt2338efd2009-01-27 15:23:01 +0100759 old = xtables_find_match(me->name, XTF_DURING_LOAD, NULL);
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +0000760 if (old) {
Jan Engelhardt23545c22008-02-14 04:23:04 +0100761 if (old->revision == me->revision &&
762 old->family == me->family) {
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +0000763 fprintf(stderr,
764 "%s: match `%s' already registered.\n",
Jamal Hadi Salim5dd19de2009-02-13 10:42:24 -0500765 xt_params->program_name, me->name);
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +0000766 exit(1);
767 }
768
769 /* Now we have two (or more) options, check compatibility. */
770 if (compatible_match_revision(old->name, old->revision)
771 && old->revision > me->revision)
772 return;
773
Jan Engelhardt23545c22008-02-14 04:23:04 +0100774 /* See if new match can be used. */
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +0000775 if (!compatible_match_revision(me->name, me->revision))
776 return;
777
Jan Engelhardt23545c22008-02-14 04:23:04 +0100778 /* Prefer !AF_UNSPEC over AF_UNSPEC for same revision. */
779 if (old->revision == me->revision && me->family == AF_UNSPEC)
780 return;
781
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +0000782 /* Delete old one. */
783 for (i = &xtables_matches; *i!=old; i = &(*i)->next);
784 *i = old->next;
785 }
786
787 if (me->size != XT_ALIGN(me->size)) {
788 fprintf(stderr, "%s: match `%s' has invalid size %u.\n",
Jamal Hadi Salim5dd19de2009-02-13 10:42:24 -0500789 xt_params->program_name, me->name,
790 (unsigned int)me->size);
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +0000791 exit(1);
792 }
793
794 /* Append to list. */
795 for (i = &xtables_matches; *i; i = &(*i)->next);
796 me->next = NULL;
797 *i = me;
798
799 me->m = NULL;
800 me->mflags = 0;
801}
802
Jan Engelhardt9a8fc4f2009-06-25 17:13:46 +0200803void xtables_register_matches(struct xtables_match *match, unsigned int n)
804{
805 do {
806 xtables_register_match(&match[--n]);
807 } while (n > 0);
808}
809
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +0000810void xtables_register_target(struct xtables_target *me)
811{
812 struct xtables_target *old;
813
Jan Engelhardtc284de52009-06-25 21:25:24 +0200814 if (me->version == NULL) {
815 fprintf(stderr, "%s: target %s<%u> is missing a version\n",
816 xt_params->program_name, me->name, me->revision);
817 exit(1);
818 }
Jan Engelhardtdacafa52009-01-27 20:56:23 +0100819 if (strcmp(me->version, XTABLES_VERSION) != 0) {
820 fprintf(stderr, "%s: target \"%s\" has version \"%s\", "
821 "but \"%s\" is required.\n",
Jamal Hadi Salim5dd19de2009-02-13 10:42:24 -0500822 xt_params->program_name, me->name,
Jan Engelhardtdacafa52009-01-27 20:56:23 +0100823 me->version, XTABLES_VERSION);
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +0000824 exit(1);
825 }
826
Jan Engelhardt0cb675b2010-06-07 11:50:25 +0200827 if (strlen(me->name) >= XT_EXTENSION_MAXNAMELEN) {
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +0000828 fprintf(stderr, "%s: target `%s' has invalid name\n",
Jamal Hadi Salim5dd19de2009-02-13 10:42:24 -0500829 xt_params->program_name, me->name);
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +0000830 exit(1);
831 }
832
833 if (me->family >= NPROTO) {
834 fprintf(stderr,
835 "%s: BUG: target %s has invalid protocol family\n",
Jamal Hadi Salim5dd19de2009-02-13 10:42:24 -0500836 xt_params->program_name, me->name);
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +0000837 exit(1);
838 }
839
840 /* ignore not interested target */
Jan Engelhardt77f48c22009-02-07 19:59:53 +0100841 if (me->family != afinfo->family && me->family != AF_UNSPEC)
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +0000842 return;
843
Jan Engelhardt2338efd2009-01-27 15:23:01 +0100844 old = xtables_find_target(me->name, XTF_DURING_LOAD);
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +0000845 if (old) {
846 struct xtables_target **i;
847
Jan Engelhardt23545c22008-02-14 04:23:04 +0100848 if (old->revision == me->revision &&
849 old->family == me->family) {
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +0000850 fprintf(stderr,
851 "%s: target `%s' already registered.\n",
Jamal Hadi Salim5dd19de2009-02-13 10:42:24 -0500852 xt_params->program_name, me->name);
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +0000853 exit(1);
854 }
855
856 /* Now we have two (or more) options, check compatibility. */
857 if (compatible_target_revision(old->name, old->revision)
858 && old->revision > me->revision)
859 return;
860
Jan Engelhardt23545c22008-02-14 04:23:04 +0100861 /* See if new target can be used. */
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +0000862 if (!compatible_target_revision(me->name, me->revision))
863 return;
864
Jan Engelhardt23545c22008-02-14 04:23:04 +0100865 /* Prefer !AF_UNSPEC over AF_UNSPEC for same revision. */
866 if (old->revision == me->revision && me->family == AF_UNSPEC)
867 return;
868
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +0000869 /* Delete old one. */
870 for (i = &xtables_targets; *i!=old; i = &(*i)->next);
871 *i = old->next;
872 }
873
874 if (me->size != XT_ALIGN(me->size)) {
875 fprintf(stderr, "%s: target `%s' has invalid size %u.\n",
Jamal Hadi Salim5dd19de2009-02-13 10:42:24 -0500876 xt_params->program_name, me->name,
877 (unsigned int)me->size);
Yasuyuki KOZAKAI0d502bc2007-07-24 05:52:07 +0000878 exit(1);
879 }
880
881 /* Prepend to list. */
882 me->next = xtables_targets;
883 xtables_targets = me;
884 me->t = NULL;
885 me->tflags = 0;
886}
Jan Engelhardtaafd2692008-01-20 13:19:40 +0000887
Jan Engelhardt9a8fc4f2009-06-25 17:13:46 +0200888void xtables_register_targets(struct xtables_target *target, unsigned int n)
889{
890 do {
891 xtables_register_target(&target[--n]);
892 } while (n > 0);
893}
894
Jan Engelhardta41545c2009-01-27 21:27:19 +0100895/**
896 * xtables_param_act - act on condition
897 * @status: a constant from enum xtables_exittype
898 *
899 * %XTF_ONLY_ONCE: print error message that option may only be used once.
900 * @p1: module name (e.g. "mark")
901 * @p2(...): option in conflict (e.g. "--mark")
902 * @p3(...): condition to match on (see extensions/ for examples)
903 *
904 * %XTF_NO_INVERT: option does not support inversion
905 * @p1: module name
906 * @p2: option in conflict
907 * @p3: condition to match on
908 *
909 * %XTF_BAD_VALUE: bad value for option
910 * @p1: module name
911 * @p2: option with which the problem occured (e.g. "--mark")
912 * @p3: string the user passed in (e.g. "99999999999999")
913 *
914 * %XTF_ONE_ACTION: two mutually exclusive actions have been specified
915 * @p1: module name
916 *
917 * Displays an error message and exits the program.
918 */
919void xtables_param_act(unsigned int status, const char *p1, ...)
Jan Engelhardtaafd2692008-01-20 13:19:40 +0000920{
921 const char *p2, *p3;
922 va_list args;
923 bool b;
924
925 va_start(args, p1);
926
927 switch (status) {
Jan Engelhardta41545c2009-01-27 21:27:19 +0100928 case XTF_ONLY_ONCE:
Jan Engelhardtaafd2692008-01-20 13:19:40 +0000929 p2 = va_arg(args, const char *);
930 b = va_arg(args, unsigned int);
931 if (!b)
932 return;
Jamal Hadi Salim8b7baeb2009-02-11 13:05:43 +0100933 xt_params->exit_err(PARAMETER_PROBLEM,
Jan Engelhardtaafd2692008-01-20 13:19:40 +0000934 "%s: \"%s\" option may only be specified once",
935 p1, p2);
936 break;
Jan Engelhardta41545c2009-01-27 21:27:19 +0100937 case XTF_NO_INVERT:
Jan Engelhardtaafd2692008-01-20 13:19:40 +0000938 p2 = va_arg(args, const char *);
939 b = va_arg(args, unsigned int);
940 if (!b)
941 return;
Jamal Hadi Salim8b7baeb2009-02-11 13:05:43 +0100942 xt_params->exit_err(PARAMETER_PROBLEM,
Jan Engelhardtaafd2692008-01-20 13:19:40 +0000943 "%s: \"%s\" option cannot be inverted", p1, p2);
944 break;
Jan Engelhardta41545c2009-01-27 21:27:19 +0100945 case XTF_BAD_VALUE:
Jan Engelhardtaafd2692008-01-20 13:19:40 +0000946 p2 = va_arg(args, const char *);
947 p3 = va_arg(args, const char *);
Jamal Hadi Salim8b7baeb2009-02-11 13:05:43 +0100948 xt_params->exit_err(PARAMETER_PROBLEM,
Jan Engelhardtaafd2692008-01-20 13:19:40 +0000949 "%s: Bad value for \"%s\" option: \"%s\"",
950 p1, p2, p3);
951 break;
Jan Engelhardta41545c2009-01-27 21:27:19 +0100952 case XTF_ONE_ACTION:
Jan Engelhardtaafd2692008-01-20 13:19:40 +0000953 b = va_arg(args, unsigned int);
954 if (!b)
955 return;
Jamal Hadi Salim8b7baeb2009-02-11 13:05:43 +0100956 xt_params->exit_err(PARAMETER_PROBLEM,
Jan Engelhardtaafd2692008-01-20 13:19:40 +0000957 "%s: At most one action is possible", p1);
958 break;
959 default:
Jamal Hadi Salim8b7baeb2009-02-11 13:05:43 +0100960 xt_params->exit_err(status, p1, args);
Jan Engelhardtaafd2692008-01-20 13:19:40 +0000961 break;
962 }
963
964 va_end(args);
965}
Jan Engelhardt08b16162008-01-20 13:36:08 +0000966
Jan Engelhardte44ea7f2009-01-30 03:55:09 +0100967const char *xtables_ipaddr_to_numeric(const struct in_addr *addrp)
Jan Engelhardt08b16162008-01-20 13:36:08 +0000968{
969 static char buf[20];
970 const unsigned char *bytep = (const void *)&addrp->s_addr;
971
972 sprintf(buf, "%u.%u.%u.%u", bytep[0], bytep[1], bytep[2], bytep[3]);
973 return buf;
974}
975
976static const char *ipaddr_to_host(const struct in_addr *addr)
977{
978 struct hostent *host;
979
980 host = gethostbyaddr(addr, sizeof(struct in_addr), AF_INET);
981 if (host == NULL)
982 return NULL;
983
984 return host->h_name;
985}
986
987static const char *ipaddr_to_network(const struct in_addr *addr)
988{
989 struct netent *net;
990
991 if ((net = getnetbyaddr(ntohl(addr->s_addr), AF_INET)) != NULL)
992 return net->n_name;
993
994 return NULL;
995}
996
Jan Engelhardte44ea7f2009-01-30 03:55:09 +0100997const char *xtables_ipaddr_to_anyname(const struct in_addr *addr)
Jan Engelhardt08b16162008-01-20 13:36:08 +0000998{
999 const char *name;
1000
1001 if ((name = ipaddr_to_host(addr)) != NULL ||
1002 (name = ipaddr_to_network(addr)) != NULL)
1003 return name;
1004
Jan Engelhardte44ea7f2009-01-30 03:55:09 +01001005 return xtables_ipaddr_to_numeric(addr);
Jan Engelhardt08b16162008-01-20 13:36:08 +00001006}
1007
Jan Engelhardte44ea7f2009-01-30 03:55:09 +01001008const char *xtables_ipmask_to_numeric(const struct in_addr *mask)
Jan Engelhardt08b16162008-01-20 13:36:08 +00001009{
1010 static char buf[20];
1011 uint32_t maskaddr, bits;
1012 int i;
1013
1014 maskaddr = ntohl(mask->s_addr);
1015
1016 if (maskaddr == 0xFFFFFFFFL)
1017 /* we don't want to see "/32" */
1018 return "";
1019
1020 i = 32;
1021 bits = 0xFFFFFFFEL;
1022 while (--i >= 0 && maskaddr != bits)
1023 bits <<= 1;
1024 if (i >= 0)
1025 sprintf(buf, "/%d", i);
1026 else
1027 /* mask was not a decent combination of 1's and 0's */
Jan Engelhardte44ea7f2009-01-30 03:55:09 +01001028 sprintf(buf, "/%s", xtables_ipaddr_to_numeric(mask));
Jan Engelhardt08b16162008-01-20 13:36:08 +00001029
1030 return buf;
1031}
1032
Jan Engelhardtbd943842008-01-20 13:38:08 +00001033static struct in_addr *__numeric_to_ipaddr(const char *dotted, bool is_mask)
1034{
1035 static struct in_addr addr;
1036 unsigned char *addrp;
1037 unsigned int onebyte;
1038 char buf[20], *p, *q;
1039 int i;
1040
1041 /* copy dotted string, because we need to modify it */
1042 strncpy(buf, dotted, sizeof(buf) - 1);
1043 buf[sizeof(buf) - 1] = '\0';
1044 addrp = (void *)&addr.s_addr;
1045
1046 p = buf;
1047 for (i = 0; i < 3; ++i) {
1048 if ((q = strchr(p, '.')) == NULL) {
1049 if (is_mask)
1050 return NULL;
1051
1052 /* autocomplete, this is a network address */
Jan Engelhardt5f2922c2009-01-27 18:43:01 +01001053 if (!xtables_strtoui(p, NULL, &onebyte, 0, UINT8_MAX))
Jan Engelhardtbd943842008-01-20 13:38:08 +00001054 return NULL;
1055
1056 addrp[i] = onebyte;
1057 while (i < 3)
1058 addrp[++i] = 0;
1059
1060 return &addr;
1061 }
1062
1063 *q = '\0';
Jan Engelhardt5f2922c2009-01-27 18:43:01 +01001064 if (!xtables_strtoui(p, NULL, &onebyte, 0, UINT8_MAX))
Jan Engelhardtbd943842008-01-20 13:38:08 +00001065 return NULL;
1066
1067 addrp[i] = onebyte;
1068 p = q + 1;
1069 }
1070
1071 /* we have checked 3 bytes, now we check the last one */
Jan Engelhardt5f2922c2009-01-27 18:43:01 +01001072 if (!xtables_strtoui(p, NULL, &onebyte, 0, UINT8_MAX))
Jan Engelhardtbd943842008-01-20 13:38:08 +00001073 return NULL;
1074
1075 addrp[3] = onebyte;
1076 return &addr;
1077}
1078
Jan Engelhardt1e01b0b2009-01-30 04:20:32 +01001079struct in_addr *xtables_numeric_to_ipaddr(const char *dotted)
Jan Engelhardtbd943842008-01-20 13:38:08 +00001080{
1081 return __numeric_to_ipaddr(dotted, false);
1082}
1083
Jan Engelhardt1e01b0b2009-01-30 04:20:32 +01001084struct in_addr *xtables_numeric_to_ipmask(const char *dotted)
Jan Engelhardtbd943842008-01-20 13:38:08 +00001085{
1086 return __numeric_to_ipaddr(dotted, true);
1087}
1088
1089static struct in_addr *network_to_ipaddr(const char *name)
1090{
1091 static struct in_addr addr;
1092 struct netent *net;
1093
1094 if ((net = getnetbyname(name)) != NULL) {
1095 if (net->n_addrtype != AF_INET)
1096 return NULL;
1097 addr.s_addr = htonl(net->n_net);
1098 return &addr;
1099 }
1100
1101 return NULL;
1102}
1103
1104static struct in_addr *host_to_ipaddr(const char *name, unsigned int *naddr)
1105{
1106 struct hostent *host;
1107 struct in_addr *addr;
1108 unsigned int i;
1109
1110 *naddr = 0;
1111 if ((host = gethostbyname(name)) != NULL) {
1112 if (host->h_addrtype != AF_INET ||
1113 host->h_length != sizeof(struct in_addr))
1114 return NULL;
1115
1116 while (host->h_addr_list[*naddr] != NULL)
1117 ++*naddr;
Jan Engelhardt630ef482009-01-27 14:58:41 +01001118 addr = xtables_calloc(*naddr, sizeof(struct in_addr) * *naddr);
Jan Engelhardtbd943842008-01-20 13:38:08 +00001119 for (i = 0; i < *naddr; i++)
1120 memcpy(&addr[i], host->h_addr_list[i],
1121 sizeof(struct in_addr));
1122 return addr;
1123 }
1124
1125 return NULL;
1126}
1127
1128static struct in_addr *
1129ipparse_hostnetwork(const char *name, unsigned int *naddrs)
1130{
1131 struct in_addr *addrptmp, *addrp;
1132
Jan Engelhardt1e01b0b2009-01-30 04:20:32 +01001133 if ((addrptmp = xtables_numeric_to_ipaddr(name)) != NULL ||
Jan Engelhardtbd943842008-01-20 13:38:08 +00001134 (addrptmp = network_to_ipaddr(name)) != NULL) {
Jan Engelhardt630ef482009-01-27 14:58:41 +01001135 addrp = xtables_malloc(sizeof(struct in_addr));
Jan Engelhardtbd943842008-01-20 13:38:08 +00001136 memcpy(addrp, addrptmp, sizeof(*addrp));
1137 *naddrs = 1;
1138 return addrp;
1139 }
1140 if ((addrptmp = host_to_ipaddr(name, naddrs)) != NULL)
1141 return addrptmp;
1142
Jamal Hadi Salim8b7baeb2009-02-11 13:05:43 +01001143 xt_params->exit_err(PARAMETER_PROBLEM, "host/network `%s' not found", name);
Jan Engelhardtbd943842008-01-20 13:38:08 +00001144}
1145
1146static struct in_addr *parse_ipmask(const char *mask)
1147{
1148 static struct in_addr maskaddr;
1149 struct in_addr *addrp;
1150 unsigned int bits;
1151
1152 if (mask == NULL) {
1153 /* no mask at all defaults to 32 bits */
1154 maskaddr.s_addr = 0xFFFFFFFF;
1155 return &maskaddr;
1156 }
Jan Engelhardt1e01b0b2009-01-30 04:20:32 +01001157 if ((addrp = xtables_numeric_to_ipmask(mask)) != NULL)
Jan Engelhardtbd943842008-01-20 13:38:08 +00001158 /* dotted_to_addr already returns a network byte order addr */
1159 return addrp;
Jan Engelhardt5f2922c2009-01-27 18:43:01 +01001160 if (!xtables_strtoui(mask, NULL, &bits, 0, 32))
Jamal Hadi Salim8b7baeb2009-02-11 13:05:43 +01001161 xt_params->exit_err(PARAMETER_PROBLEM,
Jan Engelhardtbd943842008-01-20 13:38:08 +00001162 "invalid mask `%s' specified", mask);
1163 if (bits != 0) {
1164 maskaddr.s_addr = htonl(0xFFFFFFFF << (32 - bits));
1165 return &maskaddr;
1166 }
1167
1168 maskaddr.s_addr = 0U;
1169 return &maskaddr;
1170}
1171
Michael Granzow332e4ac2009-04-09 18:24:36 +01001172void xtables_ipparse_multiple(const char *name, struct in_addr **addrpp,
1173 struct in_addr **maskpp, unsigned int *naddrs)
1174{
1175 struct in_addr *addrp;
1176 char buf[256], *p;
1177 unsigned int len, i, j, n, count = 1;
1178 const char *loop = name;
1179
1180 while ((loop = strchr(loop, ',')) != NULL) {
1181 ++count;
1182 ++loop; /* skip ',' */
1183 }
1184
1185 *addrpp = xtables_malloc(sizeof(struct in_addr) * count);
1186 *maskpp = xtables_malloc(sizeof(struct in_addr) * count);
1187
1188 loop = name;
1189
1190 for (i = 0; i < count; ++i) {
1191 if (loop == NULL)
1192 break;
1193 if (*loop == ',')
1194 ++loop;
1195 if (*loop == '\0')
1196 break;
1197 p = strchr(loop, ',');
1198 if (p != NULL)
1199 len = p - loop;
1200 else
1201 len = strlen(loop);
1202 if (len == 0 || sizeof(buf) - 1 < len)
1203 break;
1204
1205 strncpy(buf, loop, len);
1206 buf[len] = '\0';
1207 loop += len;
1208 if ((p = strrchr(buf, '/')) != NULL) {
1209 *p = '\0';
1210 addrp = parse_ipmask(p + 1);
1211 } else {
1212 addrp = parse_ipmask(NULL);
1213 }
1214 memcpy(*maskpp + i, addrp, sizeof(*addrp));
1215
1216 /* if a null mask is given, the name is ignored, like in "any/0" */
1217 if ((*maskpp + i)->s_addr == 0)
1218 /*
1219 * A bit pointless to process multiple addresses
1220 * in this case...
1221 */
1222 strcpy(buf, "0.0.0.0");
1223
1224 addrp = ipparse_hostnetwork(buf, &n);
1225 if (n > 1) {
1226 count += n - 1;
1227 *addrpp = xtables_realloc(*addrpp,
1228 sizeof(struct in_addr) * count);
1229 *maskpp = xtables_realloc(*maskpp,
1230 sizeof(struct in_addr) * count);
1231 for (j = 0; j < n; ++j)
1232 /* for each new addr */
1233 memcpy(*addrpp + i + j, addrp + j,
1234 sizeof(*addrp));
1235 for (j = 1; j < n; ++j)
1236 /* for each new mask */
1237 memcpy(*maskpp + i + j, *maskpp + i,
1238 sizeof(*addrp));
1239 i += n - 1;
1240 } else {
1241 memcpy(*addrpp + i, addrp, sizeof(*addrp));
1242 }
1243 /* free what ipparse_hostnetwork had allocated: */
1244 free(addrp);
1245 }
1246 *naddrs = count;
1247 for (i = 0; i < n; ++i)
1248 (*addrpp+i)->s_addr &= (*maskpp+i)->s_addr;
1249}
1250
1251
Jan Engelhardta0baae82009-01-30 04:32:50 +01001252/**
1253 * xtables_ipparse_any - transform arbitrary name to in_addr
1254 *
1255 * Possible inputs (pseudo regex):
1256 * m{^($hostname|$networkname|$ipaddr)(/$mask)?}
1257 * "1.2.3.4/5", "1.2.3.4", "hostname", "networkname"
1258 */
1259void xtables_ipparse_any(const char *name, struct in_addr **addrpp,
1260 struct in_addr *maskp, unsigned int *naddrs)
Jan Engelhardtbd943842008-01-20 13:38:08 +00001261{
1262 unsigned int i, j, k, n;
1263 struct in_addr *addrp;
1264 char buf[256], *p;
1265
1266 strncpy(buf, name, sizeof(buf) - 1);
1267 buf[sizeof(buf) - 1] = '\0';
1268 if ((p = strrchr(buf, '/')) != NULL) {
1269 *p = '\0';
1270 addrp = parse_ipmask(p + 1);
1271 } else {
1272 addrp = parse_ipmask(NULL);
1273 }
1274 memcpy(maskp, addrp, sizeof(*maskp));
1275
1276 /* if a null mask is given, the name is ignored, like in "any/0" */
1277 if (maskp->s_addr == 0U)
1278 strcpy(buf, "0.0.0.0");
1279
1280 addrp = *addrpp = ipparse_hostnetwork(buf, naddrs);
1281 n = *naddrs;
1282 for (i = 0, j = 0; i < n; ++i) {
1283 addrp[j++].s_addr &= maskp->s_addr;
1284 for (k = 0; k < j - 1; ++k)
1285 if (addrp[k].s_addr == addrp[j-1].s_addr) {
1286 --*naddrs;
1287 --j;
1288 break;
1289 }
1290 }
1291}
1292
Jan Engelhardte44ea7f2009-01-30 03:55:09 +01001293const char *xtables_ip6addr_to_numeric(const struct in6_addr *addrp)
Jan Engelhardt08b16162008-01-20 13:36:08 +00001294{
1295 /* 0000:0000:0000:0000:0000:000.000.000.000
1296 * 0000:0000:0000:0000:0000:0000:0000:0000 */
1297 static char buf[50+1];
1298 return inet_ntop(AF_INET6, addrp, buf, sizeof(buf));
1299}
1300
1301static const char *ip6addr_to_host(const struct in6_addr *addr)
1302{
1303 static char hostname[NI_MAXHOST];
1304 struct sockaddr_in6 saddr;
1305 int err;
1306
1307 memset(&saddr, 0, sizeof(struct sockaddr_in6));
1308 memcpy(&saddr.sin6_addr, addr, sizeof(*addr));
1309 saddr.sin6_family = AF_INET6;
1310
1311 err = getnameinfo((const void *)&saddr, sizeof(struct sockaddr_in6),
1312 hostname, sizeof(hostname) - 1, NULL, 0, 0);
1313 if (err != 0) {
1314#ifdef DEBUG
1315 fprintf(stderr,"IP2Name: %s\n",gai_strerror(err));
1316#endif
1317 return NULL;
1318 }
1319
1320#ifdef DEBUG
1321 fprintf (stderr, "\naddr2host: %s\n", hostname);
1322#endif
1323 return hostname;
1324}
1325
Jan Engelhardte44ea7f2009-01-30 03:55:09 +01001326const char *xtables_ip6addr_to_anyname(const struct in6_addr *addr)
Jan Engelhardt08b16162008-01-20 13:36:08 +00001327{
1328 const char *name;
1329
1330 if ((name = ip6addr_to_host(addr)) != NULL)
1331 return name;
1332
Jan Engelhardte44ea7f2009-01-30 03:55:09 +01001333 return xtables_ip6addr_to_numeric(addr);
Jan Engelhardt08b16162008-01-20 13:36:08 +00001334}
1335
1336static int ip6addr_prefix_length(const struct in6_addr *k)
1337{
1338 unsigned int bits = 0;
1339 uint32_t a, b, c, d;
1340
Jan Engelhardt48607812008-06-10 15:17:53 +02001341 a = ntohl(k->s6_addr32[0]);
1342 b = ntohl(k->s6_addr32[1]);
1343 c = ntohl(k->s6_addr32[2]);
1344 d = ntohl(k->s6_addr32[3]);
Jan Engelhardt08b16162008-01-20 13:36:08 +00001345 while (a & 0x80000000U) {
1346 ++bits;
1347 a <<= 1;
1348 a |= (b >> 31) & 1;
1349 b <<= 1;
1350 b |= (c >> 31) & 1;
1351 c <<= 1;
1352 c |= (d >> 31) & 1;
1353 d <<= 1;
1354 }
1355 if (a != 0 || b != 0 || c != 0 || d != 0)
1356 return -1;
1357 return bits;
1358}
1359
Jan Engelhardte44ea7f2009-01-30 03:55:09 +01001360const char *xtables_ip6mask_to_numeric(const struct in6_addr *addrp)
Jan Engelhardt08b16162008-01-20 13:36:08 +00001361{
1362 static char buf[50+2];
1363 int l = ip6addr_prefix_length(addrp);
1364
1365 if (l == -1) {
1366 strcpy(buf, "/");
Jan Engelhardte44ea7f2009-01-30 03:55:09 +01001367 strcat(buf, xtables_ip6addr_to_numeric(addrp));
Jan Engelhardt08b16162008-01-20 13:36:08 +00001368 return buf;
1369 }
1370 sprintf(buf, "/%d", l);
1371 return buf;
1372}
Jan Engelhardtbd943842008-01-20 13:38:08 +00001373
Jan Engelhardt1e01b0b2009-01-30 04:20:32 +01001374struct in6_addr *xtables_numeric_to_ip6addr(const char *num)
Jan Engelhardtbd943842008-01-20 13:38:08 +00001375{
1376 static struct in6_addr ap;
1377 int err;
1378
1379 if ((err = inet_pton(AF_INET6, num, &ap)) == 1)
1380 return &ap;
1381#ifdef DEBUG
1382 fprintf(stderr, "\nnumeric2addr: %d\n", err);
1383#endif
1384 return NULL;
1385}
1386
1387static struct in6_addr *
1388host_to_ip6addr(const char *name, unsigned int *naddr)
1389{
1390 static struct in6_addr *addr;
1391 struct addrinfo hints;
1392 struct addrinfo *res;
1393 int err;
1394
1395 memset(&hints, 0, sizeof(hints));
1396 hints.ai_flags = AI_CANONNAME;
1397 hints.ai_family = AF_INET6;
1398 hints.ai_socktype = SOCK_RAW;
1399 hints.ai_protocol = IPPROTO_IPV6;
1400 hints.ai_next = NULL;
1401
1402 *naddr = 0;
1403 if ((err = getaddrinfo(name, NULL, &hints, &res)) != 0) {
1404#ifdef DEBUG
1405 fprintf(stderr,"Name2IP: %s\n",gai_strerror(err));
1406#endif
1407 return NULL;
1408 } else {
1409 if (res->ai_family != AF_INET6 ||
1410 res->ai_addrlen != sizeof(struct sockaddr_in6))
1411 return NULL;
1412
1413#ifdef DEBUG
1414 fprintf(stderr, "resolved: len=%d %s ", res->ai_addrlen,
Patrick McHardy30290ae2010-05-20 15:41:03 +02001415 xtables_ip6addr_to_numeric(&((struct sockaddr_in6 *)res->ai_addr)->sin6_addr));
Jan Engelhardtbd943842008-01-20 13:38:08 +00001416#endif
1417 /* Get the first element of the address-chain */
Jan Engelhardt630ef482009-01-27 14:58:41 +01001418 addr = xtables_malloc(sizeof(struct in6_addr));
Jan Engelhardtbd943842008-01-20 13:38:08 +00001419 memcpy(addr, &((const struct sockaddr_in6 *)res->ai_addr)->sin6_addr,
1420 sizeof(struct in6_addr));
1421 freeaddrinfo(res);
1422 *naddr = 1;
1423 return addr;
1424 }
1425
1426 return NULL;
1427}
1428
1429static struct in6_addr *network_to_ip6addr(const char *name)
1430{
1431 /* abort();*/
1432 /* TODO: not implemented yet, but the exception breaks the
1433 * name resolvation */
1434 return NULL;
1435}
1436
1437static struct in6_addr *
1438ip6parse_hostnetwork(const char *name, unsigned int *naddrs)
1439{
1440 struct in6_addr *addrp, *addrptmp;
1441
Jan Engelhardt1e01b0b2009-01-30 04:20:32 +01001442 if ((addrptmp = xtables_numeric_to_ip6addr(name)) != NULL ||
Jan Engelhardtbd943842008-01-20 13:38:08 +00001443 (addrptmp = network_to_ip6addr(name)) != NULL) {
Jan Engelhardt630ef482009-01-27 14:58:41 +01001444 addrp = xtables_malloc(sizeof(struct in6_addr));
Jan Engelhardtbd943842008-01-20 13:38:08 +00001445 memcpy(addrp, addrptmp, sizeof(*addrp));
1446 *naddrs = 1;
1447 return addrp;
1448 }
1449 if ((addrp = host_to_ip6addr(name, naddrs)) != NULL)
1450 return addrp;
1451
Jamal Hadi Salim8b7baeb2009-02-11 13:05:43 +01001452 xt_params->exit_err(PARAMETER_PROBLEM, "host/network `%s' not found", name);
Jan Engelhardtbd943842008-01-20 13:38:08 +00001453}
1454
1455static struct in6_addr *parse_ip6mask(char *mask)
1456{
1457 static struct in6_addr maskaddr;
1458 struct in6_addr *addrp;
1459 unsigned int bits;
1460
1461 if (mask == NULL) {
1462 /* no mask at all defaults to 128 bits */
1463 memset(&maskaddr, 0xff, sizeof maskaddr);
1464 return &maskaddr;
1465 }
Jan Engelhardt1e01b0b2009-01-30 04:20:32 +01001466 if ((addrp = xtables_numeric_to_ip6addr(mask)) != NULL)
Jan Engelhardtbd943842008-01-20 13:38:08 +00001467 return addrp;
Jan Engelhardt5f2922c2009-01-27 18:43:01 +01001468 if (!xtables_strtoui(mask, NULL, &bits, 0, 128))
Jamal Hadi Salim8b7baeb2009-02-11 13:05:43 +01001469 xt_params->exit_err(PARAMETER_PROBLEM,
Jan Engelhardtbd943842008-01-20 13:38:08 +00001470 "invalid mask `%s' specified", mask);
1471 if (bits != 0) {
1472 char *p = (void *)&maskaddr;
1473 memset(p, 0xff, bits / 8);
1474 memset(p + (bits / 8) + 1, 0, (128 - bits) / 8);
1475 p[bits/8] = 0xff << (8 - (bits & 7));
1476 return &maskaddr;
1477 }
1478
1479 memset(&maskaddr, 0, sizeof(maskaddr));
1480 return &maskaddr;
1481}
1482
Michael Granzow332e4ac2009-04-09 18:24:36 +01001483void
1484xtables_ip6parse_multiple(const char *name, struct in6_addr **addrpp,
1485 struct in6_addr **maskpp, unsigned int *naddrs)
1486{
Olaf Rempel58df9012009-09-20 13:24:11 +02001487 static const struct in6_addr zero_addr;
Michael Granzow332e4ac2009-04-09 18:24:36 +01001488 struct in6_addr *addrp;
1489 char buf[256], *p;
1490 unsigned int len, i, j, n, count = 1;
1491 const char *loop = name;
1492
1493 while ((loop = strchr(loop, ',')) != NULL) {
1494 ++count;
1495 ++loop; /* skip ',' */
1496 }
1497
1498 *addrpp = xtables_malloc(sizeof(struct in6_addr) * count);
1499 *maskpp = xtables_malloc(sizeof(struct in6_addr) * count);
1500
1501 loop = name;
1502
1503 for (i = 0; i < count /*NB: count can grow*/; ++i) {
1504 if (loop == NULL)
1505 break;
1506 if (*loop == ',')
1507 ++loop;
1508 if (*loop == '\0')
1509 break;
1510 p = strchr(loop, ',');
1511 if (p != NULL)
1512 len = p - loop;
1513 else
1514 len = strlen(loop);
1515 if (len == 0 || sizeof(buf) - 1 < len)
1516 break;
1517
1518 strncpy(buf, loop, len);
1519 buf[len] = '\0';
1520 loop += len;
1521 if ((p = strrchr(buf, '/')) != NULL) {
1522 *p = '\0';
1523 addrp = parse_ip6mask(p + 1);
1524 } else {
1525 addrp = parse_ip6mask(NULL);
1526 }
1527 memcpy(*maskpp + i, addrp, sizeof(*addrp));
1528
1529 /* if a null mask is given, the name is ignored, like in "any/0" */
Olaf Rempel58df9012009-09-20 13:24:11 +02001530 if (memcmp(*maskpp + i, &zero_addr, sizeof(zero_addr)) == 0)
Michael Granzow332e4ac2009-04-09 18:24:36 +01001531 strcpy(buf, "::");
1532
1533 addrp = ip6parse_hostnetwork(buf, &n);
1534 /* ip6parse_hostnetwork only ever returns one IP
1535 address (it exits if the resolution fails).
1536 Therefore, n will always be 1 here. Leaving the
1537 code below in anyway in case ip6parse_hostnetwork
1538 is improved some day to behave like
1539 ipparse_hostnetwork: */
1540 if (n > 1) {
1541 count += n - 1;
1542 *addrpp = xtables_realloc(*addrpp,
1543 sizeof(struct in6_addr) * count);
1544 *maskpp = xtables_realloc(*maskpp,
1545 sizeof(struct in6_addr) * count);
1546 for (j = 0; j < n; ++j)
1547 /* for each new addr */
1548 memcpy(*addrpp + i + j, addrp + j,
1549 sizeof(*addrp));
1550 for (j = 1; j < n; ++j)
1551 /* for each new mask */
1552 memcpy(*maskpp + i + j, *maskpp + i,
1553 sizeof(*addrp));
1554 i += n - 1;
1555 } else {
1556 memcpy(*addrpp + i, addrp, sizeof(*addrp));
1557 }
1558 /* free what ip6parse_hostnetwork had allocated: */
1559 free(addrp);
1560 }
1561 *naddrs = count;
1562 for (i = 0; i < n; ++i)
1563 for (j = 0; j < 4; ++j)
1564 (*addrpp+i)->s6_addr32[j] &= (*maskpp+i)->s6_addr32[j];
1565}
1566
Jan Engelhardta0baae82009-01-30 04:32:50 +01001567void xtables_ip6parse_any(const char *name, struct in6_addr **addrpp,
1568 struct in6_addr *maskp, unsigned int *naddrs)
Jan Engelhardtbd943842008-01-20 13:38:08 +00001569{
Jan Engelhardt9c0fa7d2009-04-03 22:40:35 +02001570 static const struct in6_addr zero_addr;
Jan Engelhardtbd943842008-01-20 13:38:08 +00001571 struct in6_addr *addrp;
1572 unsigned int i, j, k, n;
1573 char buf[256], *p;
1574
1575 strncpy(buf, name, sizeof(buf) - 1);
1576 buf[sizeof(buf)-1] = '\0';
1577 if ((p = strrchr(buf, '/')) != NULL) {
1578 *p = '\0';
1579 addrp = parse_ip6mask(p + 1);
1580 } else {
1581 addrp = parse_ip6mask(NULL);
1582 }
1583 memcpy(maskp, addrp, sizeof(*maskp));
1584
1585 /* if a null mask is given, the name is ignored, like in "any/0" */
Jan Engelhardt9c0fa7d2009-04-03 22:40:35 +02001586 if (memcmp(maskp, &zero_addr, sizeof(zero_addr)) == 0)
Jan Engelhardtbd943842008-01-20 13:38:08 +00001587 strcpy(buf, "::");
1588
1589 addrp = *addrpp = ip6parse_hostnetwork(buf, naddrs);
1590 n = *naddrs;
1591 for (i = 0, j = 0; i < n; ++i) {
1592 for (k = 0; k < 4; ++k)
Yasuyuki Kozakai5a2208c2008-06-04 15:16:03 +02001593 addrp[j].s6_addr32[k] &= maskp->s6_addr32[k];
Jan Engelhardtbd943842008-01-20 13:38:08 +00001594 ++j;
1595 for (k = 0; k < j - 1; ++k)
1596 if (IN6_ARE_ADDR_EQUAL(&addrp[k], &addrp[j - 1])) {
1597 --*naddrs;
1598 --j;
1599 break;
1600 }
1601 }
1602}
Max Kellermanna5d09942008-01-29 13:44:34 +00001603
Jan Engelhardta0baae82009-01-30 04:32:50 +01001604void xtables_save_string(const char *value)
Max Kellermanna5d09942008-01-29 13:44:34 +00001605{
1606 static const char no_quote_chars[] = "_-0123456789"
1607 "abcdefghijklmnopqrstuvwxyz"
1608 "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
1609 static const char escape_chars[] = "\"\\'";
1610 size_t length;
1611 const char *p;
1612
1613 length = strcspn(value, no_quote_chars);
1614 if (length > 0 && value[length] == 0) {
1615 /* no quoting required */
1616 fputs(value, stdout);
1617 putchar(' ');
1618 } else {
1619 /* there is at least one dangerous character in the
1620 value, which we have to quote. Write double quotes
1621 around the value and escape special characters with
1622 a backslash */
1623 putchar('"');
1624
1625 for (p = strpbrk(value, escape_chars); p != NULL;
1626 p = strpbrk(value, escape_chars)) {
1627 if (p > value)
1628 fwrite(value, 1, p - value, stdout);
1629 putchar('\\');
1630 putchar(*p);
1631 value = p + 1;
1632 }
1633
1634 /* print the rest and finish the double quoted
1635 string */
1636 fputs(value, stdout);
1637 printf("\" ");
1638 }
1639}
Jan Engelhardt0f16c722009-01-30 04:55:38 +01001640
1641/**
1642 * Check for option-intrapositional negation.
1643 * Do not use in new code.
1644 */
1645int xtables_check_inverse(const char option[], int *invert,
Jan Engelhardtbf971282009-11-03 19:55:11 +01001646 int *my_optind, int argc, char **argv)
Jan Engelhardt0f16c722009-01-30 04:55:38 +01001647{
Jan Engelhardt2be22fb2009-10-24 00:08:09 +02001648 if (option == NULL || strcmp(option, "!") != 0)
1649 return false;
Jan Engelhardt0f16c722009-01-30 04:55:38 +01001650
Jan Engelhardt2be22fb2009-10-24 00:08:09 +02001651 fprintf(stderr, "Using intrapositioned negation "
1652 "(`--option ! this`) is deprecated in favor of "
1653 "extrapositioned (`! --option this`).\n");
1654
1655 if (*invert)
1656 xt_params->exit_err(PARAMETER_PROBLEM,
1657 "Multiple `!' flags not allowed");
1658 *invert = true;
1659 if (my_optind != NULL) {
Jan Engelhardtbf971282009-11-03 19:55:11 +01001660 optarg = argv[*my_optind];
Jan Engelhardt2be22fb2009-10-24 00:08:09 +02001661 ++*my_optind;
1662 if (argc && *my_optind > argc)
Jamal Hadi Salim8b7baeb2009-02-11 13:05:43 +01001663 xt_params->exit_err(PARAMETER_PROBLEM,
Jan Engelhardt2be22fb2009-10-24 00:08:09 +02001664 "no argument following `!'");
Jan Engelhardt0f16c722009-01-30 04:55:38 +01001665 }
Jan Engelhardt2be22fb2009-10-24 00:08:09 +02001666
1667 return true;
Jan Engelhardt0f16c722009-01-30 04:55:38 +01001668}
Jan Engelhardt1de7edf2009-01-30 05:38:11 +01001669
1670const struct xtables_pprot xtables_chain_protos[] = {
1671 {"tcp", IPPROTO_TCP},
1672 {"sctp", IPPROTO_SCTP},
1673 {"udp", IPPROTO_UDP},
1674 {"udplite", IPPROTO_UDPLITE},
1675 {"icmp", IPPROTO_ICMP},
1676 {"icmpv6", IPPROTO_ICMPV6},
1677 {"ipv6-icmp", IPPROTO_ICMPV6},
1678 {"esp", IPPROTO_ESP},
1679 {"ah", IPPROTO_AH},
1680 {"ipv6-mh", IPPROTO_MH},
1681 {"mh", IPPROTO_MH},
1682 {"all", 0},
1683 {NULL},
1684};
1685
1686u_int16_t
1687xtables_parse_protocol(const char *s)
1688{
1689 unsigned int proto;
1690
1691 if (!xtables_strtoui(s, NULL, &proto, 0, UINT8_MAX)) {
1692 struct protoent *pent;
1693
1694 /* first deal with the special case of 'all' to prevent
1695 * people from being able to redefine 'all' in nsswitch
1696 * and/or provoke expensive [not working] ldap/nis/...
1697 * lookups */
1698 if (!strcmp(s, "all"))
1699 return 0;
1700
1701 if ((pent = getprotobyname(s)))
1702 proto = pent->p_proto;
1703 else {
1704 unsigned int i;
1705 for (i = 0; i < ARRAY_SIZE(xtables_chain_protos); ++i) {
Pablo Neira Ayusoe55cc4a2009-05-12 09:51:26 +02001706 if (xtables_chain_protos[i].name == NULL)
1707 continue;
1708
Jan Engelhardt1de7edf2009-01-30 05:38:11 +01001709 if (strcmp(s, xtables_chain_protos[i].name) == 0) {
1710 proto = xtables_chain_protos[i].num;
1711 break;
1712 }
1713 }
1714 if (i == ARRAY_SIZE(xtables_chain_protos))
Jamal Hadi Salim8b7baeb2009-02-11 13:05:43 +01001715 xt_params->exit_err(PARAMETER_PROBLEM,
Jan Engelhardt1de7edf2009-01-30 05:38:11 +01001716 "unknown protocol `%s' specified",
1717 s);
1718 }
1719 }
1720
1721 return proto;
1722}