[4746] | 1 | #!/usr/bin/perl -w
|
---|
| 2 | #
|
---|
| 3 | # Copyright 2005 Stichting Wireless Leiden
|
---|
| 4 | # maart 2004 rick@wirelessleiden.nl
|
---|
| 5 | #
|
---|
| 6 |
|
---|
| 7 | # Config located at other file
|
---|
| 8 | my $conf_file="/home/genesis/tools/FreeBSD6_x/genesis.conf";
|
---|
| 9 | do($conf_file) || die("Cann't open $conf_file");
|
---|
| 10 | ################ END OF CONFIG ##########################
|
---|
| 11 |
|
---|
| 12 | #variablen
|
---|
| 13 | my $time=gmtime();
|
---|
| 14 | my $source=`/bin/hostname`;
|
---|
| 15 | chomp($source);
|
---|
| 16 |
|
---|
| 17 |
|
---|
| 18 | #slurp IP berekeningen info
|
---|
| 19 | do ("$IP_pmPath") || die ("Cann't open $IP_pmPath");
|
---|
| 20 | #slurp dns info
|
---|
| 21 | do ("$dnsheader_confPath") || die ("Cann't open $dnsheader_confPath");
|
---|
| 22 |
|
---|
| 23 |
|
---|
| 24 | #zoek uit of het master_ip addr voorkomt in de configs
|
---|
| 25 | #belangrijk van aliassen
|
---|
| 26 | sub master_ipNotUsed {
|
---|
| 27 | if( $debug ) {
|
---|
| 28 | print "running master_ipNotUsed...\n";
|
---|
| 29 | }
|
---|
| 30 | foreach my $if (keys %config) {
|
---|
| 31 | if( $IP{$if} =~ /([0-9\.]+).*/ ) {
|
---|
| 32 | if( $1 eq $master_ip ) {
|
---|
| 33 | return(0);
|
---|
| 34 | };
|
---|
| 35 | };
|
---|
| 36 | };
|
---|
| 37 | return(1);
|
---|
| 38 | };
|
---|
| 39 |
|
---|
| 40 |
|
---|
| 41 |
|
---|
| 42 | sub genHeader {
|
---|
| 43 | my $comment = $_[0];
|
---|
| 44 | my $output =
|
---|
| 45 | "$comment This file specific to wireless\n" .
|
---|
| 46 | "$comment leiden. Please make all changes in Genesis.\n" .
|
---|
| 47 | "$comment\n" .
|
---|
| 48 | "$comment Generated by $source\n" .
|
---|
| 49 | "$comment on $time\n" .
|
---|
| 50 | "$comment\n" .
|
---|
| 51 | "$comment $author\n" .
|
---|
| 52 | "$comment\n\n\n";
|
---|
| 53 | return ($output);
|
---|
| 54 | };
|
---|
| 55 |
|
---|
| 56 |
|
---|
| 57 | sub txtconfig {
|
---|
| 58 | my $output = "";
|
---|
| 59 | foreach $interface (keys %config) {
|
---|
| 60 | $output .= $config{$interface};
|
---|
| 61 | };
|
---|
| 62 | return($output);
|
---|
| 63 | };
|
---|
| 64 |
|
---|
| 65 |
|
---|
| 66 | sub dhcpd_conf {
|
---|
| 67 | my $output = genHeader("#");
|
---|
| 68 | $output .=
|
---|
| 69 | "option domain-name \"$domain\";\n" .
|
---|
| 70 | " \n" .
|
---|
| 71 | "default-lease-time 7200;\n" .
|
---|
| 72 | "max-lease-time 2592000;\n" .
|
---|
| 73 | "\n" .
|
---|
| 74 | "ddns-update-style none;\n" .
|
---|
| 75 | "\n" .
|
---|
| 76 | "# Hack for the WET11\n" .
|
---|
| 77 | "#\n" .
|
---|
| 78 | "always-broadcast on;\n" .
|
---|
| 79 | "\n" .
|
---|
| 80 | "option domain-name-servers ${master_ip};\n" .
|
---|
| 81 | "\n";
|
---|
| 82 |
|
---|
| 83 | foreach my $interface (sort keys %config) {
|
---|
| 84 | if( $interface =~ /^[a-z]+[0-9]+$/i ) {
|
---|
| 85 | (my $ip, my $netmask) = split('/', $IP{$interface});
|
---|
| 86 | my $subnet = IP::toSubnet($netmask);
|
---|
| 87 | my $broadcast = IP::getBroadcastAddr($ip, $subnet);
|
---|
| 88 | my $network = IP::getNetworkAddr($ip, $subnet);
|
---|
| 89 |
|
---|
| 90 | $output .=
|
---|
| 91 | "# $interface $DESC{$interface}\n";
|
---|
| 92 |
|
---|
| 93 | if ( $DHCP{$interface} =~ /[0-9]+\-[0-9]+/i ) {
|
---|
| 94 | my $dhcp_part = $ip;
|
---|
| 95 | $dhcp_part =~ s/[0-9]+$//;
|
---|
| 96 | (my $dhcp_start, my $dhcp_stop) = $DHCP{$interface} =~ /([0-9]+)\-([0-9]+)/i;
|
---|
| 97 | $dhcp_start = $dhcp_part . $dhcp_start;
|
---|
| 98 | $dhcp_stop = $dhcp_part . $dhcp_stop;
|
---|
| 99 | $output .=
|
---|
| 100 | "subnet $network netmask $subnet {\n" .
|
---|
| 101 | " range $dhcp_start $dhcp_stop;\n" .
|
---|
| 102 | " option broadcast-address $broadcast;\n" .
|
---|
| 103 | " option subnet-mask $subnet;\n" .
|
---|
| 104 | " option routers $ip;\n" .
|
---|
[4939] | 105 | $DHCP_STATIC{$if} .
|
---|
[4746] | 106 | "}\n" .
|
---|
| 107 | "\n";
|
---|
| 108 | }
|
---|
| 109 | else {
|
---|
| 110 | $output .=
|
---|
| 111 | "subnet $network netmask $subnet {not authoritative; }\n" .
|
---|
| 112 | "\n";
|
---|
| 113 | };
|
---|
| 114 | };
|
---|
| 115 | };
|
---|
| 116 |
|
---|
| 117 | return($output);
|
---|
| 118 | };
|
---|
| 119 |
|
---|
| 120 | sub named_conf {
|
---|
| 121 | my $output = genHeader("#");
|
---|
| 122 | $output .=
|
---|
| 123 | "options {\n" .
|
---|
| 124 | " directory \"/etc/namedb\"\;\n" .
|
---|
| 125 | " pid-file \"/var/run/named.pid\"\;\n" .
|
---|
| 126 | " forwarders {\n";
|
---|
| 127 | foreach my $forward (@forwarder) {
|
---|
| 128 | $output .= "$forward;\n";
|
---|
| 129 | };
|
---|
| 130 | $output .=
|
---|
| 131 | " };\n" .
|
---|
| 132 | "};\n" .
|
---|
| 133 | "\n" .
|
---|
| 134 | "\n" .
|
---|
| 135 | "zone \"\.\" {\n" .
|
---|
| 136 | " type hint;\n" .
|
---|
| 137 | " file \"/etc/namedb/named.root\"\;\n" .
|
---|
| 138 | "}\;\n" .
|
---|
| 139 | "\n" .
|
---|
| 140 | "zone \"0\.0\.127\.IN-ADDR.ARPA\" {\n" .
|
---|
| 141 | " type master\;\n" .
|
---|
| 142 | " file \"/etc/namedb/localhost.rev\"\;\n" .
|
---|
| 143 | "}\;\n" .
|
---|
| 144 | "\n" .
|
---|
| 145 | "zone \"1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.INT\" {\n" .
|
---|
| 146 | " type master\;\n" .
|
---|
| 147 | " file \"/etc/namedb/localhost-v6.rev\"\;\n" .
|
---|
| 148 | "};\n" .
|
---|
| 149 | "\n";
|
---|
| 150 |
|
---|
| 151 |
|
---|
| 152 | foreach my $tmpZone (sort keys %zone) {
|
---|
| 153 | my $dnsZone = $zone{$tmpZone};
|
---|
| 154 | $output .=
|
---|
| 155 | "zone \"$tmpZone\" {\n" .
|
---|
| 156 | " type slave\;\n" .
|
---|
| 157 | " file \"slave-$tmpZone\"\;\n" .
|
---|
| 158 | " masters {\n";
|
---|
| 159 | foreach my $tmpIP (sort @$dnsZone) {
|
---|
| 160 | $output .= " $tmpIP\;\n";
|
---|
| 161 | };
|
---|
| 162 | $output .=
|
---|
| 163 | " };\n" .
|
---|
| 164 | "};\n" .
|
---|
| 165 | "\n";
|
---|
| 166 | };
|
---|
| 167 |
|
---|
| 168 | return($output);
|
---|
| 169 | };
|
---|
| 170 |
|
---|
| 171 |
|
---|
| 172 |
|
---|
| 173 | sub rc_node_local {
|
---|
| 174 | my $output = genHeader("#");
|
---|
| 175 | my $masterNotUsed = master_ipNotUsed();
|
---|
| 176 | $output.=
|
---|
| 177 | "hostname=\"$nodetype$nodename.$domain\"\n" .
|
---|
| 178 | "location=\"$location\"\n" .
|
---|
| 179 | "\n";
|
---|
| 180 |
|
---|
| 181 | if( $tproxy ) {
|
---|
| 182 | if( $tproxy =~ m/\d+\.\d+\.\d+\.\d+\/\d+/ ) {
|
---|
| 183 | $output .=
|
---|
| 184 | "# Tproxy is ran on this system\n".
|
---|
| 185 | "tproxy_enable='YES'\n".
|
---|
| 186 | "tproxy_range='$tproxy'\n".
|
---|
| 187 | "\n";
|
---|
| 188 | }
|
---|
| 189 | elsif( $tproxy !~ m/no/i ) {
|
---|
| 190 | $output .= "# WARNING - specification propably wrong - check " .
|
---|
| 191 | "genesis. It should be a pure CIDR\n";
|
---|
| 192 | };
|
---|
| 193 | };
|
---|
| 194 |
|
---|
| 195 | $output .= "ifconfig_lo0_alias0=\"inet 172.31.255.1/32\"\n";
|
---|
| 196 | if( $masterNotUsed ) {
|
---|
| 197 | $output .= "ifconfig_lo0_alias1=\"inet $master_ip/32\"\n\n";
|
---|
| 198 | }
|
---|
| 199 | else {
|
---|
| 200 | $output .= "#ifconfig_lo0_alias1=\"inet $master_ip/32\"\n\n";
|
---|
| 201 | };
|
---|
| 202 |
|
---|
| 203 | foreach my $interface (sort keys %config) {
|
---|
| 204 | (my $if, my $number) = split(/:/, $interface);
|
---|
| 205 | if( defined $number ) {
|
---|
| 206 | $output .= "ifconfig_$if\_alias$number=\"inet $IP{$interface}\"\n";
|
---|
| 207 | }
|
---|
| 208 | else {
|
---|
| 209 | $output .= "ifconfig_$if=\"inet $IP{$interface}";
|
---|
| 210 | $output .= " $CARD_OPTION{$interface}";
|
---|
| 211 | if( $TYPE{$if} =~ /wireless/i ) {
|
---|
| 212 | $output .= " ssid $ESSID{$interface}";
|
---|
| 213 | if( $MODE{$if}=~/master/i ) {
|
---|
| 214 | $output .= " channel $CHANNEL{$interface}";
|
---|
| 215 | $output .= " mediaopt hostap";
|
---|
| 216 | }
|
---|
| 217 | else {
|
---|
| 218 | $output .= "";
|
---|
| 219 | };
|
---|
| 220 | };
|
---|
| 221 | $output .= "\"\n";
|
---|
| 222 | };
|
---|
| 223 | };
|
---|
| 224 | return($output);
|
---|
| 225 | };
|
---|
| 226 |
|
---|
| 227 |
|
---|
| 228 | sub resolv_conf {
|
---|
| 229 | my $output = genHeader"#";
|
---|
| 230 |
|
---|
| 231 | $output .=
|
---|
| 232 | "search wleiden.net.\n" .
|
---|
| 233 | "nameserver 127.0.0.1\n" .
|
---|
| 234 | "\n";
|
---|
| 235 |
|
---|
| 236 | foreach my $if (sort keys %config) {
|
---|
| 237 | if( exists $POINT_TO_POINT{$if} ) {
|
---|
| 238 | foreach my $ip ($POINT_TO_POINT{$if}) {
|
---|
| 239 | $output .= "nameserver $ip # $DESC{$if}\n";
|
---|
| 240 | };
|
---|
| 241 | };
|
---|
| 242 | };
|
---|
| 243 | return($output);
|
---|
| 244 | };
|
---|
| 245 |
|
---|
| 246 |
|
---|
| 247 | sub parse_config {
|
---|
| 248 | my $workingfile = $_[0];
|
---|
| 249 | do($workingfile) || die("Cann't open/parse $workingfile");
|
---|
| 250 | foreach my $if (keys %config) {
|
---|
| 251 | my $cfg=$config{$if};
|
---|
| 252 | while ($cfg) {
|
---|
| 253 | $cfg=~s/^([^\n\r]+)[\r\n]*//m;
|
---|
| 254 | my $line=$1;
|
---|
| 255 | $line=~s/\s*#.*//;
|
---|
| 256 | if (((my $name, my $value)=split(/=/,$line)) eq 2) {
|
---|
| 257 | my $doit="if (exists(\$$name\{\"$if\"\})) {\$$name\{\"$if\"\}.=\";$value\";} else {\$$name\{\"$if\"\}.=\"$value\";}";
|
---|
| 258 | eval($doit);
|
---|
| 259 | };
|
---|
| 260 | $cfg=~s/[\r\n]*$//m;
|
---|
| 261 | };
|
---|
| 262 | };
|
---|
| 263 | };
|
---|
| 264 |
|
---|
| 265 | sub authorized_keys {
|
---|
| 266 | my $output = genHeader("#");
|
---|
| 267 | if( -e "$global_keyPath" ) {
|
---|
| 268 | open( GLOBAL, "$global_keyPath" ) || die ("Cann't open $global_keyPath");
|
---|
| 269 | $output .= join("", <GLOBAL>);
|
---|
| 270 | close( GLOBAL );
|
---|
| 271 | }
|
---|
| 272 | else {
|
---|
| 273 | $output .= "# No $global_keyPath\n";
|
---|
| 274 | };
|
---|
| 275 |
|
---|
| 276 | if( -e "$ndir/$nodetype$nodename/$ssh_file" ) {
|
---|
| 277 | open( NODE, "$ndir/$nodetype$nodename/$ssh_file" ) || die ("Cann't open $home/$nodename/$ssh_file");
|
---|
| 278 | $output .= join("", <NODE>);
|
---|
| 279 | close( NODE );
|
---|
| 280 | }
|
---|
| 281 | else {
|
---|
| 282 | $output .= "# No $ndir/$nodetype$nodename/$ssh_file\n";
|
---|
| 283 | };
|
---|
| 284 |
|
---|
| 285 | return($output);
|
---|
| 286 | };
|
---|
| 287 |
|
---|
| 288 | sub do_it {
|
---|
| 289 | my $file = $_[0];
|
---|
| 290 | my $body = "";
|
---|
| 291 |
|
---|
| 292 | $file =~ s/\./_/g;
|
---|
| 293 | $body=&$file;
|
---|
| 294 | return($body);
|
---|
| 295 | };
|
---|
| 296 |
|
---|
| 297 | if( exists $ARGV[0] ) {
|
---|
| 298 | if( exists $ARGV[1] ) {
|
---|
| 299 | parse_config($ARGV[0]);
|
---|
| 300 | print do_it($ARGV[1]);
|
---|
| 301 | }
|
---|
| 302 | else {
|
---|
| 303 | print "Usage `perl wleiden.pl 'inputfile' 'outputfile'`\n";
|
---|
| 304 | };
|
---|
| 305 | };
|
---|
| 306 |
|
---|
| 307 | 1;
|
---|