/* Code to restore the iptables state, from file by iptables-save. * (C) 2000-2002 by Harald Welte * based on previous code from Rusty Russell * * This code is distributed under the terms of GNU GPL v2 */ #include "config.h" #include #include #include #include #include #include #include #include "iptables.h" #include "xtables.h" #include "libiptc/libiptc.h" #include "xtables-multi.h" #include "nft.h" #include "nft-bridge.h" #include "nft-cache.h" #include static int counters, verbose; /* Keeping track of external matches and targets. */ static const struct option options[] = { {.name = "counters", .has_arg = false, .val = 'c'}, {.name = "verbose", .has_arg = false, .val = 'v'}, {.name = "version", .has_arg = 0, .val = 'V'}, {.name = "test", .has_arg = false, .val = 't'}, {.name = "help", .has_arg = false, .val = 'h'}, {.name = "noflush", .has_arg = false, .val = 'n'}, {.name = "modprobe", .has_arg = true, .val = 'M'}, {.name = "table", .has_arg = true, .val = 'T'}, {.name = "ipv4", .has_arg = false, .val = '4'}, {.name = "ipv6", .has_arg = false, .val = '6'}, {.name = "wait", .has_arg = 2, .val = 'w'}, {.name = "wait-interval", .has_arg = 2, .val = 'W'}, {NULL}, }; #define prog_name xtables_globals.program_name #define prog_vers xtables_globals.program_version static void print_usage(const char *name, const char *version) { fprintf(stderr, "Usage: %s [-c] [-v] [-V] [-t] [-h] [-n] [-T table] [-M command] [-4] [-6] [file]\n" " [ --counters ]\n" " [ --verbose ]\n" " [ --version]\n" " [ --test ]\n" " [ --help ]\n" " [ --noflush ]\n" " [ --table= ]\n" " [ --modprobe= ]\n" " [ --ipv4 ]\n" " [ --ipv6 ]\n", name); } static const struct nft_xt_restore_cb restore_cb = { .commit = nft_commit, .abort = nft_abort, .table_new = nft_table_new, .table_flush = nft_table_flush, .do_command = do_commandx, .chain_set = nft_chain_set, .chain_restore = nft_chain_restore, }; void xtables_restore_parse(struct nft_handle *h, const struct nft_xt_restore_parse *p) { const struct builtin_table *curtable = NULL; const struct nft_xt_restore_cb *cb = p->cb; struct argv_store av_store = {}; char buffer[10240]; int in_table = 0; line = 0; if (!h->noflush) nft_fake_cache(h); else nft_build_cache(h, NULL); /* Grab standard input. */ while (fgets(buffer, sizeof(buffer), p->in)) { int ret = 0; line++; h->error.lineno = line; if (buffer[0] == '\n') continue; else if (buffer[0] == '#') { if (verbose) fputs(buffer, stdout); continue; } else if ((strcmp(buffer, "COMMIT\n") == 0) && (in_table)) { if (!p->testing) { /* Commit per table, although we support * global commit at once, stick by now to * the existing behaviour. */ DEBUGP("Calling commit\n"); if (cb->commit) ret = cb->commit(h); } else { DEBUGP("Not calling commit, testing\n"); if (cb->abort) ret = cb->abort(h); } in_table = 0; } else if ((buffer[0] == '*') && (!in_table || !p->commit)) { /* New table */ char *table; table = strtok(buffer+1, " \t\n"); DEBUGP("line %u, table '%s'\n", line, table); if (!table) xtables_error(PARAMETER_PROBLEM, "%s: line %u table name invalid\n", xt_params->program_name, line); curtable = nft_table_builtin_find(h, table); if (!curtable) xtables_error(PARAMETER_PROBLEM, "%s: line %u table name '%s' invalid\n", xt_params->program_name, line, table); if (p->tablename && (strcmp(p->tablename, table) != 0)) continue; if (h->noflush == 0) { DEBUGP("Cleaning all chains of table '%s'\n", table); if (cb->table_flush) cb->table_flush(h, table); } ret = 1; in_table = 1; if (cb->table_new) cb->table_new(h, table); } else if ((buffer[0] == ':') && (in_table)) { /* New chain. */ char *policy, *chain = NULL; struct xt_counters count = {}; chain = strtok(buffer+1, " \t\n"); DEBUGP("line %u, chain '%s'\n", line, chain); if (!chain) xtables_error(PARAMETER_PROBLEM, "%s: line %u chain name invalid\n", xt_params->program_name, line); if (strlen(chain) >= XT_EXTENSION_MAXNAMELEN) xtables_error(PARAMETER_PROBLEM, "Invalid chain name `%s' " "(%u chars max)", chain, XT_EXTENSION_MAXNAMELEN - 1); policy = strtok(NULL, " \t\n"); DEBUGP("line %u, policy '%s'\n", line, policy); if (!policy) xtables_error(PARAMETER_PROBLEM, "%s: line %u policy invalid\n", xt_params->program_name, line); if (nft_chain_builtin_find(curtable, chain)) { if (counters) { char *ctrs; ctrs = strtok(NULL, " \t\n"); if (!ctrs || !parse_counters(ctrs, &count)) xtables_error(PARAMETER_PROBLEM, "invalid policy counters " "for chain '%s'\n", chain); } if (cb->chain_set && cb->chain_set(h, curtable->name, chain, policy, &count) < 0) { xtables_error(OTHER_PROBLEM, "Can't set policy `%s'" " on `%s' line %u: %s\n", policy, chain, line, strerror(errno)); } DEBUGP("Setting policy of chain %s to %s\n", chain, policy); } else if (cb->chain_restore(h, chain, curtable->name) < 0 && errno != EEXIST) { xtables_error(PARAMETER_PROBLEM, "cannot create chain " "'%s' (%s)\n", chain, strerror(errno)); } else if (h->family == NFPROTO_BRIDGE && !ebt_set_user_chain_policy(h, curtable->name, chain, policy)) { xtables_error(OTHER_PROBLEM, "Can't set policy `%s'" " on `%s' line %u: %s\n", policy, chain, line, strerror(errno)); } ret = 1; } else if (in_table) { char *pcnt = NULL; char *bcnt = NULL; char *parsestart = buffer; add_argv(&av_store, xt_params->program_name, 0); add_argv(&av_store, "-t", 0); add_argv(&av_store, curtable->name, 0); tokenize_rule_counters(&parsestart, &pcnt, &bcnt, line); if (counters && pcnt && bcnt) { add_argv(&av_store, "--set-counters", 0); add_argv(&av_store, pcnt, 0); add_argv(&av_store, bcnt, 0); } add_param_to_argv(&av_store, parsestart, line); DEBUGP("calling do_command4(%u, argv, &%s, handle):\n", av_store.argc, curtable->name); debug_print_argv(&av_store); ret = cb->do_command(h, av_store.argc, av_store.argv, &av_store.argv[2], true); if (ret < 0) { if (cb->abort) ret = cb->abort(h); else ret = 0; if (ret < 0) { fprintf(stderr, "failed to abort " "commit operation\n"); } exit(1); } free_argv(&av_store); fflush(stdout); } if (p->tablename && curtable && (strcmp(p->tablename, curtable->name) != 0)) continue; if (!ret) { fprintf(stderr, "%s: line %u failed\n", xt_params->program_name, line); exit(1); } } if (in_table && p->commit) { fprintf(stderr, "%s: COMMIT expected at line %u\n", xt_params->program_name, line + 1); exit(1); } else if (in_table && cb->commit && !cb->commit(h)) { xtables_error(OTHER_PROBLEM, "%s: final implicit COMMIT failed", xt_params->program_name); } } static int xtables_restore_main(int family, const char *progname, int argc, char *argv[]) { const struct builtin_table *tables; struct nft_handle h = { .family = family, .restore = true, }; int c; struct nft_xt_restore_parse p = { .commit = true, .cb = &restore_cb, }; line = 0; xtables_globals.program_name = progname; c = xtables_init_all(&xtables_globals, family); if (c < 0) { fprintf(stderr, "%s/%s Failed to initialize xtables\n", xtables_globals.program_name, xtables_globals.program_version); exit(1); } while ((c = getopt_long(argc, argv, "bcvVthnM:T:46wW", options, NULL)) != -1) { switch (c) { case 'b': fprintf(stderr, "-b/--binary option is not implemented\n"); break; case 'c': counters = 1; break; case 'v': verbose = 1; break; case 'V': printf("%s v%s (nf_tables)\n", prog_name, prog_vers); exit(0); case 't': p.testing = 1; break; case 'h': print_usage(prog_name, PACKAGE_VERSION); exit(0); case 'n': h.noflush = 1; break; case 'M': xtables_modprobe_program = optarg; break; case 'T': p.tablename = optarg; break; case '4': h.family = AF_INET; break; case '6': h.family = AF_INET6; xtables_set_nfproto(AF_INET6); break; case 'w': /* fallthrough. Ignored by xt-restore */ case 'W': if (!optarg && xs_has_arg(argc, argv)) optind++; break; default: fprintf(stderr, "Try `%s -h' for more information.\n", prog_name); exit(1); } } if (optind == argc - 1) { p.in = fopen(argv[optind], "re"); if (!p.in) { fprintf(stderr, "Can't open %s: %s\n", argv[optind], strerror(errno)); exit(1); } } else if (optind < argc) { fprintf(stderr, "Unknown arguments found on commandline\n"); exit(1); } else { p.in = stdin; } switch (family) { case NFPROTO_IPV4: case NFPROTO_IPV6: /* fallthough, same table */ tables = xtables_ipv4; #if defined(ALL_INCLUSIVE) || defined(NO_SHARED_LIBS) init_extensions(); init_extensions4(); #endif break; case NFPROTO_ARP: tables = xtables_arp; break; case NFPROTO_BRIDGE: tables = xtables_bridge; break; default: fprintf(stderr, "Unknown family %d\n", family); return 1; } if (nft_init(&h, tables) < 0) { fprintf(stderr, "%s/%s Failed to initialize nft: %s\n", xtables_globals.program_name, xtables_globals.program_version, strerror(errno)); exit(EXIT_FAILURE); } xtables_restore_parse(&h, &p); nft_fini(&h); fclose(p.in); return 0; } int xtables_ip4_restore_main(int argc, char *argv[]) { return xtables_restore_main(NFPROTO_IPV4, basename(*argv), argc, argv); } int xtables_ip6_restore_main(int argc, char *argv[]) { return xtables_restore_main(NFPROTO_IPV6, basename(*argv), argc, argv); } static int ebt_table_flush(struct nft_handle *h, const char *table) { /* drop any pending policy rule add/removal jobs */ nft_abort_policy_rule(h, table); return nft_table_flush(h, table); } static const struct nft_xt_restore_cb ebt_restore_cb = { .commit = nft_bridge_commit, .table_new = nft_table_new, .table_flush = ebt_table_flush, .do_command = do_commandeb, .chain_set = nft_chain_set, .chain_restore = nft_chain_restore, }; static const struct option ebt_restore_options[] = { {.name = "noflush", .has_arg = 0, .val = 'n'}, { 0 } }; int xtables_eb_restore_main(int argc, char *argv[]) { struct nft_xt_restore_parse p = { .in = stdin, .cb = &ebt_restore_cb, }; bool noflush = false; struct nft_handle h; int c; while ((c = getopt_long(argc, argv, "n", ebt_restore_options, NULL)) != -1) { switch(c) { case 'n': noflush = 1; break; default: fprintf(stderr, "Usage: ebtables-restore [ --noflush ]\n"); exit(1); break; } } nft_init_eb(&h, "ebtables-restore"); h.noflush = noflush; xtables_restore_parse(&h, &p); nft_fini(&h); return 0; } static const struct nft_xt_restore_cb arp_restore_cb = { .commit = nft_commit, .table_new = nft_table_new, .table_flush = nft_table_flush, .do_command = do_commandarp, .chain_set = nft_chain_set, .chain_restore = nft_chain_restore, }; int xtables_arp_restore_main(int argc, char *argv[]) { struct nft_xt_restore_parse p = { .in = stdin, .cb = &arp_restore_cb, }; struct nft_handle h; nft_init_arp(&h, "arptables-restore"); xtables_restore_parse(&h, &p); nft_fini(&h); return 0; }