. 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 system_resolvconf_generate($dynupdate = false) { global $config, $g; $syscfg = $config['system']; $fd = fopen("{$g['varetc_path']}/resolv.conf", "w"); if (!$fd) { printf("Error: cannot open resolv.conf in system_resolvconf_generate().\n"); return 1; } $resolvconf = "domain {$syscfg['domain']}\n"; $havedns = false; if (isset($syscfg['dnsallowoverride'])) { /* get dynamically assigned DNS servers (if any) */ $nfd = @fopen("{$g['varetc_path']}/nameservers.conf", "r"); if ($nfd) { while (!feof($nfd)) { $dnss = trim(fgets($nfd)); if ($dnss) { $resolvconf .= "nameserver $dnss\n"; $havedns = true; } } fclose($nfd); } } if (!$havedns && is_array($syscfg['dnsserver'])) { foreach ($syscfg['dnsserver'] as $ns) { if ($ns) $resolvconf .= "nameserver $ns\n"; $havedns = true; } } fwrite($fd, $resolvconf); fclose($fd); if (!$g['booting']) { /* restart dhcpd (nameservers may have changed) */ if (!$dynupdate) services_dhcpd_configure(); } return 0; } function system_hosts_generate() { global $config, $g; $syscfg = $config['system']; $lancfg = $config['interfaces']['lan']; $dnsmasqcfg = $config['dnsmasq']; if (!is_array($dnsmasqcfg['hosts'])) { $dnsmasqcfg['hosts'] = array(); } $hostscfg = $dnsmasqcfg['hosts']; $fd = fopen("{$g['varetc_path']}/hosts", "w"); if (!$fd) { printf("Error: cannot open hosts file in system_hosts_generate().\n"); return 1; } $hosts = << /etc/localtime"); if ($g['booting']) echo "done\n"; } function system_ntp_configure() { global $config, $g; $syscfg = $config['system']; if ($g['booting']) echo "Starting NTP client... "; else { killbypid("{$g['varrun_path']}/runmsntp.pid"); killbypid("{$g['varrun_path']}/msntp.pid"); } /* start ntp client if needed - needs to be forced into background */ $updateinterval = $syscfg['time-update-interval']; if ($updateinterval > 0) { if ($updateinterval < 6) $updateinterval = 6; $timeservers = ""; foreach (explode(' ', $syscfg['timeservers']) as $ts) $timeservers .= " " . $ts; mwexec_bg("/usr/local/bin/runmsntp.sh " . escapeshellarg("{$g['varrun_path']}/runmsntp.pid") . " " . escapeshellarg("{$g['varrun_path']}/msntp.pid") . " " . escapeshellarg($updateinterval) . " " . escapeshellarg($timeservers)); } if ($g['booting']) echo "done\n"; } function system_reboot() { global $g; system_reboot_cleanup(); mwexec("nohup /etc/rc.reboot > /dev/null 2>&1 &"); } function system_reboot_sync() { global $g; system_reboot_cleanup(); mwexec("/etc/rc.reboot > /dev/null 2>&1"); } function system_reboot_cleanup() { captiveportal_radius_stop_all(); } function system_do_shell_commands($early = 0) { global $config, $g; if ($early) $cmdn = "earlyshellcmd"; else $cmdn = "shellcmd"; if (is_array($config['system'][$cmdn])) { foreach ($config['system'][$cmdn] as $cmd) { exec($cmd); } } } function system_do_extensions($early = false) { global $config, $g; if (!is_dir("{$g['etc_path']}/inc/ext") || is_dir("{$g['www_path']}/ext")) return; $dh = @opendir("{$g['etc_path']}/inc/ext"); if ($dh) { while (($extd = readdir($dh)) !== false) { if (($extd === ".") || ($extd === "..")) continue; $rcfile = "{$g['etc_path']}/inc/ext/" . $extd . "/" . ($early ? "rc.early" : "rc"); if (file_exists($rcfile)) passthru($rcfile); } closedir($dh); } // Create the symbolic links for .htpasswd and gui.css // in each www/ext directory. if (!$early) { $dh = @opendir("{$g['www_path']}/ext"); if ($dh) { while (($extd = readdir($dh)) !== false) { if (($extd === ".") || ($extd === "..")) continue; if (is_dir("{$g['www_path']}/ext/$extd")) { // Create links symlink("{$g['www_path']}/.htpasswd","{$g['www_path']}/ext/{$extd}/.htpasswd"); symlink("{$g['www_path']}/gui.css","{$g['www_path']}/ext/{$extd}/gui.css"); } } closedir($dh); } } } function system_console_configure() { global $config, $g; if (isset($config['system']['disableconsolemenu'])) { touch("{$g['varetc_path']}/disableconsole"); } else { unlink_if_exists("{$g['varetc_path']}/disableconsole"); } } function system_dmesg_save() { global $g; exec("/sbin/dmesg", $dmesg); /* find last copyright line (output from previous boots may be present) */ $lastcpline = 0; for ($i = 0; $i < count($dmesg); $i++) { if (strstr($dmesg[$i], "Copyright (c) 1992-")) $lastcpline = $i; } $fd = fopen("{$g['varlog_path']}/dmesg.boot", "w"); if (!$fd) { printf("Error: cannot open dmesg.boot in system_dmesg_save().\n"); return 1; } for ($i = $lastcpline; $i < count($dmesg); $i++) fwrite($fd, $dmesg[$i] . "\n"); fclose($fd); return 0; } function system_set_harddisk_standby() { global $g, $config; if ($g['platform'] != "generic-pc") return; if (isset($config['system']['harddiskstandby']) && ($config['system']['harddiskstandby'] > 0)) { if ($g['booting']) { echo 'Setting harddisk standby time... '; } $standby = $config['system']['harddiskstandby']; // Check for a numeric value if (is_numeric($standby)) { // Sync the disk(s) mwexec('/bin/sync'); if (!mwexec('/sbin/sysctl hw.ata.suspend=' . ((int)$standby*60))) { // Reinitialize ATA-drives mwexec('/usr/local/sbin/atareinit'); if ($g['booting']) { echo "done\n"; } } else if ($g['booting']) { echo "failed\n"; } } else if ($g['booting']) { echo "failed\n"; } } } function system_polling_configure() { global $config, $g; if (isset($config['system']['polling'])) { mwexec("/sbin/sysctl kern.polling.enable=1"); } else { mwexec("/sbin/sysctl kern.polling.enable=0"); } } function system_set_termcap() { global $config; if (isset($config['diag']['ipfstatentries'])) { $lines = $config['diag']['ipfstatentries'] + 6; } else { $lines = 306; } $termcap = <<:ti@:te@:tc=xterm: xterm|xterm-color|X11 terminal emulator:\ :ti@:te@:tc=xterm-xfree86: xterm-xfree86|XFree86 xterm:\ :k1=\EOP:k2=\EOQ:k3=\EOR:k4=\EOS:\ :k5=\E[15~:k6=\E[17~:k7=\E[18~:k8=\E[19~:\ :k9=\E[20~:k;=\E[21~:F1=\E[23~:F2=\E[24~:\ :kH=\EOF:@7=\EOF:kI=\E[2~:\ :kh=\EOH:*6=\EOF:kP=\E[5~:kN=\E[6~:\ :ku=\EOA:kd=\EOB:kr=\EOC:kl=\EOD:Km=\E[M:tc=xterm-basic: xterm-basic|xterm common (XFree86):\ :li#24:co#80:am:kn#12:km:mi:ms:xn:bl=^G:\ :is=\E[!p\E[?3;4l\E[4l\E>:rs=\E[!p\E[?3;4l\E[4l\E>:le=^H:\ :AL=\E[%dL:DL=\E[%dM:DC=\E[%dP:al=\E[L:dc=\E[P:dl=\E[M:\ :UP=\E[%dA:DO=\E[%dB:LE=\E[%dD:RI=\E[%dC:\ :ho=\E[H:cd=\E[J:ce=\E[K:cl=\E[H\E[2J:cm=\E[%i%d;%dH:cs=\E[%i%d;%dr:\ :im=\E[4h:ei=\E[4l:ks=\E[?1h\E=:ke=\E[?1l\E>:kD=\E[3~:kb=^H:\ :sf=\n:sr=\EM:st=\EH:ct=\E[3g:sc=\E7:rc=\E8:\ :eA=\E(B\E)0:as=^N:ae=^O:ml=\El:mu=\Em:up=\E[A:nd=\E[C:\ :md=\E[1m:me=\E[m^O:mr=\E[7m:so=\E[7m:se=\E[27m:us=\E[4m:ue=\E[24m:\ :ti=\E[?1049h:te=\E[?1049l:vi=\E[?25l:ve=\E[?25h:\ :ut:Co#8:pa#64:op=\E[39;49m:AB=\E[4%dm:AF=\E[3%dm:\ EOD; if (!file_exists("/usr/share/misc")) mkdir("/usr/share/misc"); $fd = @fopen("/usr/share/misc/termcap", "w"); if (!$fd) { printf("Error: cannot open termcap in system_set_termcap().\n"); return 1; } chmod("/usr/share/misc/termcap", 0644); fwrite($fd, $termcap); fclose($fd); return 0; } function system_watchdog_configure() { global $config, $g; /* start watchdog process for WRAP, if enabled */ if ($g['platform'] != "wrap") return 0; /* kill watchdogd, if running */ killbyname("watchdogd"); if (isset($config['system']['watchdog'])) { /* start watchdogd */ return mwexec("/usr/local/sbin/watchdogd"); } return 0; } function system_check_reset_button() { global $config, $g; if ($g['platform'] != "wrap") return 0; $retval = mwexec("/usr/local/sbin/wrapresetbtn"); if ($retval == 99) { /* user has pressed reset button for 2 seconds - reset to factory defaults */ echo <<