. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /* include all configuration functions */ require_once("functions.inc"); function interfaces_loopback_configure() { global $config, $g; mwexec("/sbin/ifconfig lo0 127.0.0.1"); return 0; } function interfaces_lan_configure() { global $config, $g; if ($g['booting']) echo "Configuring LAN interface... "; $lancfg = $config['interfaces']['lan']; /* wireless configuration? */ if (is_array($lancfg['wireless'])) interfaces_wireless_configure($lancfg['if'], $lancfg['wireless']); mwexec("/sbin/ifconfig " . escapeshellarg($lancfg['if']) . " " . escapeshellarg($lancfg['ipaddr'] . "/" . $lancfg['subnet'])); if (!$g['booting']) { /* make new hosts file */ system_hosts_generate(); /* reload ipfilter (address may have changed) */ filter_configure(); /* reload shaper (subnet may have changed) */ shaper_configure(); /* reload dhcpd (gateway may have changed) */ services_dhcpd_configure(); /* reload dnsmasq */ services_dnsmasq_configure(); /* reload webgui */ system_webgui_start(); } if ($g['booting']) echo "done\n"; return 0; } function interfaces_optional_configure() { global $config, $g; for ($i = 1; isset($config['interfaces']['opt' . $i]); $i++) { interfaces_optional_configure_if($i); } return 0; } function interfaces_optional_configure_if($opti) { global $config, $g; $optcfg = $config['interfaces']['opt' . $opti]; if ($g['booting']) { $optdescr = ""; if ($optcfg['descr']) $optdescr = " ({$optcfg['descr']})"; echo "Configuring OPT{$opti}{$optdescr} interface... "; } if (isset($optcfg['enable'])) { /* wireless configuration? */ if (is_array($optcfg['wireless'])) interfaces_wireless_configure($optcfg['if'], $optcfg['wireless']); /* bridged? */ if ($optcfg['bridge']) { mwexec("/sbin/ifconfig " . escapeshellarg($optcfg['if']) . " delete up"); bridge_start("bridge" . $opti, $optcfg['if'], (is_array($optcfg['wireless'])) ? false : true, $config['interfaces'][$optcfg['bridge']]['if'], (is_array($config['interfaces'][$optcfg['bridge']]['wireless'])) ? false : true); } else { mwexec("/sbin/ifconfig " . escapeshellarg($optcfg['if']) . " " . escapeshellarg($optcfg['ipaddr'] . "/" . $optcfg['subnet'])); } } else { mwexec("/sbin/ifconfig " . escapeshellarg($optcfg['if']) . " delete down"); } if (!$g['booting']) { /* reload ipfilter (address may have changed) */ filter_configure(); /* reload shaper (address may have changed) */ shaper_configure(); /* restart dnsmasq */ services_dnsmasq_configure(); } if ($g['booting']) echo "done\n"; return 0; } function interfaces_wireless_configure($if, $wlcfg) { global $config, $g; /* wireless configuration */ $ifcargs = escapeshellarg($if) . " ssid " . escapeshellarg($wlcfg['ssid']) . " channel " . escapeshellarg($wlcfg['channel']) . " "; if ($wlcfg['stationname']) $ifcargs .= "stationname " . escapeshellarg($wlcfg['stationname']) . " "; if (isset($wlcfg['wep']['enable']) && is_array($wlcfg['wep']['key'])) { $ifcargs .= "wepmode on "; $i = 1; foreach ($wlcfg['wep']['key'] as $wepkey) { $ifcargs .= "wepkey " . escapeshellarg("{$i}:{$wepkey['value']}") . " "; if (isset($wepkey['txkey'])) { $ifcargs .= "weptxkey {$i} "; } $i++; } } else { $ifcargs .= "wepmode off "; } switch ($wlcfg['mode']) { case 'hostap': if (strstr($if, "wi")) $ifcargs .= "-mediaopt ibss mediaopt hostap "; break; case 'ibss': case 'IBSS': if (strstr($if, "wi")) $ifcargs .= "-mediaopt hostap mediaopt ibss "; else if (strstr($if, "an")) $ifcargs .= "mediaopt adhoc "; break; case 'bss': case 'BSS': if (strstr($if, "wi")) $ifcargs .= "-mediaopt hostap -mediaopt ibss "; else if (strstr($if, "an")) $ifcargs .= "-mediaopt adhoc "; break; } $ifcargs .= "up"; mwexec("/sbin/ifconfig " . $ifcargs); return 0; } function interfaces_wan_configure() { global $config, $g; $wancfg = $config['interfaces']['wan']; if ($g['booting']) echo "Configuring WAN interface... "; else { /* kill dhclient */ killbypid("{$g['varrun_path']}/dhclient.pid"); /* kill PPPoE client (mpd) */ killbypid("{$g['varrun_path']}/mpd.pid"); /* wait for processes to die */ sleep(2); /* remove mpd.conf, if it exists */ if (file_exists("{$g['varetc_path']}/mpd.conf")) { unlink("{$g['varetc_path']}/mpd.conf"); } /* remove mpd.links, if it exists */ if (file_exists("{$g['varetc_path']}/mpd.links")) { unlink("{$g['varetc_path']}/mpd.links"); } } /* remove all addresses ("aliases") first */ while (mwexec("/sbin/ifconfig " . escapeshellarg($wancfg['if']) . " -alias") == 0); mwexec("/sbin/ifconfig " . escapeshellarg($wancfg['if']) . " down"); /* wireless configuration? */ if (is_array($wancfg['wireless'])) interfaces_wireless_configure($wancfg['if'], $wancfg['wireless']); if ($wancfg['spoofmac']) mwexec("/sbin/ifconfig " . escapeshellarg($wancfg['if']) . " link " . escapeshellarg($wancfg['spoofmac'])); switch ($wancfg['ipaddr']) { case 'dhcp': /* fire up dhclient - don't wait for the lease (-nw) */ mwexec("/sbin/dhclient -nw " . escapeshellarg($wancfg['if'])); break; case 'pppoe': interfaces_wan_pppoe_configure(); break; case 'pptp': interfaces_wan_pptp_configure(); break; default: mwexec("/sbin/ifconfig " . escapeshellarg($wancfg['if']) . " " . escapeshellarg($wancfg['ipaddr'] . "/" . $wancfg['subnet'])); /* install any IP aliases for 1:1 NAT? */ if (is_array($config['nat']['onetoone'])) { foreach ($config['nat']['onetoone'] as $natent) { mwexec("/sbin/ifconfig " . escapeshellarg($wancfg['if']) . " " . escapeshellarg($natent['external'] . "/32") . " alias"); } } /* install default route */ mwexec("/sbin/route delete default"); mwexec("/sbin/route add default " . escapeshellarg($wancfg['gateway'])); /* resync ipfilter (done automatically for DHCP/PPPoE/PPTP) */ filter_resync(); } if (!$g['booting']) { /* reload ipfilter */ filter_configure(); /* reload ipsec tunnels */ vpn_ipsec_configure(); /* restart ez-ipupdate */ services_dyndns_configure(); /* restart dnsmasq */ services_dnsmasq_configure(); } if ($g['booting']) echo "done\n"; return 0; } function interfaces_wan_pppoe_configure() { global $config, $g; $wancfg = $config['interfaces']['wan']; $pppoecfg = $config['pppoe']; /* generate mpd.conf */ $fd = fopen("{$g['varetc_path']}/mpd.conf", "w"); if (!$fd) { printf("Error: cannot open mpd.conf in interfaces_wan_pppoe_configure().\n"); return 1; } $mpdconf = <<