3 # Set up the relevant stuff in /etc/userv/vpn, and then run
4 # this. It should tell you what to do to inittab and ipif-networks.
6 # This is free software; you can redistribute it and/or modify it
7 # under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful, but
12 # WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 # General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with userv-utils; if not, write to the Free Software
18 # Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 # $Id: udptunnel-reconf.pl,v 1.1.2.4 2000/12/11 02:38:49 ian Exp $
30 sub badusage () { die "usage: udptunnel-reconf [<directory>]\n"; }
33 sub fault ($) { die "$0: $_[0]\n"; }
35 while ($ARGV[0] =~ m/^-/) {
38 if (m/^-d$/) { $debug++; next; }
42 if (@ARGV) { $etcvpn= shift @ARGV; }
45 chdir $etcvpn or fault("$etcvpn: $!");
48 my ($wanted, $site, $variable) = @_;
49 $x= "m4 -P -DWANTED=$wanted -DWHVARIABLE=V_$variable -DV_global=global ".
50 "-DV_site=$site -DV_varlibvpn=$varlibvpn ".
51 "-DV_defaults=$shareuserv/udptunnel-vpn-defaults ".
52 "$shareuserv/udptunnel-vpn-config.m4";
53 print STDERR $x,"\n" if $debug>=2;
54 open X, "$x |" or die $!;
58 close X; $? and exit -1;
62 print STDERR "$wanted/$variable($site) -> \`$m4out'\n" if $debug>=1;
63 # $m4out='' if $wanted eq 'VARIABLE' && substr($m4out,0,2) eq 'V_';
68 my ($emsg, $site) = @_;
69 $j= run_m4('JUNK',$site,'');
71 fault("$emsg: $j") if length $j;
74 sub var_global ($) { return run_m4('VARIABLE','',$_[0]) }
75 sub var_site ($) { return run_m4('VARIABLE',$site,$_[0]) }
77 check_junk("error in config",'');
79 @actives= split /\s+/, run_m4('ACTIVES','','');
80 @passives= split /\s+/, run_m4('PASSIVES','','');
82 foreach $site (@actives, @passives) {
83 check_junk("error in config for site $site",$site);
86 sub parse_addr_mask ($) {
89 if ($r =~ s,/(\d+)$,,) { $mask=$1; } else { $mask=32; }
90 fault("invalid mask length $1") if $mask<0 || $mask>32;
91 $mask= $mask ? ~0 << (32-$mask) : 0;
92 $iaddr= inet_aton($r); fault("invalid address $r") unless defined $iaddr;
93 $iaddr= (unpack "N",$iaddr)[0];
94 return ($iaddr, $mask);
97 $forbid_remote= var_global('forbid_remote');
99 foreach $r (split /[, \t]+/, $forbid_remote) {
100 push @forbid_remote, [ parse_addr_mask($r) ];
103 sub ipif_permit ($$$$) {
104 my ($group,$local,$net,$why) = @_;
105 my ($pmask,$piaddr,$fmask,$fiaddr,@lgroup,$lgid);
107 @lgroup= getgrnam($group);
108 @lgroup or fault("invalid group \`$group' ($why)");
112 ($piaddr,$pmask) = parse_addr_mask($net);
113 foreach $fref (@forbid_remote) {
114 ($fiaddr,$fmask) = @$fref;
115 $jmask= $fmask & $pmask;
116 #printf STDERR "%8lx %8lx %l8x %8lx", $pmask,$pmask
117 fault("local network $net claimed as remote ($why)")
118 if (($fiaddr&$jmask) == ($piaddr&$jmask));
121 $ipif_file .= "$lgid,$local$net, $group, $why\n";
124 $glgroup= var_global('lgroup');
125 $glend= var_site('lend')."/32";
126 if ($glend !~ m/^V_/ && $glgroup !~ m/^V_/ &&
127 length $glend && length $glgroup) {
128 ipif_permit($glgroup, '=', "$glend", 'local endpoint');
130 $glend='X'; $glgroup='X';
133 foreach $site (@actives, @passives) {
134 $tlend= var_site('lend')."/32";
135 $tlgroup= var_site('lgroup');
136 if ($tlend ne $glend || $tlgroup ne $glgroup) {
137 ipif_permit($tlgroup, '=', $tlend, "$site - local endpoint");
139 $trend= var_site('rend').'/32';
141 $trnets= var_site('rnets');
142 ipif_permit($tlgroup, '', $trend, "$site - remote endpoint");
143 if ($trnets ne '-') {
144 foreach $rnet (split /,/, $trnets) {
145 ipif_permit($tlgroup, '', $rnet, "$site - remote network #$ix");
151 sub write_file ($$$$) {
152 my ($fn,$why,$head,$body) = @_;
153 length $fn or fault("location to write $why not specified");
154 open F, ">$fn.new" or fault("create $fn.new: $!");
155 print F $head."\n# AUTOGENERATED BY $0 - DO NOT EDIT\n".$body or die $!;
157 rename "$fn.new",$fn or die $!;
160 $ipifnetsfile= var_global(ipifnetsfile);
161 write_file($ipifnetsfile,'ipifnetsfile','', $ipif_file);
166 foreach $site (@actives) {
167 $active_file.= "$site\t".var_site('activesxinfo')."\n";
168 $inittab.= sprintf("t%d", $ix++).':'.var_site('inittab_line')."\n";
169 $invoke_file= var_site('invoke_file');
170 write_file($invoke_file, 'invoke_file',
171 var_site('invoke_head'), var_site('invoke_body'));
172 chmod 0777&~umask, $invoke_file or die $!;
174 write_file(var_global('activesfile'),'activesfile', '',$active_file);
177 "# You can cut and paste all or part of this into your inittab if you like:\n",
181 "# And consider adding this line, or some of this file's contents,\n".
182 "# to your /etc/userv/ipif-networks:\n",
184 if $ipifnetsfile =~ m,^/,;
187 foreach $site (@passives) {
188 $passive_file.= "$site\t".var_site('passivesxinfo')."\n";
190 write_file(var_global('passivesfile'),'passivesfile', '',$passive_file);
192 system var_global('postconfigure'); $? and exit -1;