blob: 7c2ea882572668a6926a752980b2f2ae6f692f83 [file] [log] [blame]
Bart De Schuymer865444d2005-06-14 19:17:48 +00001#!/usr/bin/perl -w
2#
3#
4# A script that imports text ebtables rules. Similar to iptables-restore.
5# It can be used to restore configuration from /etc/sysconfig/ebtables.
6#
7
8use strict;
Bart De Schuymer50441e92005-08-30 21:20:55 +00009my $ebtables = "__EXEC_PATH__/ebtables";
10my $table = "";
Bart De Schuymer865444d2005-06-14 19:17:48 +000011my $rc;
Bart De Schuymerdb97ab22005-09-01 20:37:07 +000012my $child;
Bart De Schuymer865444d2005-06-14 19:17:48 +000013my $line;
14
15# ==============================
16# Check table
17# Creates user chains.
18# ==============================
19sub check_chain {
Bart De Schuymer50441e92005-08-30 21:20:55 +000020 if ($table eq "filter") {
21 if ($_[1] eq "INPUT") { return; }
22 if ($_[1] eq "FORWARD") { return; }
23 if ($_[1] eq "OUTPUT") { return; }
24 }
25 if ($table eq "nat") {
26 if ($_[1] eq "PREROUTING") { return; }
27 if ($_[1] eq "POSTROUTING") { return; }
28 if ($_[1] eq "OUTPUT") { return; }
29 }
30 if ($table eq "broute") {
31 if ($_[1] eq "BROUTING") { return; }
32 }
33 $rc = `$ebtables -t $_[0] -N $_[1]`;
34 unless($? == 0) {print "ERROR: $rc\n"; exit -1};
Bart De Schuymer865444d2005-06-14 19:17:48 +000035}
36# ==============================
37
Bart De Schuymerdb97ab22005-09-01 20:37:07 +000038if (-x "__EXEC_PATH__/ebtablesd" && -x "__EXEC_PATH__/ebtablesu") {
39 `killall ebtablesd 2>/dev/null`;
40 $child = fork();
41 if ($child == 0) {
42 $rc = `__EXEC_PATH__/ebtablesd`;
43 if (!($rc eq "")) {
44 exit -1;
45 }
46 exit 0;
47 }
48 $ebtables = "__EXEC_PATH__/ebtablesu";
49 while (!(-e "__PIPE__")) {
50 if ((kill 0) < $child) {
51 exit -1;
52 }
53 }
54} else {
55 unless (-x $ebtables) { print "ERROR: $ebtables isn't executable\n"; exit -1; };
56}
57
Bart De Schuymer865444d2005-06-14 19:17:48 +000058$line = 0;
59while(<>) {
60 $line++;
61 if(m/^#/) { next; };
62 if(m/^$/) { next; };
Bart De Schuymerdb97ab22005-09-01 20:37:07 +000063 if ($ebtables eq "__EXEC_PATH__/ebtablesu") {
64 if ((kill 0) < $child) {
65 exit -1;
66 }
67 }
Bart De Schuymer865444d2005-06-14 19:17:48 +000068 if(m/^\*(.*)/) {
Bart De Schuymerdb97ab22005-09-01 20:37:07 +000069 if (!($table eq "")) {
70 if (!defined($ENV{'EBTABLES_SAVE_COUNTER'}) || !($ENV{'EBTABLES_SAVE_COUNTER'} eq "yes")) {
71 $rc = `$ebtables -t $table -Z`;
72 unless($? == 0) {print "ERROR: $rc\n"; exit -1};
73 }
74 if ($ebtables eq "__EXEC_PATH__/ebtablesu") {
75 $rc = `$ebtables commit $table`;
76 $rc = `$ebtables free $table`;
77 unless($? == 0) {print "ERROR: $rc\n"; exit -1};
78 }
Bart De Schuymer50441e92005-08-30 21:20:55 +000079 }
Bart De Schuymer865444d2005-06-14 19:17:48 +000080 $table = $1;
Bart De Schuymerdb97ab22005-09-01 20:37:07 +000081 if ($ebtables eq "__EXEC_PATH__/ebtablesu") {
82 $rc = `$ebtables open $table`;
83 unless($? == 0) {print "ERROR: $rc\n"; exit -1};
84 $rc = `$ebtables -F`;
85 unless($? == 0) {print "ERROR: $rc\n"; exit -1};
86 } else {
87 $rc = `$ebtables -t filter --init-table`;
88 unless($? == 0) {print "ERROR: $rc\n"; exit -1};
89 }
Bart De Schuymer865444d2005-06-14 19:17:48 +000090 next;
91 }
92 if(m/^\:(.*?)\s(.*)/) {
Bart De Schuymer50441e92005-08-30 21:20:55 +000093 &check_chain($table,$1);
Bart De Schuymer865444d2005-06-14 19:17:48 +000094 $rc = `$ebtables -t $table -P $1 $2`;
95 unless($? == 0) {print "ERROR(line $line): $rc\n"; exit -1};
96 next;
97 }
98 $rc = `$ebtables -t $table $_`;
99 unless($? == 0) {print "ERROR(line $line): $rc\n"; exit -1};
100}
Bart De Schuymerdb97ab22005-09-01 20:37:07 +0000101
102if (!($table eq "")) {
103 if (!defined($ENV{'EBTABLES_SAVE_COUNTER'}) || !($ENV{'EBTABLES_SAVE_COUNTER'} eq "yes")) {
104 $rc = `$ebtables -t $table -Z`;
105 unless($? == 0) {print "ERROR: '-t $table -Z' failed\n"; exit -1};
106 }
107 if ($ebtables eq "__EXEC_PATH__/ebtablesu") {
108 $rc = `$ebtables commit $table`;
109 unless($? == 0) {print "ERROR: $rc\n"; exit -1};
110 }
111}
112
113if ($ebtables eq "__EXEC_PATH__/ebtablesu") {
114 $rc = `$ebtables quit`;
115 unless($? == 0) {print "ERROR: $rc\n"; exit -1};
116 waitpid($child,0);
117 exit 0;
Bart De Schuymer50441e92005-08-30 21:20:55 +0000118}