<?php /* Copyright (C) 2014-2015 Deciso B.V. Copyright (C) 2003-2004 Manuel Kasper <mk@neon1.net> 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. */ require_once("guiconfig.inc"); require_once("filter.inc"); require_once("system.inc"); require_once("unbound.inc"); require_once("interfaces.inc"); require_once("services.inc"); if ($_SERVER['REQUEST_METHOD'] === 'GET') { $pconfig = array(); if (isset($_GET['savemsg'])) { $savemsg = htmlspecialchars($_GET['savemsg']); } $pconfig['dns1gw'] = null; $pconfig['dns2gw'] = null; $pconfig['dns3gw'] = null; $pconfig['dns4gw'] = null ; $pconfig['theme'] = null; $pconfig['language'] = null; $pconfig['timezone'] = "Etc/UTC"; $pconfig['prefer_ipv4'] = isset($config['system']['prefer_ipv4']); $pconfig['gw_switch_default'] = isset($config['system']['gw_switch_default']); $pconfig['hostname'] = $config['system']['hostname']; $pconfig['domain'] = $config['system']['domain']; if (isset($config['system']['dnsserver'])) { list($pconfig['dns1'],$pconfig['dns2'],$pconfig['dns3'],$pconfig['dns4']) = $config['system']['dnsserver']; } else { list($pconfig['dns1'],$pconfig['dns2'],$pconfig['dns3'],$pconfig['dns4']) = null; } foreach (array('dns1gw', 'dns2gw', 'dns3gw', 'dns4gw') as $dnsgwopt) { if (!empty($config['system'][$dnsgwopt])) { $pconfig[$dnsgwopt] = $config['system'][$dnsgwopt]; } else { $pconfig[$dnsgwopt] = "none"; } } $pconfig['dnsallowoverride'] = isset($config['system']['dnsallowoverride']); $pconfig['timezone'] = $config['system']['timezone']; if (isset($config['system']['theme'])) { $pconfig['theme'] = $config['system']['theme']; } if (isset($config['system']['language'])) { $pconfig['language'] = $config['system']['language']; } $pconfig['dnslocalhost'] = isset($config['system']['dnslocalhost']); } elseif ($_SERVER['REQUEST_METHOD'] === 'POST') { if (isset($_POST['timezone']) && $pconfig['timezone'] <> $_POST['timezone']) { filter_pflog_start(); } $input_errors = array(); $pconfig = $_POST; /* input validation */ $reqdfields = explode(" ", "hostname domain"); $reqdfieldsn = array(gettext("Hostname"),gettext("Domain")); do_input_validation($pconfig, $reqdfields, $reqdfieldsn, $input_errors); if (!empty($pconfig['hostname']) && !is_hostname($pconfig['hostname'])) { $input_errors[] = gettext("The hostname may only contain the characters a-z, 0-9 and '-'."); } if (!empty($pconfig['domain']) && !is_domain($pconfig['domain'])) { $input_errors[] = gettext("The domain may only contain the characters a-z, 0-9, '-' and '.'."); } $ignore_posted_dnsgw = array(); for ($dnscounter=1; $dnscounter<5; $dnscounter++){ $dnsname="dns{$dnscounter}"; $dnsgwname="dns{$dnscounter}gw"; if (!empty($pconfig[$dnsname]) && !is_ipaddr($pconfig[$dnsname])) { $input_errors[] = gettext("A valid IP address must be specified for DNS server $dnscounter."); } elseif(!empty($pconfig[$dnsgwname]) && $pconfig[$dnsgwname] <> "none") { // A real gateway has been selected. if (is_ipaddr($pconfig[$dnsname])) { if ((is_ipaddrv4($pconfig[$dnsname])) && (validate_address_family($pconfig[$dnsname], $pconfig[$dnsgwname]) === false )) { $input_errors[] = gettext("You can not specify IPv6 gateway '{$pconfig[$dnsgwname]}' for IPv4 DNS server '{$pconfig[$dnsname]}'"); } if ((is_ipaddrv6($pconfig[$dnsname])) && (validate_address_family($pconfig[$dnsname], $pconfig[$dnsgwname]) === false )) { $input_errors[] = gettext("You can not specify IPv4 gateway '{$pconfig[$dnsgwname]}' for IPv6 DNS server '{$pconfig[$dnsname]}'"); } } else { // The user selected a gateway but did not provide a DNS address. Be nice and set the gateway back to "none". $ignore_posted_dnsgw[$dnsgwname] = true; } } } /* XXX cranky low-level call, please refactor */ $direct_networks_list = explode(' ', filter_get_direct_networks_list(filter_generate_optcfg_array())); for ($dnscounter=1; $dnscounter<5; $dnscounter++) { $dnsitem = "dns{$dnscounter}"; $dnsgwitem = "dns{$dnscounter}gw"; if (!empty($pconfig[$dnsgwitem])) { if(interface_has_gateway($pconfig[$dnsgwitem])) { foreach($direct_networks_list as $direct_network) { if(ip_in_subnet($_POST[$dnsitem], $direct_network)) { $input_errors[] = sprintf(gettext("You can not assign a gateway to DNS '%s' server which is on a directly connected network."),$pconfig[$dnsitem]); } } } } } if (count($input_errors) == 0) { $config['system']['hostname'] = $pconfig['hostname']; $config['system']['domain'] = $pconfig['domain']; $config['system']['timezone'] = $pconfig['timezone']; $config['theme'] = $pconfig['theme']; if (!empty($pconfig['language']) && $pconfig['language'] != $config['system']['language']) { $config['system']['language'] = $pconfig['language']; } if (!empty($pconfig['prefer_ipv4'])) { $config['system']['prefer_ipv4'] = true; } elseif (isset($config['system']['prefer_ipv4'])) { unset($config['system']['prefer_ipv4']); } if (!empty($pconfig['gw_switch_default'])) { $config['system']['gw_switch_default'] = true; } elseif (isset($config['system']['gw_switch_default'])) { unset($config['system']['gw_switch_default']); } $olddnsservers = $config['system']['dnsserver']; $config['system']['dnsserver'] = array(); foreach (array('dns1', 'dns2', 'dns3', 'dns4') as $dnsopt) { if (!empty($pconfig[$dnsopt])) { $config['system']['dnsserver'][] = $pconfig[$dnsopt]; } } $olddnsallowoverride = !empty($config['system']['dnsallowoverride']); $config['system']['dnsallowoverride'] = !empty($pconfig['dnsallowoverride']); if($pconfig['dnslocalhost'] == "yes") { $config['system']['dnslocalhost'] = true; } elseif (isset($config['system']['dnslocalhost'])) { unset($config['system']['dnslocalhost']); } /* which interface should the dns servers resolve through? */ $outdnscounter = 0; for ($dnscounter=1; $dnscounter<5; $dnscounter++) { $dnsname="dns{$dnscounter}"; $dnsgwname="dns{$dnscounter}gw"; $olddnsgwname = !empty($config['system'][$dnsgwname]) ? $config['system'][$dnsgwname] : "none" ; if ($ignore_posted_dnsgw[$dnsgwname]) { $thisdnsgwname = "none"; } else { $thisdnsgwname = $pconfig[$dnsgwname]; } // "Blank" out the settings for this index, then we set them below using the "outdnscounter" index. $config['system'][$dnsgwname] = "none"; $pconfig[$dnsgwname] = "none"; $pconfig[$dnsname] = ""; if (!empty($_POST[$dnsname])) { // Only the non-blank DNS servers were put into the config above. // So we similarly only add the corresponding gateways sequentially to the config (and to pconfig), as we find non-blank DNS servers. // This keeps the DNS server IP and corresponding gateway "lined up" when the user blanks out a DNS server IP in the middle of the list. $outdnscounter++; $outdnsname="dns{$outdnscounter}"; $outdnsgwname="dns{$outdnscounter}gw"; $pconfig[$outdnsname] = $_POST[$dnsname]; if(!empty($_POST[$dnsgwname])) { $config['system'][$outdnsgwname] = $thisdnsgwname; $pconfig[$outdnsgwname] = $thisdnsgwname; } else { // Note: when no DNS GW name is chosen, the entry is set to "none", so actually this case never happens. unset($config['system'][$outdnsgwname]); $pconfig[$outdnsgwname] = ""; } } if ($olddnsgwname != "none" && ($olddnsgwname != $thisdnsgwname || $olddnsservers[$dnscounter-1] != $_POST[$dnsname])) { // A previous DNS GW name was specified. It has now gone or changed, or the DNS server address has changed. // Remove the route. Later calls will add the correct new route if needed. if (is_ipaddrv4($olddnsservers[$dnscounter-1])) { mwexec("/sbin/route delete " . escapeshellarg($olddnsservers[$dnscounter-1])); } else { if (is_ipaddrv6($olddnsservers[$dnscounter-1])) { mwexec("/sbin/route delete -inet6 " . escapeshellarg($olddnsservers[$dnscounter-1])); } } } } write_config(); prefer_ipv4_or_ipv6(); system_hostname_configure(); system_hosts_generate(); services_dhcpleases_configure(); system_resolvconf_generate(); services_dnsmasq_configure(false); services_unbound_configure(false); services_dhcpd_configure(); system_timezone_configure(); if ($olddnsallowoverride != $config['system']['dnsallowoverride']) { configd_run("dns reload"); } filter_configure(); header(url_safe('Location: /system_general.php?savemsg=%s', array(get_std_save_message()))); exit; } } legacy_html_escape_form_data($pconfig); include("head.inc"); ?> <body> <?php include("fbegin.inc"); ?> <!-- row --> <section class="page-content-main"> <div class="container-fluid"> <div class="row"> <?php if (isset($input_errors) && count($input_errors) > 0) { print_input_errors($input_errors); } if (isset($savemsg)) { print_info_box($savemsg); } ?> <section class="col-xs-12"> <div class="content-box tab-content"> <form method="post"> <table class="table table-striped opnsense_standard_table_form"> <tr> <td width="22%"><strong><?=gettext("System");?></strong></td> <td width="78%" align="right"> <small><?=gettext("full help"); ?> </small> <i class="fa fa-toggle-off text-danger" style="cursor: pointer;" id="show_all_help_page" type="button"></i> </td> </tr> <tr> <td><a id="help_for_hostname" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Hostname"); ?></td> <td> <input name="hostname" type="text" size="40" value="<?=$pconfig['hostname'];?>" /> <div class="hidden" for="help_for_hostname"> <?=gettext("Name of the firewall host, without domain part"); ?> <br /> <?=gettext("e.g."); ?> <em><?=gettext("firewall");?></em> </div> </td> </tr> <tr> <td><a id="help_for_domain" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Domain"); ?></td> <td> <input name="domain" type="text" value="<?=$pconfig['domain'];?>" /> <div class="hidden" for="help_for_domain"> <?=gettext("Do not use 'local' as a domain name. It will cause local hosts running mDNS (avahi, bonjour, etc.) to be unable to resolve local hosts not running mDNS."); ?> <br /> <?=sprintf(gettext("e.g. %smycorp.com, home, office, private, etc.%s"),'<em>','</em>') ?> </div> </td> </tr> <tr> <td><a id="help_for_timezone" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Time zone"); ?></td> <td> <select name="timezone" id="timezone" data-size="10" class="selectpicker" data-style="btn-default" data-live-search="true"> <?php foreach (get_zoneinfo() as $value): ?> <option value="<?=htmlspecialchars($value);?>" <?= $value == $pconfig['timezone'] ? 'selected="selected"' : '' ?>> <?=htmlspecialchars($value);?> </option> <?php endforeach; ?> </select> <div class="hidden" for="help_for_timezone"> <?=gettext("Select the location closest to you"); ?> </div> </td> </tr> <tr> <td><a id="help_for_language" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Language");?></td> <td> <select name="language" class="selectpicker" data-size="10" data-style="btn-default" data-width="auto"> <?php foreach (get_locale_list() as $lcode => $ldesc):?> <option value="<?=$lcode;?>" <?=$lcode == $pconfig['language'] ? "selected=\"selected\"" : "";?>> <?=$ldesc;?> </option> <?php endforeach;?> </select> <div class="hidden" for="help_for_language"> <strong> <?=gettext("Choose a language for the webConfigurator"); ?> </strong> </div> </td> </tr> <tr> <td><a id="help_for_theme" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Theme"); ?></td> <td> <select name="theme" class="selectpicker" data-size="10" data-width="auto"> <?php $curtheme = get_current_theme(); foreach (return_dir_as_array('/usr/local/opnsense/www/themes/') as $file):?> <option <?=$file == $curtheme ? "selected=\"selected\"" : "";?>> <?=$file;?> </option> <?php endforeach; ?> </select> <div class="hidden" for="help_for_theme"> <strong> <?= gettext('This will change the look and feel of the GUI.') ?> </strong> </div> </td> </tr> <tr> <th colspan="2" valign="top" class="listtopic"><?=gettext("Networking"); ?></th> </tr> <tr> <td><a id="help_for_prefer_ipv4" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Prefer IPv4 over IPv6"); ?></td> <td> <input name="prefer_ipv4" type="checkbox" id="prefer_ipv4" value="yes" <?= !empty($pconfig['prefer_ipv4']) ? "checked=\"checked\"" : "";?> /> <strong><?=gettext("Prefer to use IPv4 even if IPv6 is available"); ?></strong> <div class="hidden" for="help_for_prefer_ipv4"> <?=gettext("By default, if a hostname resolves IPv6 and IPv4 addresses ". "IPv6 will be used, if you check this option, IPv4 will be " . "used instead of IPv6."); ?> </div> </td> </tr> <tr> <td><a id="help_for_gw_switch_default" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("Gateway switching");?> </td> <td> <input name="gw_switch_default" type="checkbox" id="gw_switch_default" value="yes" <?= !empty($pconfig['gw_switch_default']) ? "checked=\"checked\"" : "";?> /> <strong><?=gettext("Allow default gateway switching"); ?></strong><br /> <div class="hidden" for="help_for_gw_switch_default"> <?=gettext("If the link where the default gateway resides fails " . "switch the default gateway to another available one."); ?> </div> </td> </tr> <tr> <td><a id="help_for_dnsservers" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("DNS servers"); ?></td> <td> <table class="table table-striped table-condensed"> <thead> <tr> <th style="width:350px;"><?=gettext("DNS Server"); ?></th> <th><?=gettext("Use gateway"); ?></th> </tr> </thead> <tbody> <?php for ($dnscounter=1; $dnscounter<5; $dnscounter++): $dnsgw = "dns{$dnscounter}gw";?> <tr> <td> <input name="dns<?=$dnscounter;?>" type="text" value="<?=$pconfig['dns'.$dnscounter];?>" /> </td> <td> <select name='<?="dns{$dnscounter}gw";?>' class='selectpicker' data-size="10" data-width="200px"> <option value="none" <?=$pconfig[$dnsgw] == "none" ? "selected=\"selected\"" :"";?>> <?=gettext("none");?> </option> <?php foreach(return_gateways_array() as $gwname => $gwitem): if(is_ipaddrv4(lookup_gateway_ip_by_name($pconfig[$dnsgw])) && is_ipaddrv6($gwitem['gateway'])) { continue; } if(is_ipaddrv6(lookup_gateway_ip_by_name($pconfig[$dnsgw])) && is_ipaddrv4($gwitem['gateway'])) { continue; }?> <option value="<?=$gwname;?>" <?=$pconfig[$dnsgw] == $gwname ? 'selected="selected"' : '' ?>> <?=$gwname;?> - <?=$gwitem['friendlyiface'];?> - <?=$gwitem['gateway'];?> </option> <?php endforeach;?> </select> </td> </tr> <?php endfor; ?> </tbody> </table> <div class="hidden" for="help_for_dnsservers"> <?=gettext("Enter IP addresses to be used by the system for DNS resolution. " . "These are also used for the DHCP service, DNS forwarder and for PPTP VPN clients."); ?> <br /> <br /> <?=gettext("In addition, optionally select the gateway for each DNS server. " . "When using multiple WAN connections there should be at least one unique DNS server per gateway."); ?> </div> </td> </tr> <tr> <td><a id="help_for_dnsservers_opt" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext("DNS server options"); ?></td> <td> <input name="dnsallowoverride" type="checkbox" value="yes" <?=$pconfig['dnsallowoverride'] ? "checked=\"checked\"" : ""; ;?> /> <strong> <?=gettext("Allow DNS server list to be overridden by DHCP/PPP on WAN"); ?> </strong> <div class="hidden" for="help_for_dnsservers_opt"> <?= gettext("If this option is set, DNS servers " . "assigned by a DHCP/PPP server on WAN will be used " . "for its own purposes (including the DNS forwarder). " . "However, they will not be assigned to DHCP and PPTP " . "VPN clients.") ?> </div> <br/> <input name="dnslocalhost" type="checkbox" value="yes" <?=$pconfig['dnslocalhost'] ? "checked=\"checked\"" : ""; ?> /> <strong> <?=gettext("Do not use the DNS Forwarder as a DNS server for the firewall"); ?> </strong> <div class="hidden" for="help_for_dnsservers_opt"> <?=gettext("By default localhost (127.0.0.1) will be used as the first DNS server where the DNS Forwarder or DNS Resolver is enabled and set to listen on Localhost, so system can use the local DNS service to perform lookups. ". "Checking this box omits localhost from the list of DNS servers."); ?> </div> </td> </tr> <tr> <td></td> <td> <input name="Submit" type="submit" class="btn btn-primary" value="<?=gettext("Save");?>" /> </td> </tr> </table> </form> </div> </section> </div> </div> </section> <?php include("foot.inc"); ?>