0 && $ipguard['enable']) { foreach ($new_config as $key => $value) { $conf_file = "/usr/local/etc/ipguard_{$key}.conf"; file_put_contents($conf_file, $value, LOCK_EX); $config_file = file_put_contents($conf_file, $new_config[$key], LOCK_EX); /* Hack around PBI stupidity; ipguard does not find its own conf files otherwise */ $pfs_version = substr(trim(file_get_contents("/etc/version")), 0, 3); if ($pfs_version == "2.2") { $conf_file_link = "/usr/pbi/ipguard-" . php_uname("m") . "/local/etc/ipguard_{$key}.conf"; /* Better recreate this every time just in case users shuffle interfaces assignment somehow */ if (is_link($conf_file_link)) { unlink($conf_file_link); } symlink($conf_file, $conf_file_link); } $iface = convert_friendly_interface_to_real_interface_name($key); $start .= "/usr/local/sbin/ipguard -l /var/log/ipguard_{$key}.log -p /var/run/ipguard_{$key}.pid -f {$conf_file} -u 300 -z {$iface}\n\t"; } write_rcfile(array( 'file' => 'ipguard.sh', 'start' => $start, 'stop' => $stop )); restart_service('ipguard'); } else { /* Otherwise, stop the service and remove rc script */ stop_service('ipguard'); unlink_if_exists("/usr/local/etc/rc.d/ipguard.sh"); } conf_mount_ro(); /* Sync config with other pfSense servers */ ipguard_sync_on_changes(); } /* Uses XMLRPC to synchronize the changes to a remote node */ function ipguard_sync_on_changes() { global $config, $g; if (is_array($config['installedpackages']['ipguardsync'])) { if ($config['installedpackages']['ipguardsync']['config'][0]['synconchanges']) { log_error("[ipguard] XMLRPC sync is starting."); foreach ($config['installedpackages']['ipguardsync']['config'] as $rs ) { foreach ($rs['row'] as $sh) { $sync_to_ip = $sh['ipaddress']; $password = $sh['password']; if ($password && $sync_to_ip) { ipguard_do_xmlrpc_sync($sync_to_ip, $password); } } } log_error("[ipguard] XMLRPC sync is ending."); } } } /* Do the actual XMLRPC sync */ function ipguard_do_xmlrpc_sync($sync_to_ip, $password) { global $config, $g; if (!$password) { return; } if (!$sync_to_ip) { return; } $username = 'admin'; $xmlrpc_sync_neighbor = $sync_to_ip; if ($config['system']['webgui']['protocol'] != "") { $synchronizetoip = $config['system']['webgui']['protocol']; $synchronizetoip .= "://"; } $port = $config['system']['webgui']['port']; /* If port is empty, let's rely on the protocol selection */ if ($port == "") { if ($config['system']['webgui']['protocol'] == "http") { $port = "80"; } else { $port = "443"; } } $synchronizetoip .= $sync_to_ip; /* xml will hold the sections to sync */ $xml = array(); $xml['ipguard'] = $config['installedpackages']['ipguard']; /* Assemble XMLRPC payload */ $params = array( XML_RPC_encode($password), XML_RPC_encode($xml) ); /* Set a few variables needed for sync code; borrowed from filter.inc */ $url = $synchronizetoip; log_error("Beginning ipguard XMLRPC sync to {$url}:{$port}."); $method = 'pfsense.merge_installedpackages_section_xmlrpc'; $msg = new XML_RPC_Message($method, $params); $cli = new XML_RPC_Client('/xmlrpc.php', $url, $port); $cli->setCredentials($username, $password); if ($g['debug']) { $cli->setDebug(1); } /* send our XMLRPC message and timeout after 250 seconds */ $resp = $cli->send($msg, "250"); if (!$resp) { $error = "A communications error occurred while attempting ipguard XMLRPC sync with {$url}:{$port}."; log_error($error); file_notice("sync_settings", $error, "ipguard Settings Sync", ""); } elseif ($resp->faultCode()) { $cli->setDebug(1); $resp = $cli->send($msg, "250"); $error = "An error code was received while attempting ipguard XMLRPC sync with {$url}:{$port} - Code " . $resp->faultCode() . ": " . $resp->faultString(); log_error($error); file_notice("sync_settings", $error, "ipguard Settings Sync", ""); } else { log_error("ipguard XMLRPC sync successfully completed with {$url}:{$port}."); } /* tell ipguard to reload our settings on the destination sync host. */ $method = 'pfsense.exec_php'; $execcmd = "require_once('/usr/local/pkg/ipguard.inc');\n"; $execcmd .= "ipguard_custom_php_write_config();"; /* assemble xmlrpc payload */ $params = array( XML_RPC_encode($password), XML_RPC_encode($execcmd) ); log_error("ipguard XMLRPC reload data {$url}:{$port}."); $msg = new XML_RPC_Message($method, $params); $cli = new XML_RPC_Client('/xmlrpc.php', $url, $port); $cli->setCredentials($username, $password); $resp = $cli->send($msg, "250"); if (!$resp) { $error = "A communications error occurred while attempting ipguard XMLRPC sync with {$url}:{$port} (pfsense.exec_php)."; log_error($error); file_notice("sync_settings", $error, "ipguard Settings Sync", ""); } elseif ($resp->faultCode()) { $cli->setDebug(1); $resp = $cli->send($msg, "250"); $error = "An error code was received while attempting ipguard XMLRPC sync with {$url}:{$port} - Code " . $resp->faultCode() . ": " . $resp->faultString(); log_error($error); file_notice("sync_settings", $error, "ipguard Settings Sync", ""); } else { log_error("ipguard XMLRPC reload data success with {$url}:{$port} (pfsense.exec_php)."); } } ?>