2006-12-14 04:59:04 +00:00
|
|
|
#!/usr/bin/env perl
|
|
|
|
#
|
|
|
|
# Copyright (C) 2006 Felix Fietkau <nbd@openwrt.org>
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
use warnings;
|
|
|
|
use strict;
|
|
|
|
|
2009-03-24 01:34:14 +00:00
|
|
|
my @arg;
|
|
|
|
my $PREFIX = "CONFIG_";
|
2006-12-14 04:59:04 +00:00
|
|
|
|
|
|
|
sub load_config($) {
|
|
|
|
my $file = shift;
|
|
|
|
my %config;
|
|
|
|
|
|
|
|
open FILE, "$file" or die "can't open file";
|
|
|
|
while (<FILE>) {
|
|
|
|
chomp;
|
2009-03-24 01:34:14 +00:00
|
|
|
/^$PREFIX(.+?)=(.+)/ and do {
|
2006-12-14 04:59:04 +00:00
|
|
|
$config{$1} = $2;
|
|
|
|
next;
|
|
|
|
};
|
2009-03-24 01:34:14 +00:00
|
|
|
/^# $PREFIX(.+?) is not set/ and do {
|
2007-02-28 13:00:26 +00:00
|
|
|
$config{$1} = "#undef";
|
2006-12-14 04:59:04 +00:00
|
|
|
next;
|
|
|
|
};
|
|
|
|
/^#/ and next;
|
2009-03-09 15:05:32 +00:00
|
|
|
/^(.+)$/ and warn "WARNING: can't parse line: $1\n";
|
2006-12-14 04:59:04 +00:00
|
|
|
}
|
|
|
|
return \%config;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
sub config_and($$) {
|
|
|
|
my $cfg1 = shift;
|
|
|
|
my $cfg2 = shift;
|
|
|
|
my %config;
|
|
|
|
|
|
|
|
foreach my $config (keys %$cfg1) {
|
|
|
|
my $val1 = $cfg1->{$config};
|
|
|
|
my $val2 = $cfg2->{$config};
|
|
|
|
$val2 and ($val1 eq $val2) and do {
|
|
|
|
$config{$config} = $val1;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
return \%config;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-07-18 11:31:01 +00:00
|
|
|
sub config_add($$$) {
|
2006-12-14 04:59:04 +00:00
|
|
|
my $cfg1 = shift;
|
|
|
|
my $cfg2 = shift;
|
2007-07-18 11:31:01 +00:00
|
|
|
my $mod_plus = shift;
|
2006-12-14 04:59:04 +00:00
|
|
|
my %config;
|
|
|
|
|
|
|
|
for ($cfg1, $cfg2) {
|
|
|
|
my %cfg = %$_;
|
|
|
|
|
|
|
|
foreach my $config (keys %cfg) {
|
2007-07-18 11:31:01 +00:00
|
|
|
next if $mod_plus and $config{$config} and $config{$config} eq "y";
|
2006-12-14 04:59:04 +00:00
|
|
|
$config{$config} = $cfg{$config};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return \%config;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub config_diff($$) {
|
|
|
|
my $cfg1 = shift;
|
|
|
|
my $cfg2 = shift;
|
|
|
|
my %config;
|
|
|
|
|
|
|
|
foreach my $config (keys %$cfg2) {
|
2007-09-19 20:55:05 +00:00
|
|
|
if (!defined($cfg1->{$config}) or $cfg1->{$config} ne $cfg2->{$config}) {
|
2006-12-14 04:59:04 +00:00
|
|
|
$config{$config} = $cfg2->{$config};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return \%config
|
|
|
|
}
|
|
|
|
|
|
|
|
sub config_sub($$) {
|
|
|
|
my $cfg1 = shift;
|
|
|
|
my $cfg2 = shift;
|
|
|
|
my %config = %{$cfg1};
|
|
|
|
|
|
|
|
foreach my $config (keys %$cfg2) {
|
|
|
|
delete $config{$config};
|
|
|
|
}
|
|
|
|
return \%config;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub print_cfgline($$) {
|
|
|
|
my $name = shift;
|
|
|
|
my $val = shift;
|
2009-03-24 01:34:23 +00:00
|
|
|
if ($val eq '#undef' or $val eq 'n') {
|
2009-03-24 01:34:14 +00:00
|
|
|
print "# $PREFIX$name is not set\n";
|
2006-12-14 04:59:04 +00:00
|
|
|
} else {
|
2009-03-24 01:34:14 +00:00
|
|
|
print "$PREFIX$name=$val\n";
|
2006-12-14 04:59:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
sub dump_config($) {
|
|
|
|
my $cfg = shift;
|
|
|
|
die "argument error in dump_config" unless ($cfg);
|
|
|
|
my %config = %$cfg;
|
|
|
|
foreach my $config (sort keys %config) {
|
|
|
|
print_cfgline($config, $config{$config});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sub parse_expr($);
|
|
|
|
|
|
|
|
sub parse_expr($) {
|
|
|
|
my $pos = shift;
|
|
|
|
my $arg = $arg[$$pos++];
|
|
|
|
|
|
|
|
die "Parse error" if (!$arg);
|
|
|
|
|
|
|
|
if ($arg eq '&') {
|
|
|
|
my $arg1 = parse_expr($pos);
|
|
|
|
my $arg2 = parse_expr($pos);
|
|
|
|
return config_and($arg1, $arg2);
|
|
|
|
} elsif ($arg =~ /^\+/) {
|
|
|
|
my $arg1 = parse_expr($pos);
|
|
|
|
my $arg2 = parse_expr($pos);
|
2007-07-18 11:31:01 +00:00
|
|
|
return config_add($arg1, $arg2, 0);
|
|
|
|
} elsif ($arg =~ /^m\+/) {
|
|
|
|
my $arg1 = parse_expr($pos);
|
|
|
|
my $arg2 = parse_expr($pos);
|
|
|
|
return config_add($arg1, $arg2, 1);
|
2006-12-14 04:59:04 +00:00
|
|
|
} elsif ($arg eq '>') {
|
|
|
|
my $arg1 = parse_expr($pos);
|
|
|
|
my $arg2 = parse_expr($pos);
|
|
|
|
return config_diff($arg1, $arg2);
|
|
|
|
} elsif ($arg eq '-') {
|
|
|
|
my $arg1 = parse_expr($pos);
|
|
|
|
my $arg2 = parse_expr($pos);
|
|
|
|
return config_sub($arg1, $arg2);
|
|
|
|
} else {
|
|
|
|
return load_config($arg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-03-24 01:34:14 +00:00
|
|
|
while (@ARGV > 0 and $ARGV[0] =~ /^-\w+$/) {
|
|
|
|
my $cmd = shift @ARGV;
|
|
|
|
if ($cmd =~ /^-n$/) {
|
|
|
|
$PREFIX = "";
|
|
|
|
} elsif ($cmd =~ /^-p$/) {
|
|
|
|
$PREFIX = shift @ARGV;
|
|
|
|
} else {
|
|
|
|
die "Invalid option: $cmd\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@arg = @ARGV;
|
|
|
|
|
2006-12-14 04:59:04 +00:00
|
|
|
my $pos = 0;
|
|
|
|
dump_config(parse_expr(\$pos));
|
|
|
|
die "Parse error" if ($arg[$pos]);
|