[7535] | 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="./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 dnsmasq_conf {
|
---|
| 67 | my $output = genHeader("#");
|
---|
| 68 | $output .=
|
---|
| 69 | "# DHCP server options \n" .
|
---|
| 70 | "dhcp-authoritative \n" .
|
---|
| 71 | "dhcp-fqdn \n" .
|
---|
| 72 | "domain=dhcp.$nodename.$domain. \n" .
|
---|
| 73 | "domain-needed \n" .
|
---|
| 74 | "expand-hosts \n" .
|
---|
| 75 | "\n" .
|
---|
| 76 | "# Low memory footprint \n" .
|
---|
| 77 | "cache-size=10000 \n" .
|
---|
| 78 | "\n";
|
---|
| 79 |
|
---|
| 80 | foreach my $interface (sort keys %config) {
|
---|
| 81 | if( $interface =~ /^[a-z]+[0-9]+$/i ) {
|
---|
| 82 | (my $ip, my $netmask) = split('/', $IP{$interface});
|
---|
| 83 | my $subnet = IP::toSubnet($netmask);
|
---|
| 84 |
|
---|
| 85 | $output .=
|
---|
| 86 | "## $interface $DESC{$interface}\n";
|
---|
| 87 |
|
---|
| 88 | if ( $DHCP{$interface} =~ /[0-9]+\-[0-9]+/i ) {
|
---|
| 89 | my $dhcp_part = $ip;
|
---|
| 90 | $dhcp_part =~ s/[0-9]+$//;
|
---|
| 91 | (my $dhcp_start, my $dhcp_stop) = $DHCP{$interface} =~ /([0-9]+)\-([0-9]+)/i;
|
---|
| 92 | $dhcp_start = $dhcp_part . $dhcp_start;
|
---|
| 93 | $dhcp_stop = $dhcp_part . $dhcp_stop;
|
---|
| 94 | $output .= "dhcp-range=$interface,$dhcp_start,$dhcp_stop,$subnet,24h\n\n";
|
---|
| 95 | }
|
---|
| 96 | else {
|
---|
| 97 | $output .= "# not autoritive \n\n";
|
---|
| 98 | };
|
---|
| 99 | };
|
---|
| 100 | };
|
---|
| 101 |
|
---|
| 102 | return($output);
|
---|
| 103 | };
|
---|
| 104 |
|
---|
| 105 |
|
---|
| 106 | sub dhcpd_conf {
|
---|
| 107 | my $output = genHeader("#");
|
---|
| 108 | $output .=
|
---|
| 109 | "option domain-name \"$domain\";\n" .
|
---|
| 110 | " \n" .
|
---|
| 111 | "default-lease-time 7200;\n" .
|
---|
| 112 | "max-lease-time 2592000;\n" .
|
---|
| 113 | "\n" .
|
---|
| 114 | "ddns-update-style none;\n" .
|
---|
| 115 | "\n" .
|
---|
| 116 | "# Hack for the WET11\n" .
|
---|
| 117 | "#\n" .
|
---|
| 118 | "always-broadcast on;\n" .
|
---|
| 119 | "\n" .
|
---|
| 120 | "option domain-name-servers ${master_ip};\n" .
|
---|
| 121 | "\n";
|
---|
| 122 |
|
---|
| 123 | foreach my $interface (sort keys %config) {
|
---|
| 124 | if( $interface =~ /^[a-z]+[0-9]+$/i ) {
|
---|
| 125 | (my $ip, my $netmask) = split('/', $IP{$interface});
|
---|
| 126 | my $subnet = IP::toSubnet($netmask);
|
---|
| 127 | my $broadcast = IP::getBroadcastAddr($ip, $subnet);
|
---|
| 128 | my $network = IP::getNetworkAddr($ip, $subnet);
|
---|
| 129 |
|
---|
| 130 | $output .=
|
---|
| 131 | "# $interface $DESC{$interface}\n";
|
---|
| 132 |
|
---|
| 133 | if ( $DHCP{$interface} =~ /[0-9]+\-[0-9]+/i ) {
|
---|
| 134 | my $dhcp_part = $ip;
|
---|
| 135 | $dhcp_part =~ s/[0-9]+$//;
|
---|
| 136 | (my $dhcp_start, my $dhcp_stop) = $DHCP{$interface} =~ /([0-9]+)\-([0-9]+)/i;
|
---|
| 137 | $dhcp_start = $dhcp_part . $dhcp_start;
|
---|
| 138 | $dhcp_stop = $dhcp_part . $dhcp_stop;
|
---|
| 139 | $output .=
|
---|
| 140 | "subnet $network netmask $subnet {\n" .
|
---|
| 141 | " range $dhcp_start $dhcp_stop;\n" .
|
---|
| 142 | " option broadcast-address $broadcast;\n" .
|
---|
| 143 | " option subnet-mask $subnet;\n" .
|
---|
| 144 | " option routers $ip;\n" .
|
---|
| 145 | $DHCP_STATIC{$if} .
|
---|
| 146 | "}\n" .
|
---|
| 147 | "\n";
|
---|
| 148 | }
|
---|
| 149 | else {
|
---|
| 150 | $output .=
|
---|
| 151 | "subnet $network netmask $subnet {not authoritative; }\n" .
|
---|
| 152 | "\n";
|
---|
| 153 | };
|
---|
| 154 | };
|
---|
| 155 | };
|
---|
| 156 |
|
---|
| 157 | return($output);
|
---|
| 158 | };
|
---|
| 159 |
|
---|
| 160 | sub named_conf {
|
---|
| 161 | my $output = genHeader("#");
|
---|
| 162 | $output .=
|
---|
| 163 | "options {\n" .
|
---|
| 164 | " directory \"/etc/namedb\"\;\n" .
|
---|
| 165 | " pid-file \"/var/run/named/pid\"\;\n" .
|
---|
| 166 | " forwarders {\n";
|
---|
| 167 | foreach my $forward (@forwarder) {
|
---|
| 168 | $output .= "$forward;\n";
|
---|
| 169 | };
|
---|
| 170 | $output .=
|
---|
| 171 | " };\n" .
|
---|
| 172 | "};\n" .
|
---|
| 173 | "\n" .
|
---|
| 174 | "\n" .
|
---|
| 175 | "zone \"\.\" {\n" .
|
---|
| 176 | " type hint;\n" .
|
---|
| 177 | " file \"/etc/namedb/named.root\"\;\n" .
|
---|
| 178 | "}\;\n" .
|
---|
| 179 | "\n" .
|
---|
| 180 | "zone \"0\.0\.127\.IN-ADDR.ARPA\" {\n" .
|
---|
| 181 | " type master\;\n" .
|
---|
| 182 | " file \"/etc/namedb/master/localhost.rev\"\;\n" .
|
---|
| 183 | "}\;\n" .
|
---|
| 184 | "\n" .
|
---|
| 185 | "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" .
|
---|
| 186 | " type master\;\n" .
|
---|
| 187 | " file \"/etc/namedb/master/localhost-v6.rev\"\;\n" .
|
---|
| 188 | "};\n" .
|
---|
| 189 | "\n";
|
---|
| 190 |
|
---|
| 191 |
|
---|
| 192 | foreach my $tmpZone (sort keys %zone) {
|
---|
| 193 | my $dnsZone = $zone{$tmpZone};
|
---|
| 194 | $output .=
|
---|
| 195 | "zone \"$tmpZone\" {\n" .
|
---|
| 196 | " type slave\;\n" .
|
---|
| 197 | " file \"slave/slave-$tmpZone\"\;\n" .
|
---|
| 198 | " masters {\n";
|
---|
| 199 | foreach my $tmpIP (sort @$dnsZone) {
|
---|
| 200 | $output .= " $tmpIP\;\n";
|
---|
| 201 | };
|
---|
| 202 | $output .=
|
---|
| 203 | " };\n" .
|
---|
| 204 | "};\n" .
|
---|
| 205 | "\n";
|
---|
| 206 | };
|
---|
| 207 |
|
---|
| 208 | return($output);
|
---|
| 209 | };
|
---|
| 210 |
|
---|
| 211 |
|
---|
| 212 |
|
---|
| 213 | sub rc_conf_local {
|
---|
| 214 | my $output = genHeader("#");
|
---|
| 215 | my $masterNotUsed = master_ipNotUsed();
|
---|
| 216 | $output.=
|
---|
| 217 | "hostname=\"$nodetype$nodename.$domain\"\n" .
|
---|
| 218 | "location=\"$location\"\n" .
|
---|
| 219 | "\n";
|
---|
| 220 |
|
---|
| 221 | if( $tproxy ) {
|
---|
| 222 | if( $tproxy =~ m/\d+\.\d+\.\d+\.\d+\/\d+/ ) {
|
---|
| 223 | $output .=
|
---|
| 224 | "# Tproxy is ran on this system\n".
|
---|
| 225 | "tproxy_enable='YES'\n".
|
---|
| 226 | "tproxy_range='$tproxy'\n".
|
---|
| 227 | "\n";
|
---|
| 228 | }
|
---|
| 229 | elsif( $tproxy !~ m/no/i ) {
|
---|
| 230 | $output .= "# WARNING - specification propably wrong - check " .
|
---|
| 231 | "genesis. It should be a pure CIDR\n";
|
---|
| 232 | };
|
---|
| 233 | };
|
---|
| 234 |
|
---|
| 235 | $iplist = "172.31.255.1/32";
|
---|
| 236 | if( $masterNotUsed ) {
|
---|
| 237 | $iplist .= " $master_ip/32";
|
---|
| 238 | }
|
---|
| 239 | $output .= "ipv4_addrs_lo0=\"127.0.0.1/8 $iplist\"\n";
|
---|
| 240 |
|
---|
| 241 | $WLAN_NR = 0;
|
---|
| 242 | foreach my $interface (sort keys %config) {
|
---|
| 243 | (my $if, my $number) = split(/:/, $interface);
|
---|
| 244 | if( not defined $number ) {
|
---|
| 245 | # No special syntax for aliases anymore
|
---|
| 246 | $IFNAME = $if;
|
---|
| 247 | if( $TYPE{$if} =~ /wireless/i ) {
|
---|
| 248 | $IFNAME = "wlan$WLAN_NR";
|
---|
| 249 | $WLAN_NR++;
|
---|
| 250 | $output .= "wlans_$if=\"$IFNAME\"\n";
|
---|
| 251 | $output .= "create_args_$IFNAME=\"";
|
---|
| 252 | if( $MODE{$if} =~/master/i ) {
|
---|
| 253 | $output .= " wlanmode ap";
|
---|
| 254 | $output .= " channel $CHANNEL{$interface}";
|
---|
| 255 | } else {
|
---|
| 256 | $output .= " wlanmode sta"
|
---|
| 257 | }
|
---|
| 258 | if ( $SUBTYPE{$if} =~ /802.11a/i ) {
|
---|
| 259 | $output .= " mode 11a";
|
---|
| 260 | } elsif ( $SUBTYPE{$if} =~ /802.11g/i ) {
|
---|
| 261 | $output .= " mode 11g";
|
---|
| 262 | } else {
|
---|
| 263 | # Default output
|
---|
| 264 | $output .= " mode 11b";
|
---|
| 265 | }
|
---|
| 266 | $output .= " ssid $ESSID{$interface} regdomain ETSI country NL \"\n";
|
---|
| 267 | }
|
---|
| 268 |
|
---|
| 269 | @iplist = ();
|
---|
| 270 | foreach my $interface (sort keys %config) {
|
---|
| 271 | (my $if_t, my $number) = split(/:/, $interface);
|
---|
| 272 | if ( $if_t eq $if ) {
|
---|
| 273 | push(@iplist,$IP{$interface});
|
---|
| 274 | };
|
---|
| 275 | };
|
---|
| 276 | $output .= "ipv4_addrs_$IFNAME=\"" . join(' ',@iplist) . "\"\n";
|
---|
| 277 | $output .= "\n";
|
---|
| 278 | };
|
---|
| 279 | };
|
---|
| 280 | return($output);
|
---|
| 281 | };
|
---|
| 282 |
|
---|
| 283 |
|
---|
| 284 | sub resolv_conf {
|
---|
| 285 | my $output = genHeader"#";
|
---|
| 286 |
|
---|
| 287 | $output .=
|
---|
| 288 | "search wleiden.net.\n" .
|
---|
| 289 | "# Try local (cache) first \n" .
|
---|
| 290 | "nameserver 127.0.0.1\n" .
|
---|
| 291 | "\n";
|
---|
| 292 |
|
---|
| 293 | $output .=
|
---|
| 294 | "# proxies are also nameservers \n" .
|
---|
| 295 | "nameserver 172.17.8.68 # proxy1\n" .
|
---|
| 296 | "nameserver 172.17.143.4 # proxy2\n" .
|
---|
| 297 | "nameserver 172.20.128.98 # proxy3\n" .
|
---|
| 298 | "nameserver 172.16.2.254 # proxy4\n" .
|
---|
| 299 | "nameserver 172.19.168.66 # proxy5\n" .
|
---|
| 300 | "nameserver 172.16.3.146 # proxy6\n" .
|
---|
| 301 | "nameserver 172.17.16.66 # proxy62\n" .
|
---|
| 302 | "nameserver 172.22.0.66 # proxy10\n" .
|
---|
| 303 | "nameserver 172.23.25.66 # proxy11\n" .
|
---|
| 304 | "nameserver 172.17.169.66 # proxy97\n";
|
---|
| 305 |
|
---|
| 306 | return($output);
|
---|
| 307 | };
|
---|
| 308 |
|
---|
| 309 |
|
---|
| 310 | sub parse_config {
|
---|
| 311 | my $workingfile = $_[0];
|
---|
| 312 | do($workingfile) || die("Cann't open/parse $workingfile");
|
---|
| 313 | foreach my $if (keys %config) {
|
---|
| 314 | my $cfg=$config{$if};
|
---|
| 315 | while ($cfg) {
|
---|
| 316 | $cfg=~s/^([^\n\r]+)[\r\n]*//m;
|
---|
| 317 | my $line=$1;
|
---|
| 318 | $line=~s/\s*#.*//;
|
---|
| 319 | if (((my $name, my $value)=split(/=/,$line)) eq 2) {
|
---|
| 320 | my $doit="if (exists(\$$name\{\"$if\"\})) {\$$name\{\"$if\"\}.=\";$value\";} else {\$$name\{\"$if\"\}.=\"$value\";}";
|
---|
| 321 | eval($doit);
|
---|
| 322 | };
|
---|
| 323 | $cfg=~s/[\r\n]*$//m;
|
---|
| 324 | };
|
---|
| 325 | };
|
---|
| 326 | };
|
---|
| 327 |
|
---|
| 328 | sub authorized_keys {
|
---|
| 329 | my $output = genHeader("#");
|
---|
| 330 | if( -e "$global_keyPath" ) {
|
---|
| 331 | open( GLOBAL, "$global_keyPath" ) || die ("Cann't open $global_keyPath");
|
---|
| 332 | $output .= join("", <GLOBAL>);
|
---|
| 333 | close( GLOBAL );
|
---|
| 334 | }
|
---|
| 335 | else {
|
---|
| 336 | $output .= "# No $global_keyPath\n";
|
---|
| 337 | };
|
---|
| 338 |
|
---|
| 339 | if( -e "$ndir/$nodetype$nodename/$ssh_file" ) {
|
---|
| 340 | open( NODE, "$ndir/$nodetype$nodename/$ssh_file" ) || die ("Cann't open $home/$nodename/$ssh_file");
|
---|
| 341 | $output .= join("", <NODE>);
|
---|
| 342 | close( NODE );
|
---|
| 343 | }
|
---|
| 344 | else {
|
---|
| 345 | $output .= "# No $ndir/$nodetype$nodename/$ssh_file\n";
|
---|
| 346 | };
|
---|
| 347 |
|
---|
| 348 | return($output);
|
---|
| 349 | };
|
---|
| 350 |
|
---|
| 351 | sub do_it {
|
---|
| 352 | my $file = $_[0];
|
---|
| 353 | my $body = "";
|
---|
| 354 |
|
---|
| 355 | $file =~ s/\./_/g;
|
---|
| 356 | $body=&$file;
|
---|
| 357 | return($body);
|
---|
| 358 | };
|
---|
| 359 |
|
---|
| 360 | if( exists $ARGV[0] ) {
|
---|
| 361 | if( exists $ARGV[1] ) {
|
---|
| 362 | parse_config($ARGV[0]);
|
---|
| 363 | print do_it($ARGV[1]);
|
---|
| 364 | }
|
---|
| 365 | else {
|
---|
| 366 | print "Usage `perl wleiden.pl 'inputfile' 'outputfile'`\n";
|
---|
| 367 | };
|
---|
| 368 | };
|
---|
| 369 |
|
---|
| 370 | 1;
|
---|