. All rights reserved. Portions Copyright (C) 2007-2008 IKT . 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.inet.conf", "r"); if ($nfd) { while (!feof($nfd)) { $dnss = trim(fgets($nfd)); if ($dnss) { $resolvconf .= "nameserver $dnss\n"; $havedns = true; } } fclose($nfd); } } if (isset($syscfg['dnsallowoverride']) && ipv6enabled()) { /* get dynamically assigned DNS servers (if any) */ $nfd = @fopen("{$g['varetc_path']}/nameservers.inet6.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 = << '::ffff:0.0.0.0/96', 'gateway' => '::1', 'opts' => '-reject')); array_push($routes, array('network' => '::0.0.0.0/96', 'gateway' => '::1', 'opts' => '-reject')); /* disallow packets to malicious 6to4 prefix */ array_push($routes, array('network' => '2002:e000::/20', 'gateway' => '::1', 'opts' => '-reject')); array_push($routes, array('network' => '2002:7f00::/24', 'gateway' => '::1', 'opts' => '-reject')); array_push($routes, array('network' => '2002:0000::/24', 'gateway' => '::1', 'opts' => '-reject')); array_push($routes, array('network' => '2002:ff00::/24', 'gateway' => '::1', 'opts' => '-reject')); /* Disallow unicast packets without outgoing scope identifiers, or route such packets to a "default" interface, if it is specified. */ array_push($routes, array('network' => 'fe80::/10', 'gateway' => '::1', 'opts' => '-reject')); } foreach ($routes as $rtent) { mwexec("/sbin/route add $inet " . escapeshellarg($rtent['network']) . ' ' . escapeshellarg($rtent['gateway']) . ' ' . escapeshellarg($rtent['opts'])); /* record route so it can be easily removed later (if necessary) */ fwrite($fd, $rtent['network'] . "\n"); } fclose($fd); } } return 0; } function ipv6enabled() { global $config; return isset($config['system']['enableipv6']); } function system_routing_enable() { global $config, $g; $res = mwexec("/sbin/sysctl net.inet.ip.forwarding=1"); $res |= mwexec("/sbin/sysctl net.inet6.ip6.forwarding=1"); return $res; } function system_syslogd_start() { global $config, $g; $syslogcfg = $config['syslog']; if ($g['booting']) echo "Starting syslog service... "; else killbypid("{$g['varrun_path']}/syslog.pid"); if (isset($syslogcfg['enable'])) { /* write syslog.conf */ $fd = fopen("{$g['varetc_path']}/syslog.conf", "w"); if (!$fd) { printf("Error: cannot open syslog.conf in system_syslogd_start().\n"); return 1; } if (is_ipaddr6($syslogcfg['remoteserver'])) { $syslogserver = "[" . $syslogcfg['remoteserver'] . "]"; } else { $syslogserver = $syslogcfg['remoteserver']; } if ($syslogcfg['remoteport']) $syslogserver .= ":" . $syslogcfg['remoteport']; $syslogconf = << /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']}/runsntp.pid"); killbypid("{$g['varrun_path']}/sntp.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/runsntp.sh " . escapeshellarg("{$g['varrun_path']}/runsntp.pid") . " " . escapeshellarg("{$g['varrun_path']}/sntp.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(); voucher_save_db_to_config(); } 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; if (file_exists("{$g['varlog_path']}/dmesg.boot")) return 0; /* nothing to do */ 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" && $g['platform'] != "generic-pc-serial") 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)) { mwexec("/usr/local/sbin/ataidle -S $standby 0 0"); if ($g['booting']) { echo "done\n"; } } else if ($g['booting']) { echo "failed\n"; } } } 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_check_reset_button() { $specplatform = system_identify_specific_platform(); if ($specplatform['name'] != "wrap" && $specplatform['name'] != "alix") return 0; $retval = mwexec("/usr/local/sbin/" . $specplatform['name'] . "resetbtn"); if ($retval == 99) { /* user has pressed reset button for 2 seconds - reset to factory defaults */ echo << platform string (e.g. 'wrap', 'alix' etc.) descr => human-readable description (e.g. "PC Engines WRAP") */ function system_identify_specific_platform() { global $g; if ($g['platform'] == 'generic-pc') return array('name' => 'generic-pc', 'descr' => "Generic PC"); if ($g['platform'] == 'generic-pc-serial') return array('name' => 'generic-pc-serial', 'descr' => "Generic PC (serial console)"); if ($g['platform'] == 'generic-pc-cdrom') return array('name' => 'generic-pc-cdrom', 'descr' => "Generic PC (CD-ROM)"); /* the rest of the code only deals with 'embedded' platforms */ if ($g['platform'] != 'embedded') return array('name' => $g['platform'], 'descr' => $g['platform']); $dmesg = system_get_dmesg_boot(); if (strpos($dmesg, "PC Engines WRAP") !== false) return array('name' => 'wrap', 'descr' => 'PC Engines WRAP'); if (strpos($dmesg, "PC Engines ALIX") !== false) return array('name' => 'alix', 'descr' => 'PC Engines ALIX'); if (preg_match("/Soekris net45../", $dmesg, $matches)) return array('name' => 'net45xx', 'descr' => $matches[0]); if (preg_match("/Soekris net48../", $dmesg, $matches)) return array('name' => 'net48xx', 'descr' => $matches[0]); if (preg_match("/Soekris net55../", $dmesg, $matches)) return array('name' => 'net55xx', 'descr' => $matches[0]); /* unknown embedded platform */ return array('name' => 'embedded', 'descr' => 'embedded (unknown)'); } function system_get_dmesg_boot() { global $g; if (!file_exists("{$g['varlog_path']}/dmesg.boot")) system_dmesg_save(); return file_get_contents("{$g['varlog_path']}/dmesg.boot"); } function storage_disk_get_devices() { return explode(" ", trim(exec("/sbin/sysctl -n kern.disks"))); } function storage_read_diskinfo($device) { $output = preg_split("/\s+/", exec("/usr/sbin/diskinfo $device")); $info['sectorsize'] = $output[1]; $info['sizeinbytes'] = $output[2]; $info['sizeinsectors'] = $output[3]; return $info; } function storage_disk_get_name($device) { $dmesg = system_get_dmesg_boot(); $matches = array(); if (preg_match("/^$device:.*<(.+)>/m", $dmesg, $matches)) { $name = $matches[1]; } else { $name = "unavailable"; } return $name; } ?>