chiark / gitweb /
Bugfixes.
[userv-utils] / ipif / udptunnel-reconf.pl
CommitLineData
2dba6494 1#!/usr/bin/perl
ee498ba1 2# udptunnel-reconf
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.
5
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.
10#
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.
15#
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.
19#
01e9fe64 20# $Id: udptunnel-reconf.pl,v 1.1.2.4 2000/12/11 02:38:49 ian Exp $
2dba6494 21
f685ef8c 22use Socket;
23
ee498ba1 24# @@@-
25$shareuserv= "`pwd`";
26$etcvpn= "`pwd`";
27$varlibvpn= "`pwd`";
28# -@@@
2dba6494 29
30sub badusage () { die "usage: udptunnel-reconf [<directory>]\n"; }
31$debug=0;
32
f685ef8c 33sub fault ($) { die "$0: $_[0]\n"; }
34
2dba6494 35while ($ARGV[0] =~ m/^-/) {
36 $_= shift @ARGV;
37 last if m/^--$/;
38 if (m/^-d$/) { $debug++; next; }
39 badusage();
40}
41
ee498ba1 42if (@ARGV) { $etcvpn= shift @ARGV; }
f685ef8c 43badusage() if @ARGV;
2dba6494 44
ee498ba1 45chdir $etcvpn or fault("$etcvpn: $!");
2dba6494 46
47sub run_m4 ($$$) {
48 my ($wanted, $site, $variable) = @_;
49 $x= "m4 -P -DWANTED=$wanted -DWHVARIABLE=V_$variable -DV_global=global ".
ee498ba1 50 "-DV_site=$site -DV_varlibvpn=$varlibvpn ".
51 "-DV_defaults=$shareuserv/udptunnel-vpn-defaults ".
52 "$shareuserv/udptunnel-vpn-config.m4";
2dba6494 53 print STDERR $x,"\n" if $debug>=2;
f685ef8c 54 open X, "$x |" or die $!;
2dba6494 55 undef $/;
56 $m4out= <X>;
57 $/= "\n";
58 close X; $? and exit -1;
59 $m4out =~ s/^\s+//;
60 $m4out =~ s/\n+/\n/g;
61 $m4out =~ s/\s+$//;
62 print STDERR "$wanted/$variable($site) -> \`$m4out'\n" if $debug>=1;
f685ef8c 63# $m4out='' if $wanted eq 'VARIABLE' && substr($m4out,0,2) eq 'V_';
2dba6494 64 return $m4out;
65}
66
67sub check_junk ($$) {
68 my ($emsg, $site) = @_;
69 $j= run_m4('JUNK',$site,'');
70 $j =~ s/^\# //g;
f685ef8c 71 fault("$emsg: $j") if length $j;
2dba6494 72}
73
f685ef8c 74sub var_global ($) { return run_m4('VARIABLE','',$_[0]) }
75sub var_site ($) { return run_m4('VARIABLE',$site,$_[0]) }
76
2dba6494 77check_junk("error in config",'');
78
79@actives= split /\s+/, run_m4('ACTIVES','','');
80@passives= split /\s+/, run_m4('PASSIVES','','');
81
82foreach $site (@actives, @passives) {
83 check_junk("error in config for site $site",$site);
84}
85
f685ef8c 86sub parse_addr_mask ($) {
87 my ($r) = @_;
88 my ($mask,$iaddr);
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);
95}
96
01e9fe64 97$forbid_remote= var_global('forbid_remote');
98@forbid_remote= ();
f685ef8c 99foreach $r (split /[, \t]+/, $forbid_remote) {
100 push @forbid_remote, [ parse_addr_mask($r) ];
101}
102
01e9fe64 103sub ipif_permit ($$$$) {
104 my ($group,$local,$net,$why) = @_;
105 my ($pmask,$piaddr,$fmask,$fiaddr,@lgroup,$lgid);
106
107 @lgroup= getgrnam($group);
108 @lgroup or fault("invalid group \`$group' ($why)");
109 $lgid= $lgroup[2];
110
f685ef8c 111 if (!$local) {
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
01e9fe64 117 fault("local network $net claimed as remote ($why)")
f685ef8c 118 if (($fiaddr&$jmask) == ($piaddr&$jmask));
119 }
120 }
01e9fe64 121 $ipif_file .= "$lgid,$local$net, $group, $why\n";
f685ef8c 122}
123
01e9fe64 124$glgroup= var_global('lgroup');
f685ef8c 125$glend= var_site('lend')."/32";
01e9fe64 126if ($glend !~ m/^V_/ && $glgroup !~ m/^V_/ &&
127 length $glend && length $glgroup) {
128 ipif_permit($glgroup, '=', "$glend", 'local endpoint');
129} else {
130 $glend='X'; $glgroup='X';
f685ef8c 131}
132
133foreach $site (@actives, @passives) {
134 $tlend= var_site('lend')."/32";
01e9fe64 135 $tlgroup= var_site('lgroup');
136 if ($tlend ne $glend || $tlgroup ne $glgroup) {
137 ipif_permit($tlgroup, '=', $tlend, "$site - local endpoint");
f685ef8c 138 }
139 $trend= var_site('rend').'/32';
140 $ix= 0;
141 $trnets= var_site('rnets');
01e9fe64 142 ipif_permit($tlgroup, '', $trend, "$site - remote endpoint");
f685ef8c 143 if ($trnets ne '-') {
144 foreach $rnet (split /,/, $trnets) {
01e9fe64 145 ipif_permit($tlgroup, '', $rnet, "$site - remote network #$ix");
f685ef8c 146 $ix++;
147 }
148 }
149}
150
151sub 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 $!;
156 close F or die $!;
157 rename "$fn.new",$fn or die $!;
158}
159
ee498ba1 160$ipifnetsfile= var_global(ipifnetsfile);
161write_file($ipifnetsfile,'ipifnetsfile','', $ipif_file);
f685ef8c 162
163$active_file= '';
164$inittab= '';
165$ix= 0;
166foreach $site (@actives) {
167 $active_file.= "$site\t".var_site('activesxinfo')."\n";
168 $inittab.= sprintf("t%d", $ix++).':'.var_site('inittab_line')."\n";
ee498ba1 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 $!;
f685ef8c 173}
174write_file(var_global('activesfile'),'activesfile', '',$active_file);
ee498ba1 175
176print
177"# You can cut and paste all or part of this into your inittab if you like:\n",
178 $inittab;
179
180print
181"# And consider adding this line, or some of this file's contents,\n".
182"# to your /etc/userv/ipif-networks:\n",
183 "$ipifnetsfile\n"
184 if $ipifnetsfile =~ m,^/,;
f685ef8c 185
186$passive_file= '';
187foreach $site (@passives) {
188 $passive_file.= "$site\t".var_site('passivesxinfo')."\n";
189}
190write_file(var_global('passivesfile'),'passivesfile', '',$passive_file);
191
192system var_global('postconfigure'); $? and exit -1;
193
194exit 0;