Copyright (C) 2008 Shrew Soft Inc. Copyright (C) 2003-2004 Manuel Kasper 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("interfaces.inc"); require_once("filter.inc"); require_once("system.inc"); /* * Format a string to look (more) like the expected DUID format: * * 1) Replace any "-" with ":" * 2) If the user inputs 14 components, then add the expected "0e:00:" to the front. * This is convenience, because the actual DUID (which is reported in logs) is the last 14 components. * 3) If any components are input with just a single char (hex digit hopefully), put a "0" in front. * * The final result should be closer to: * * "0e:00:00:01:00:01:nn:nn:nn:nn:nn:nn:nn:nn:nn:nn" */ function format_duid($duid) { $values = explode(':', strtolower(str_replace('-', ':', $duid))); if (count($values) == 14) { array_unshift($values, '0e', '00'); } array_walk($values, function(&$value) { $value = str_pad($value, 2, '0', STR_PAD_LEFT); }); return implode(':', $values); } function is_duid($duid) { $values = explode(":", $duid); if (count($values) != 16 || strlen($duid) != 47) { return false; } for ($i = 0; $i < 16; $i++) { if (ctype_xdigit($values[$i]) == false) { return false; } if (hexdec($values[$i]) < 0 || hexdec($values[$i]) > 255) { return false; } } return true; } /* read duid from disk or return blank DUID string */ function read_duid() { $duid = ''; $count = 0; if (file_exists('/var/db/dhcp6c_duid') && ($fd = fopen('/var/db/dhcp6c_duid', 'r'))) { if (filesize('/var/db/dhcp6c_duid') == 16) { $buffer = fread($fd, 16); while ($count < 16) { $duid .= bin2hex($buffer[$count]); $count++; if ($count < 16) { $duid .= ':'; } } } fclose($fd); } if (!is_duid($duid)) { $duid = 'XX:XX:XX:XX:XX:XX:XX:XX:XX:XX:XX:XX:XX:XX:XX:XX'; } return $duid; } $duid = read_duid(); if ($_SERVER['REQUEST_METHOD'] === 'GET') { $pconfig = array(); $pconfig['disablechecksumoffloading'] = isset($config['system']['disablechecksumoffloading']); $pconfig['disablesegmentationoffloading'] = isset($config['system']['disablesegmentationoffloading']); $pconfig['disablelargereceiveoffloading'] = isset($config['system']['disablelargereceiveoffloading']); $pconfig['ipv6duid'] = $config['system']['ipv6duid']; if (!isset($config['system']['disablevlanhwfilter'])) { $pconfig['disablevlanhwfilter'] = '0'; } else { $pconfig['disablevlanhwfilter'] = $config['system']['disablevlanhwfilter']; } $pconfig['sharednet'] = isset($config['system']['sharednet']); } elseif ($_SERVER['REQUEST_METHOD'] === 'POST') { $input_errors = array(); $pconfig = $_POST; if (!empty($pconfig['ipv6duid']) && !is_duid($pconfig['ipv6duid'])) { $input_errors[] = gettext('A valid DUID must be specified.'); } if (!count($input_errors)) { if (!empty($pconfig['sharednet'])) { $config['system']['sharednet'] = true; } elseif (isset($config['system']['sharednet'])) { unset($config['system']['sharednet']); } if (!empty($pconfig['disablechecksumoffloading'])) { $config['system']['disablechecksumoffloading'] = true; } elseif (isset($config['system']['disablechecksumoffloading'])) { unset($config['system']['disablechecksumoffloading']); } if (!empty($pconfig['disablesegmentationoffloading'])) { $config['system']['disablesegmentationoffloading'] = true; } elseif (isset($config['system']['disablesegmentationoffloading'])) { unset($config['system']['disablesegmentationoffloading']); } if (!empty($pconfig['disablelargereceiveoffloading'])) { $config['system']['disablelargereceiveoffloading'] = true; } elseif (isset($config['system']['disablelargereceiveoffloading'])) { unset($config['system']['disablelargereceiveoffloading']); } if (!empty($pconfig['disablevlanhwfilter'])) { $config['system']['disablevlanhwfilter'] = $pconfig['disablevlanhwfilter']; } elseif (isset($config['system']['disablevlanhwfilter'])) { unset($config['system']['disablevlanhwfilter']); } if (!empty($pconfig['ipv6duid'])) { $config['system']['ipv6duid'] = format_duid($pconfig['ipv6duid']); } elseif (isset($config['system']['ipv6duid'])) { unset($config['system']['ipv6duid']); /* clear the file as this means auto-generate */ @unlink('/var/db/dhcp6c_duid'); } $savemsg = get_std_save_message(); write_config(); system_arp_wrong_if(); } } legacy_html_escape_form_data($pconfig); include("head.inc"); ?>
/>
/>
/>
/>
  " />