Commit 2149c897 authored by Ad Schellevis's avatar Ad Schellevis

(legacy) probe network hardware settings before applying.

parent 3a47f554
......@@ -272,7 +272,7 @@ function interface_vlan_configure(&$vlan)
}
}
// disable/enable hardware vlan tags, will be skipped when "Leave default" (option 2) is selected
// disable/enable hardware vlan tags, will be skipped when "Leave default" (option 2) is selected
if (!isset($config['system']['disablevlanhwfilter']) || $config['system']['disablevlanhwfilter'] == 1) {
foreach ($members as $member) {
// set one tag at a time to avoid driver issues
......@@ -3030,12 +3030,8 @@ function interface_configure($interface = 'wan', $reloadall = false, $linkupeven
}
mwexec($cmd);
}
$options = pfSense_get_interface_addresses($realhwif);
/* skip vlans for checksumming and polling */
if (!stristr($realif, "_vlan") && is_array($options)) {
legacy_interface_flags($realhwif, interface_override_flags(), false);
}
// apply interface hardware settings (tso, lro, ..)
configure_interface_hardware($realhwif);
$tunnelif = substr($realif, 0, 3);
switch ($wancfg['ipaddr']) {
......
......@@ -182,6 +182,7 @@ function legacy_interface_details($intf)
{
$result = array();
$result["capabilities"] = array();
$result["options"] = array();
$process = proc_open('/sbin/ifconfig -m ' . escapeshellarg($intf), array(array("pipe", "r"), array("pipe", "w")), $pipes);
if (is_resource($process)) {
$ifconfig_data = stream_get_contents($pipes[1]);
......@@ -192,7 +193,14 @@ function legacy_interface_details($intf)
foreach (explode(',', $capabilities) as $capability) {
$result["capabilities"][] = strtolower(trim($capability));
}
} elseif (strpos(trim($line), 'options=') !== false) {
// parse options
$capabilities = substr($line, strpos($line, '<') + 1, -1);
foreach (explode(',', $capabilities) as $capability) {
$result["options"][] = strtolower(trim($capability));
}
}
}
fclose($pipes[1]);
proc_close($process);
......@@ -214,3 +222,48 @@ function legacy_netgraph_rename($tmpifs, $ifs)
{
mwexecf('/usr/sbin/ngctl name %s: %s', array($tmpifs, $ifs));
}
/**
* configure interface hardware settings
* @param string $ifs interface name
*/
function configure_interface_hardware($ifs)
{
global $config;
$intf_details = legacy_interface_details($ifs);
/* skip vlans for checksumming and polling */
if (!stristr($ifs, "_vlan") && is_array($intf_details)) {
// get current settings
$csum_set = in_array('rxcsum', $intf_details['options']) || in_array('txcsum', $intf_details['options']);
$tso_set = in_array('tso4', $intf_details['options']) || in_array('tso6', $intf_details['options']);
$lro_set = in_array('lro', $intf_details['options']);
$polling_set = in_array('polling', $intf_details['options']);
// hardware checksum offloading offloading
if (isset($config['system']['disablechecksumoffloading']) && $csum_set) {
legacy_interface_flags($ifs, '-txcsum -rxcsum', false);
} elseif (!isset($config['system']['disablechecksumoffloading']) && !$csum_set) {
legacy_interface_flags($ifs, 'txcsum rxcsum', false);
}
// TCP segmentation offloading
if (isset($config['system']['disablesegmentationoffloading']) && $tso_set) {
legacy_interface_flags($ifs, '-tso', false);
} elseif (!isset($config['system']['disablesegmentationoffloading']) && !$tso_set) {
legacy_interface_flags($ifs, 'tso', false);
}
// large receive offload
if (isset($config['system']['disablelargereceiveoffloading']) && $lro_set) {
legacy_interface_flags($ifs, '-lro', false);
} elseif (!isset($config['system']['disablelargereceiveoffloading']) && !$lro_set) {
legacy_interface_flags($ifs, 'lro', false);
}
// polling
if (isset($config['system']['polling']) && !$polling_set) {
legacy_interface_flags($ifs, 'polling', false);
} elseif (!isset($config['system']['polling']) && $polling_set) {
legacy_interface_flags($ifs, '-polling', false);
}
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment