]> git.proxmox.com Git - mirror_iproute2.git/blame - tc/m_ipt.c
bridge: fdb: add support for src_vni option
[mirror_iproute2.git] / tc / m_ipt.c
CommitLineData
1ffd7fd2 1/*
ae665a52 2 * m_ipt.c iptables based targets
3d0b7439 3 * utilities mostly ripped from iptables <duh, its the linux way>
1ffd7fd2 4 *
5 * This program is free software; you can distribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version
8 * 2 of the License, or (at your option) any later version.
9 *
ae665a52 10 * Authors: J Hadi Salim (hadi@cyberus.ca)
de539ecf 11 */
1ffd7fd2 12
1ffd7fd2 13#include <sys/socket.h>
14#include <netinet/in.h>
15#include <arpa/inet.h>
16#include <iptables.h>
ece02ea0 17#include <linux/netfilter.h>
1ffd7fd2 18#include <linux/netfilter_ipv4/ip_tables.h>
19#include "utils.h"
20#include "tc_util.h"
21#include <linux/tc_act/tc_ipt.h>
22#include <stdio.h>
23#include <dlfcn.h>
24#include <getopt.h>
25#include <errno.h>
26#include <string.h>
27#include <netdb.h>
28#include <stdlib.h>
29#include <ctype.h>
30#include <stdarg.h>
1ffd7fd2 31#include <unistd.h>
32#include <fcntl.h>
33#include <sys/wait.h>
34
95dd5950
MF
35static const char *pname = "tc-ipt";
36static const char *tname = "mangle";
37static const char *pversion = "0.1";
1ffd7fd2 38
39static const char *ipthooks[] = {
40 "NF_IP_PRE_ROUTING",
41 "NF_IP_LOCAL_IN",
42 "NF_IP_FORWARD",
43 "NF_IP_LOCAL_OUT",
44 "NF_IP_POST_ROUTING",
45};
46
47static struct option original_opts[] = {
48 {"jump", 1, 0, 'j'},
49 {0, 0, 0, 0}
50};
51
9b32f896 52static struct xtables_target *t_list;
6d4662d4 53static struct option *opts = original_opts;
32a121cb 54static unsigned int global_option_offset;
1ffd7fd2 55#define OPTION_OFFSET 256
56
de539ecf 57char *lib_dir;
1ffd7fd2 58
59void
9b32f896 60xtables_register_target(struct xtables_target *me)
1ffd7fd2 61{
1ffd7fd2 62 me->next = t_list;
63 t_list = me;
64
65}
1ffd7fd2 66
9b32f896 67static void exit_tryhelp(int status)
1ffd7fd2 68{
69 fprintf(stderr, "Try `%s -h' or '%s --help' for more information.\n",
70 pname, pname);
71 exit(status);
72}
73
9b32f896 74static void exit_error(enum xtables_exittype status, char *msg, ...)
1ffd7fd2 75{
76 va_list args;
77
78 va_start(args, msg);
79 fprintf(stderr, "%s v%s: ", pname, pversion);
80 vfprintf(stderr, msg, args);
81 va_end(args);
82 fprintf(stderr, "\n");
83 if (status == PARAMETER_PROBLEM)
84 exit_tryhelp(status);
85 if (status == VERSION_PROBLEM)
86 fprintf(stderr,
87 "Perhaps iptables or your kernel needs to be upgraded.\n");
88 exit(status);
89}
90
91/* stolen from iptables 1.2.11
92They should really have them as a library so i can link to them
93Email them next time i remember
94*/
95
a589dcda 96static void free_opts(struct option *local_opts)
1ffd7fd2 97{
a589dcda
DF
98 if (local_opts != original_opts) {
99 free(local_opts);
6d4662d4
SH
100 opts = original_opts;
101 global_option_offset = 0;
102 }
1ffd7fd2 103}
104
105static struct option *
106merge_options(struct option *oldopts, const struct option *newopts,
107 unsigned int *option_offset)
108{
109 struct option *merge;
110 unsigned int num_old, num_new, i;
111
32a121cb
SH
112 for (num_old = 0; oldopts[num_old].name; num_old++);
113 for (num_new = 0; newopts[num_new].name; num_new++);
1ffd7fd2 114
115 *option_offset = global_option_offset + OPTION_OFFSET;
116
32a121cb
SH
117 merge = malloc(sizeof(struct option) * (num_new + num_old + 1));
118 memcpy(merge, oldopts, num_old * sizeof(struct option));
1ffd7fd2 119 for (i = 0; i < num_new; i++) {
120 merge[num_old + i] = newopts[i];
121 merge[num_old + i].val += *option_offset;
122 }
32a121cb 123 memset(merge + num_old + num_new, 0, sizeof(struct option));
1ffd7fd2 124
125 return merge;
126}
127
128static void *
129fw_calloc(size_t count, size_t size)
130{
131 void *p;
132
133 if ((p = (void *) calloc(count, size)) == NULL) {
134 perror("iptables: calloc failed");
135 exit(1);
136 }
137 return p;
138}
139
9b32f896 140static struct xtables_target *
1ffd7fd2 141find_t(char *name)
142{
9b32f896 143 struct xtables_target *m;
32a121cb 144
1ffd7fd2 145 for (m = t_list; m; m = m->next) {
146 if (strcmp(m->name, name) == 0)
147 return m;
148 }
149
150 return NULL;
151}
152
9b32f896 153static struct xtables_target *
de539ecf 154get_target_name(const char *name)
1ffd7fd2 155{
156 void *handle;
157 char *error;
158 char *new_name, *lname;
9b32f896 159 struct xtables_target *m;
32a121cb 160 char path[strlen(lib_dir) + sizeof("/libipt_.so") + strlen(name)];
1ffd7fd2 161
f2e27cfb
MF
162#ifdef NO_SHARED_LIBS
163 return NULL;
164#endif
165
f89bb021
PS
166 new_name = calloc(1, strlen(name) + 1);
167 lname = calloc(1, strlen(name) + 1);
168 if (!new_name)
1ffd7fd2 169 exit_error(PARAMETER_PROBLEM, "get_target_name");
f89bb021 170 if (!lname)
1ffd7fd2 171 exit_error(PARAMETER_PROBLEM, "get_target_name");
172
173 strcpy(new_name, name);
174 strcpy(lname, name);
175
176 if (isupper(lname[0])) {
177 int i;
32a121cb 178
1ffd7fd2 179 for (i = 0; i < strlen(name); i++) {
180 lname[i] = tolower(lname[i]);
181 }
182 }
183
184 if (islower(new_name[0])) {
185 int i;
32a121cb 186
1ffd7fd2 187 for (i = 0; i < strlen(new_name); i++) {
188 new_name[i] = toupper(new_name[i]);
189 }
190 }
191
53c01788
DF
192 /* try libxt_xx first */
193 sprintf(path, "%s/libxt_%s.so", lib_dir, new_name);
1ffd7fd2 194 handle = dlopen(path, RTLD_LAZY);
195 if (!handle) {
53c01788
DF
196 /* try libipt_xx next */
197 sprintf(path, "%s/libipt_%s.so", lib_dir, new_name);
1ffd7fd2 198 handle = dlopen(path, RTLD_LAZY);
53c01788
DF
199
200 if (!handle) {
32a121cb 201 sprintf(path, "%s/libxt_%s.so", lib_dir, lname);
53c01788
DF
202 handle = dlopen(path, RTLD_LAZY);
203 }
204
205 if (!handle) {
32a121cb 206 sprintf(path, "%s/libipt_%s.so", lib_dir, lname);
53c01788
DF
207 handle = dlopen(path, RTLD_LAZY);
208 }
209 /* ok, lets give up .. */
1ffd7fd2 210 if (!handle) {
211 fputs(dlerror(), stderr);
212 printf("\n");
6e34e7dc 213 free(new_name);
1a6543c5 214 free(lname);
1ffd7fd2 215 return NULL;
216 }
217 }
218
219 m = dlsym(handle, new_name);
220 if ((error = dlerror()) != NULL) {
9b32f896 221 m = (struct xtables_target *) dlsym(handle, lname);
1ffd7fd2 222 if ((error = dlerror()) != NULL) {
223 m = find_t(new_name);
32a121cb 224 if (m == NULL) {
1ffd7fd2 225 m = find_t(lname);
32a121cb 226 if (m == NULL) {
1ffd7fd2 227 fputs(error, stderr);
228 fprintf(stderr, "\n");
229 dlclose(handle);
6e34e7dc 230 free(new_name);
1a6543c5 231 free(lname);
1ffd7fd2 232 return NULL;
233 }
234 }
235 }
236 }
237
6e34e7dc 238 free(new_name);
1a6543c5 239 free(lname);
1ffd7fd2 240 return m;
241}
242
894b1c66 243static void set_revision(char *name, u_int8_t revision)
244{
245 /* Old kernel sources don't have ".revision" field,
246 * but we stole a byte from name. */
247 name[IPT_FUNCTION_MAXNAMELEN - 2] = '\0';
248 name[IPT_FUNCTION_MAXNAMELEN - 1] = revision;
249}
250
ae665a52 251/*
894b1c66 252 * we may need to check for version mismatch
253*/
9b32f896 254static int build_st(struct xtables_target *target, struct ipt_entry_target *t)
1ffd7fd2 255{
1ffd7fd2 256 if (target) {
257 size_t size;
258
259 size =
9b32f896 260 XT_ALIGN(sizeof(struct ipt_entry_target)) + target->size;
1ffd7fd2 261
32a121cb 262 if (t == NULL) {
1ffd7fd2 263 target->t = fw_calloc(1, size);
1ffd7fd2 264 target->t->u.target_size = size;
894b1c66 265
266 if (target->init != NULL)
9b32f896 267 target->init(target->t);
894b1c66 268 set_revision(target->t->u.user.name, target->revision);
1ffd7fd2 269 } else {
270 target->t = t;
271 }
272 strcpy(target->t->u.user.name, target->name);
273 return 0;
274 }
275
276 return -1;
277}
278
32a121cb 279static int parse_ipt(struct action_util *a, int *argc_p,
1ffd7fd2 280 char ***argv_p, int tca_id, struct nlmsghdr *n)
281{
9b32f896 282 struct xtables_target *m = NULL;
1ffd7fd2 283 struct ipt_entry fw;
284 struct rtattr *tail;
285 int c;
286 int rargc = *argc_p;
287 char **argv = *argv_p;
1ffd7fd2 288 int argc = 0, iargc = 0;
b317557f 289 char k[FILTER_NAMESZ];
1ffd7fd2 290 int size = 0;
291 int iok = 0, ok = 0;
292 __u32 hook = 0, index = 0;
1ffd7fd2 293
de539ecf
SH
294 lib_dir = getenv("IPTABLES_LIB_DIR");
295 if (!lib_dir)
296 lib_dir = IPT_LIB_DIR;
297
1ffd7fd2 298 {
299 int i;
32a121cb 300
1ffd7fd2 301 for (i = 0; i < rargc; i++) {
6f1940da 302 if (!argv[i] || strcmp(argv[i], "action") == 0)
1ffd7fd2 303 break;
1ffd7fd2 304 }
305 iargc = argc = i;
306 }
307
308 if (argc <= 2) {
32a121cb 309 fprintf(stderr, "bad arguments to ipt %d vs %d\n", argc, rargc);
1ffd7fd2 310 return -1;
311 }
312
1ffd7fd2 313 while (1) {
314 c = getopt_long(argc, argv, "j:", opts, NULL);
315 if (c == -1)
316 break;
317 switch (c) {
318 case 'j':
319 m = get_target_name(optarg);
32a121cb 320 if (m != NULL) {
1ffd7fd2 321
32a121cb
SH
322 if (build_st(m, NULL) < 0) {
323 printf(" %s error\n", m->name);
1ffd7fd2 324 return -1;
325 }
326 opts =
327 merge_options(opts, m->extra_opts,
328 &m->option_offset);
329 } else {
32a121cb 330 fprintf(stderr, " failed to find target %s\n\n", optarg);
1ffd7fd2 331 return -1;
332 }
333 ok++;
334 break;
335
336 default:
32a121cb 337 memset(&fw, 0, sizeof(fw));
1ffd7fd2 338 if (m) {
1ffd7fd2 339 m->parse(c - m->option_offset, argv, 0,
6d4662d4 340 &m->tflags, NULL, &m->t);
1ffd7fd2 341 } else {
32a121cb 342 fprintf(stderr, " failed to find target %s\n\n", optarg);
1ffd7fd2 343 return -1;
344
345 }
346 ok++;
1ffd7fd2 347 break;
348
349 }
350 }
351
352 if (iargc > optind) {
353 if (matches(argv[optind], "index") == 0) {
354 if (get_u32(&index, argv[optind + 1], 10)) {
355 fprintf(stderr, "Illegal \"index\"\n");
6d4662d4 356 free_opts(opts);
1ffd7fd2 357 return -1;
358 }
359 iok++;
360
361 optind += 2;
362 }
363 }
364
365 if (!ok && !iok) {
32a121cb 366 fprintf(stderr, " ipt Parser BAD!! (%s)\n", *argv);
1ffd7fd2 367 return -1;
368 }
369
6d4662d4
SH
370 /* check that we passed the correct parameters to the target */
371 if (m)
372 m->final_check(m->tflags);
373
1ffd7fd2 374 {
375 struct tcmsg *t = NLMSG_DATA(n);
32a121cb 376
1ffd7fd2 377 if (t->tcm_parent != TC_H_ROOT
378 && t->tcm_parent == TC_H_MAJ(TC_H_INGRESS)) {
379 hook = NF_IP_PRE_ROUTING;
380 } else {
381 hook = NF_IP_POST_ROUTING;
382 }
383 }
384
c14f9d92 385 tail = addattr_nest(n, MAX_MSG, tca_id);
1ffd7fd2 386 fprintf(stdout, "tablename: %s hook: %s\n ", tname, ipthooks[hook]);
387 fprintf(stdout, "\ttarget: ");
388
389 if (m)
390 m->print(NULL, m->t, 0);
391 fprintf(stdout, " index %d\n", index);
392
393 if (strlen(tname) > 16) {
394 size = 16;
395 k[15] = 0;
396 } else {
397 size = 1 + strlen(tname);
398 }
399 strncpy(k, tname, size);
400
401 addattr_l(n, MAX_MSG, TCA_IPT_TABLE, k, size);
402 addattr_l(n, MAX_MSG, TCA_IPT_HOOK, &hook, 4);
403 addattr_l(n, MAX_MSG, TCA_IPT_INDEX, &index, 4);
404 if (m)
405 addattr_l(n, MAX_MSG, TCA_IPT_TARG, m->t, m->t->u.target_size);
c14f9d92 406 addattr_nest_end(n, tail);
1ffd7fd2 407
408 argc -= optind;
409 argv += optind;
410 *argc_p = rargc - iargc;
411 *argv_p = argv;
ae665a52 412
6e34e7dc 413 optind = 0;
6d4662d4 414 free_opts(opts);
6e34e7dc 415 /* Clear flags if target will be used again */
32a121cb
SH
416 m->tflags = 0;
417 m->used = 0;
6e34e7dc 418 /* Free allocated memory */
32a121cb
SH
419 if (m->t)
420 free(m->t);
6e34e7dc 421
1ffd7fd2 422
423 return 0;
424
425}
426
427static int
32a121cb 428print_ipt(struct action_util *au, FILE * f, struct rtattr *arg)
1ffd7fd2 429{
430 struct rtattr *tb[TCA_IPT_MAX + 1];
431 struct ipt_entry_target *t = NULL;
1ffd7fd2 432
433 if (arg == NULL)
434 return -1;
435
c6ab5b82
PM
436 lib_dir = getenv("IPTABLES_LIB_DIR");
437 if (!lib_dir)
438 lib_dir = IPT_LIB_DIR;
439
78934000 440 parse_rtattr_nested(tb, TCA_IPT_MAX, arg);
1ffd7fd2 441
442 if (tb[TCA_IPT_TABLE] == NULL) {
443 fprintf(f, "[NULL ipt table name ] assuming mangle ");
444 } else {
445 fprintf(f, "tablename: %s ",
ff24746c 446 rta_getattr_str(tb[TCA_IPT_TABLE]));
1ffd7fd2 447 }
448
449 if (tb[TCA_IPT_HOOK] == NULL) {
450 fprintf(f, "[NULL ipt hook name ]\n ");
451 return -1;
452 } else {
453 __u32 hook;
32a121cb 454
ff24746c 455 hook = rta_getattr_u32(tb[TCA_IPT_HOOK]);
32a121cb 456 fprintf(f, " hook: %s\n", ipthooks[hook]);
1ffd7fd2 457 }
458
459 if (tb[TCA_IPT_TARG] == NULL) {
32a121cb 460 fprintf(f, "\t[NULL ipt target parameters ]\n");
1ffd7fd2 461 return -1;
462 } else {
9b32f896 463 struct xtables_target *m = NULL;
32a121cb 464
1ffd7fd2 465 t = RTA_DATA(tb[TCA_IPT_TARG]);
466 m = get_target_name(t->u.user.name);
32a121cb
SH
467 if (m != NULL) {
468 if (build_st(m, t) < 0) {
469 fprintf(stderr, " %s error\n", m->name);
1ffd7fd2 470 return -1;
471 }
472
473 opts =
474 merge_options(opts, m->extra_opts,
475 &m->option_offset);
476 } else {
477 fprintf(stderr, " failed to find target %s\n\n",
478 t->u.user.name);
479 return -1;
480 }
481 fprintf(f, "\ttarget ");
482 m->print(NULL, m->t, 0);
483 if (tb[TCA_IPT_INDEX] == NULL) {
484 fprintf(f, " [NULL ipt target index ]\n");
485 } else {
486 __u32 index;
32a121cb 487
ff24746c 488 index = rta_getattr_u32(tb[TCA_IPT_INDEX]);
53075318 489 fprintf(f, "\n\tindex %u", index);
1ffd7fd2 490 }
491
492 if (tb[TCA_IPT_CNT]) {
32a121cb
SH
493 struct tc_cnt *c = RTA_DATA(tb[TCA_IPT_CNT]);
494
1ffd7fd2 495 fprintf(f, " ref %d bind %d", c->refcnt, c->bindcnt);
496 }
497 if (show_stats) {
498 if (tb[TCA_IPT_TM]) {
499 struct tcf_t *tm = RTA_DATA(tb[TCA_IPT_TM]);
32a121cb
SH
500
501 print_tm(f, tm);
1ffd7fd2 502 }
ae665a52 503 }
32a121cb 504 fprintf(f, "\n");
1ffd7fd2 505
506 }
6d4662d4 507 free_opts(opts);
1ffd7fd2 508
509 return 0;
510}
511
512struct action_util ipt_action_util = {
32a121cb
SH
513 .id = "ipt",
514 .parse_aopt = parse_ipt,
515 .print_aopt = print_ipt,
1ffd7fd2 516};