. 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. */ /* pfSense_BUILDER_BINARIES: /usr/bin/killall /usr/local/sbin/sasyncd /sbin/ifconfig /sbin/sysctl pfSense_BUILDER_BINARIES: /usr/local/sbin/setkey /sbin/route /bin/mkdir pfSense_BUILDER_BINARIES: /usr/local/sbin/racoonctl /usr/local/sbin/racoon pfSense_BUILDER_BINARIES: /usr/local/sbin/filterdns /usr/local/sbin/mpd4 pfSense_MODULE: vpn */ /* include all configuration functions */ function vpn_ipsec_failover_configure() { global $config, $g; if (is_array($config['installedpackages']['sasyncd'])) { $sasyncd_text = ""; foreach ($config['installedpackages']['sasyncd']['config'] as $sasyncd) { $enabled = isset ($sasyncd['enable']); if (!$enabled) return; if ($sasyncd['peerip'] <> "") $sasyncd_text .= "peer {$sasyncd['peerip']}\n"; if ($sasyncd['interface']) $sasyncd_text .= "carp interface {$sasyncd['interface']}\n"; if ($sasyncd['sharedkey'] <> "") $sasyncd_text .= "sharedkey {$sasyncd['sharedkey']}\n"; if ($sasyncd['mode'] <> "") $sasyncd_text .= "mode {$sasyncd['mode']}\n"; if ($sasyncd['listenon'] <> "") $sasyncd_text .= "listen on {$sasyncd['listenon']}\n"; if ($sasyncd['flushmodesync'] <> "") $sasyncd_text .= "flushmode sync {$sasyncd['flushmodesync']}\n"; } file_put_contents("{$g['varetc_path']}/sasyncd.conf", $sasyncd_text); chmod("{$g['varetc_path']}/sasyncd.conf", 0600); if(is_process_running("sasyncd")) mwexec("killall sasyncd", true); /* launch sasyncd, oh wise one */ mwexec_bg("/usr/local/sbin/sasyncd -d -v -v -v"); } } function vpn_ipsec_configure($ipchg = false) { global $config, $g, $sa, $sn, $p1_ealgos, $p2_ealgos; /* get the automatic ping_hosts.sh ready */ unlink_if_exists("{$g['vardb_path']}/ipsecpinghosts"); touch("{$g['vardb_path']}/ipsecpinghosts"); vpn_ipsec_configure_preferoldsa(); $syscfg = $config['system']; $ipseccfg = $config['ipsec']; $a_phase1 = $config['ipsec']['phase1']; $a_phase2 = $config['ipsec']['phase2']; $a_client = $config['ipsec']['client']; if (!isset($ipseccfg['enable'])) { mwexec("/sbin/ifconfig enc0 down"); /* send a SIGKILL to be sure */ sigkillbypid("{$g['varrun_path']}/racoon.pid", "KILL"); /* kill racoon */ if(is_process_running("racoon")) mwexec("/usr/bin/killall racoon", true); killbypid("{$g['varrun_path']}/filterdns-ipsec.pid"); /* wait for racoon process to die */ sleep(2); /* flush SPD and SAD */ mwexec("/usr/local/sbin/setkey -F"); mwexec("/usr/local/sbin/setkey -FP"); /* disallow IPSEC, it is off */ exec("/sbin/sysctl net.inet.ip.ipsec_in_use=0"); return true; } else { mwexec("/sbin/ifconfig enc0 up"); mwexec("/sbin/sysctl net.inet.ip.ipsec_in_use=1"); if ($g['booting']) echo "Configuring IPsec VPN... "; /* fastforwarding is not compatible with ipsec tunnels */ mwexec("/sbin/sysctl net.inet.ip.fastforwarding=0"); /* resolve all local, peer addresses and setup pings */ $ipmap = array(); $rgmap = array(); $filterdns_list = array(); if (is_array($a_phase1) && count($a_phase1)) { $ipsecpinghosts = ""; /* step through each phase1 entry */ foreach ($a_phase1 as $ph1ent) { if (isset($ph1ent['disabled'])) continue; $ep = ipsec_get_phase1_src($ph1ent); if (!$ep) continue; if(!in_array($ep,$ipmap)) $ipmap[] = $ep; /* see if this tunnel has a hostname for the remote-gateway. If so, try to resolve it now and add it to the list for filterdns */ if (isset ($ph1ent['mobile'])) continue; $rg = $ph1ent['remote-gateway']; if (!is_ipaddr($rg)) { $filterdns_list[] = "{$rg}"; add_hostname_to_watch($rg); if(! $g['booting']) $rg = resolve_retry($rg); if (!is_ipaddr($rg)) continue; } if(array_search($rg, $rgmap)) { log_error("The remote gateway {$rg} already exists on another phase 1 entry"); continue; } $rgmap[$ph1ent['remote-gateway']] = $rg; /* step through each phase2 entry */ if (is_array($a_phase2)) { foreach ($a_phase2 as $ph2ent) { $ikeid = $ph2ent['ikeid']; if (isset($ph2ent['disabled'])) continue; if ($ikeid != $ph1ent['ikeid']) continue; /* add an ipsec pinghosts entry */ if ($ph2ent['pinghost']) { $iflist = get_configured_interface_list(); foreach ($iflist as $ifent => $ifname) { $interface_ip = get_interface_ip($ifent); $local_subnet = ipsec_idinfo_to_cidr($ph2ent['localid'], true); if (ip_in_subnet($interface_ip, $local_subnet)) { $srcip = $interface_ip; break; } } $dstip = $ph2ent['pinghost']; if (is_ipaddr($srcip)) $ipsecpinghosts .= "{$srcip}|{$dstip}|3\n"; } } $pfd = fopen("{$g['vardb_path']}/ipsecpinghosts", "w"); if ($pfd) { fwrite($pfd, $ipsecpinghosts); fclose($pfd); } } } } /* generate CA certificates files */ if (is_array($config['ca']) && count($config['ca'])) { foreach ($config['ca'] as $ca) { if (!isset($ca['crt'])) { log_error("Error: Invalid certificate info for {$ca['descr']}"); continue; } $cert = base64_decode($ca['crt']); $x509cert = openssl_x509_parse(openssl_x509_read($cert)); if (!is_array($x509cert) || !isset($x509cert['hash'])) { log_error("Error: Invalid certificate hash info for {$ca['descr']}"); continue; } $fname = $g['varetc_path']."/".$x509cert['hash'].".0"; if (!file_put_contents($fname, $cert)) { log_error("Error: Cannot write IPsec CA file for {$ca['descr']}"); continue; } } } /* generate psk.txt */ $fd = fopen("{$g['varetc_path']}/psk.txt", "w"); if (!$fd) { printf("Error: cannot open psk.txt in vpn_ipsec_configure().\n"); return 1; } $pskconf = ""; if (is_array($a_phase1) && count($a_phase1)) { foreach ($a_phase1 as $ph1ent) { if (isset($ph1ent['disabled'])) continue; if (strstr($ph1ent['authentication_method'],'rsa')) continue; $peerid_type = $ph1ent['peerid_type']; switch ($peerid_type) { case "peeraddress": $peerid_type = "address"; $peerid_data = $rgmap[$ph1ent['remote-gateway']]; break; case "address"; $peerid_data = $ph1ent['peerid_data']; break; case "fqdn"; case "keyid tag"; case "user_fqdn"; $peerid_data = $ph1ent['peerid_data']; break; } if (!empty($peerid_data) && !empty($ph1ent['pre-shared-key'])) $pskconf .= trim($peerid_data) . "\t" . trim($ph1ent['pre-shared-key']) . "\n"; } } /* Add user PSKs */ foreach ($config['system']['user'] as $user) { if (!empty($user['ipsecpsk'])) { $pskconf .= "{$user['name']}\t{$user['ipsecpsk']}\n"; } } /* add PSKs for mobile clients */ if (is_array($ipseccfg['mobilekey'])) { foreach ($ipseccfg['mobilekey'] as $key) { $pskconf .= "{$key['ident']}\t{$key['pre-shared-key']}\n"; } } fwrite($fd, $pskconf); fclose($fd); chmod("{$g['varetc_path']}/psk.txt", 0600); /* begin racoon.conf */ if ((is_array($a_phase1) && count($a_phase1)) || (is_array($a_phase2) && count($a_phase2))) { $fd = fopen("{$g['varetc_path']}/racoon.conf", "w"); if (!$fd) { printf("Error: cannot open racoon.conf in vpn_ipsec_configure().\n"); return 1; } $racoonconf = "# This file is automatically generated. Do not edit\n"; $racoonconf .= "path pre_shared_key \"{$g['varetc_path']}/psk.txt\";\n\n"; $racoonconf .= "path certificate \"{$g['varetc_path']}\";\n\n"; /* begin listen section */ if (count($ipmap)) { $racoonconf .= "\nlisten\n"; $racoonconf .= "{\n"; $racoonconf .= " adminsock \"/var/db/racoon/racoon.sock\" \"root\" \"wheel\" 0660;\n"; foreach ($ipmap as $addr) { $racoonconf .= "\tisakmp {$addr} [500];\n"; $racoonconf .= "\tisakmp_natt {$addr} [4500];\n"; } $racoonconf .= "}\n\n"; } /* begin mode_cfg section */ if (is_array($a_client) && isset($a_client['enable'])) { $racoonconf .= "\nmode_cfg\n"; $racoonconf .= "{\n"; if ($a_client['user_source']) $racoonconf .= "\tauth_source {$a_client['user_source']};\n"; if ($a_client['group_source']) $racoonconf .= "\tgroup_source {$a_client['group_source']};\n"; if ($a_client['pool_address'] && $a_client['pool_netbits']) { $pool_address = $a_client['pool_address']; $pool_netmask = gen_subnet_mask($a_client['pool_netbits']); $pool_address = long2ip32(ip2long($pool_address)+1); $pool_size = (~ip2long($pool_netmask) & 0xFFFFFFFF) - 2; $racoonconf .= "\tpool_size {$pool_size};\n"; $racoonconf .= "\tnetwork4 {$pool_address};\n"; $racoonconf .= "\tnetmask4 {$pool_netmask};\n"; } if (isset($a_client['net_list'])) { $net_list = ''; foreach ($a_phase2 as $ph2ent) { if (isset($ph2ent['disabled'])) continue; if (!isset($ph2ent['mobile'])) continue; $localid = ipsec_idinfo_to_cidr($ph2ent['localid'],true); if ($net_list) $net_list .= ", "; $net_list .= $localid; } if ($net_list) $racoonconf .= "\tsplit_network include {$net_list};\n"; } if ($a_client['dns_server1']) $racoonconf .= "\tdns4 {$a_client['dns_server1']};\n"; if ($a_client['dns_server2']) $racoonconf .= "\tdns4 {$a_client['dns_server2']};\n"; if ($a_client['dns_server3']) $racoonconf .= "\tdns4 {$a_client['dns_server3']};\n"; if ($a_client['dns_server4']) $racoonconf .= "\tdns4 {$a_client['dns_server4']};\n"; if ($a_client['wins_server1']) $racoonconf .= "\twins4 {$a_client['wins_server1']};\n"; if ($a_client['wins_server2']) $racoonconf .= "\twins4 {$a_client['wins_server2']};\n"; if ($a_client['dns_domain']) { $racoonconf .= "\tdefault_domain \"{$a_client['dns_domain']}\";\n"; $racoonconf .= "\tsplit_dns \"{$a_client['dns_domain']}\";\n"; } if ($a_client['pfs_group']) $racoonconf .= "\tpfs_group {$a_client['pfs_group']};\n"; if ($a_client['login_banner']) { $fn = "{$g['varetc_path']}/racoon.motd"; $fd1 = fopen($fn, "w"); if (!$fd1) { printf("Error: cannot open server{$fn} in vpn.\n"); return 1; } fwrite($fd1, $a_client['login_banner']); fclose($fd1); $racoonconf .= "\tbanner \"{$fn}\";\n"; } if (isset($a_client['save_passwd'])) $racoonconf .= "\tsave_passwd on;\n"; $racoonconf .= "}\n\n"; } /* end mode_cfg section */ /* begin remote sections */ if (is_array($a_phase1) && count($a_phase1)) { /* begin remote */ foreach ($a_phase1 as $ph1ent) { if (isset($ph1ent['disabled'])) continue; if (isset($ph1ent['mobile']) && !isset($a_client['enable'])) continue; $ikeid = $ph1ent['ikeid']; $ep = ipsec_get_phase1_src($ph1ent); if (!$ep) continue; if (!isset($ph1ent['mobile'])) { $rgip = $rgmap[$ph1ent['remote-gateway']]; if (!$rgip) continue; } $myid_type = $ph1ent['myid_type']; switch ($myid_type) { case "myaddress": $myid_type = "address"; $myid_data = $ep; break; case "dyn_dns": $myid_type = "address"; $myid_data = gethostbyname($ph1ent['myid_data']); break; case "address"; $myid_data = $ph1ent['myid_data']; break; case "fqdn"; case "keyid tag"; case "user_fqdn"; case "asn1dn"; $myid_data = $ph1ent['myid_data']; if( $myid_data ) $myid_data = "\"".$myid_data."\""; break; } $peerid_type = $ph1ent['peerid_type']; switch ($peerid_type) { case "peeraddress": $peerid_type = "address"; $peerid_data = $rgip; break; case "address"; $peerid_data = $ph1ent['peerid_data']; break; case "fqdn"; case "keyid tag"; case "user_fqdn"; case "asn1dn"; $peerid_data = $ph1ent['peerid_data']; if( $peerid_data ) $peerid_data = "\"".$peerid_data."\""; break; } $natt = "off"; if (isset($ph1ent['nat_traversal'])) $natt = $ph1ent['nat_traversal']; $init = "on"; $genp = !empty($ph1ent['generate_policy']) ? $ph1ent['generate_policy'] : "off"; $pcheck = !empty($ph1ent['proposal_check']) ? $ph1ent['proposal_check'] : $pcheck = "claim"; $passive = ""; if (isset($ph1ent['mobile'])) { $rgip = "anonymous"; $passive = "passive on;"; /* Mimic 1.2.3's behavior for pure-psk mobile tunnels */ if ($ph1ent['authentication_method'] == "pre_shared_key") { $pcheck = !empty($ph1ent['proposal_check']) ? $ph1ent['proposal_check'] : $pcheck = "obey"; $genp = !empty($ph1ent['generate_policy']) ? $ph1ent['generate_policy'] : "on"; } else { $init = "off"; $genp = !empty($ph1ent['generate_policy']) ? $ph1ent['generate_policy'] : "unique"; } } $dpdline1 = ''; $dpdline2 = ''; if ($ph1ent['dpd_delay'] && $ph1ent['dpd_maxfail']) { $dpdline1 = "dpd_delay = {$ph1ent['dpd_delay']};"; $dpdline2 = "dpd_maxfail = {$ph1ent['dpd_maxfail']};"; } if (isset ($ph1ent['authentication_method'])) $authmethod = $ph1ent['authentication_method']; else $authmethod = 'pre_shared_key'; $certline = ''; if (strstr($authmethod,'rsa')) { $cert = lookup_cert($ph1ent['certref']); if (!$cert) { log_error("Error: Invalid phase1 certificate reference for {$ph1ent['name']}"); continue; } $certfile = "cert-".$ikeid.".crt"; $certpath = $g['varetc_path']."/".$certfile; if (!file_put_contents($certpath, base64_decode($cert['crt']))) { log_error("Error: Cannot write phase1 certificate file for {$ph1ent['name']}"); continue; } chmod($certpath, 0600); $keyfile = "cert-".$ikeid.".key"; $keypath = $g['varetc_path']."/".$keyfile; if (!file_put_contents($keypath, base64_decode($cert['prv']))) { log_error("Error: Cannot write phase1 key file for {$ph1ent['name']}"); continue; } chmod($keypath, 0600); $ca = lookup_ca($ph1ent['caref']); if ($ca) { $cafile = "ca-".$ikeid.".crt"; $capath = $g['varetc_path']."/".$cafile; if (!file_put_contents($capath, base64_decode($ca['crt']))) { log_error("Error: Cannot write phase1 CA certificate file for {$ph1ent['name']}"); continue; } chmod($capath, 0600); $caline = "ca_type x509 \"".basename($capath)."\";"; } $certline = "certificate_type x509 \"".basename($certpath)."\" \"".basename($keypath)."\";"; } $ealgos = ''; $ealg_id = $ph1ent['encryption-algorithm']['name']; $ealg_kl = $ph1ent['encryption-algorithm']['keylen']; if ($ealg_kl) $ealgos = $ealgos.$ealg_id." ".$ealg_kl; else $ealgos = $ealgos.$ealg_id; $lifeline = ''; if ($ph1ent['lifetime']) $lifeline = "lifetime time {$ph1ent['lifetime']} secs;"; /* Only specify peer ID if we are not dealing with a mobile PSK-only tunnel */ if (!(($ph1ent['authentication_method'] == "pre_shared_key") && isset($ph1ent['mobile']))) { $peerid_spec = "peers_identifier {$peerid_type} {$peerid_data};"; } /* add remote section to configuration */ $racoonconf .=<<= $key_lo; $keylen -= $key_step) { // Uncomment the next line if you want to test the comment 5 lines up. // echo "$keylen = $key_hi; $keylen >= $key_lo; $keylen -= $key_step \n"; if ($ealgos) $ealgos = $ealgos.", "; $ealgos = $ealgos.$ealg_id." ".$keylen; } } } else { if ($ealgos) $ealgos = $ealgos.", "; $ealgos = $ealgos.$ealg_id." ".$ealg_kl; } } else { if ($ealgos) $ealgos = $ealgos.", "; $ealgos = $ealgos.$ealg_id; } } $ealgosline = "encryption_algorithm {$ealgos};"; } else { $ealgosline = "encryption_algorithm null_enc;"; } $halgos = join(",", $ph2ent['hash-algorithm-option']); $halgosline = "authentication_algorithm {$halgos};"; $pfsline = ''; if ($ph2ent['pfsgroup']) $pfsline = "pfs_group {$ph2ent['pfsgroup']};"; if (isset($a_client['pfs_group'])) { $pfsline = ''; if ($a_client['pfs_group']) $pfsline = "pfs_group {$a_client['pfs_group']};"; } $lifeline = ''; if ($ph2ent['lifetime']) $lifeline = "lifetime time {$ph2ent['lifetime']} secs;"; /* add sainfo section to configuration */ $racoonconf .=<< 0) { $interval = 60; if (!empty($ipseccfg['dns-interval']) && is_numeric($ipseccfg['dns-interval'])) $interval = $ipseccfg['dns-interval']; $hostnames = ""; array_unique($filterdns_list); foreach ($filterdns_list as $hostname) $hostnames .= "cmd {$hostname} '/usr/local/sbin/pfSctl -c \"service reload ipsecdns\"'\n"; file_put_contents("{$g['varetc_path']}/filterdns-ipsec.hosts", $hostnames); killbypid("{$g['varrun_path']}/filterdns-ipsec.pid"); sleep(1); mwexec("/usr/local/sbin/filterdns -p {$g['varrun_path']}/filterdns-ipsec.pid -i {$interval} -c {$g['varetc_path']}/filterdns-ipsec.hosts -d 1"); } vpn_ipsec_failover_configure(); if ($g['booting']) echo "done\n"; } return 0; } /* Forcefully restart IPsec * This is required for when dynamic interfaces reload * For all other occasions the normal vpn_ipsec_configure() * will gracefully reload the settings without restarting */ function vpn_ipsec_force_reload() { global $config; global $g; $ipseccfg = $config['ipsec']; /* kill racoon */ if(is_process_running("racoon")) mwexec("/usr/bin/killall racoon", true); /* wait for process to die */ sleep(4); /* send a SIGKILL to be sure */ sigkillbypid("{$g['varrun_path']}/racoon.pid", "KILL"); /* wait for flushing to finish */ sleep(1); /* if ipsec is enabled, start up again */ if (isset($ipseccfg['enable'])) { log_error("Forcefully reloading IPsec racoon daemon"); vpn_ipsec_configure(); } } /* master setup for vpn (mpd) */ function vpn_setup() { /* start pptpd */ vpn_pptpd_configure(); /* start pppoe server */ vpn_pppoes_configure(); /* setup l2tp */ vpn_l2tp_configure(); } function vpn_netgraph_support() { $iflist = get_configured_interface_list(); foreach ($iflist as $iface) { $realif = get_real_interface($iface); /* Get support for netgraph(4) from the nic */ $ifinfo = pfSense_get_interface_addresses($realif); if (!empty($ifinfo) && in_array($ifinfo['iftype'], array("ether", "vlan", "bridge"))) pfSense_ngctl_attach(".", $realif); } } function vpn_pptpd_configure() { global $config, $g; $syscfg = $config['system']; $pptpdcfg = $config['pptpd']; if ($g['booting']) { if (!$pptpdcfg['mode'] || ($pptpdcfg['mode'] == "off")) return 0; echo "Configuring PPTP VPN service... "; } else { /* kill mpd */ killbypid("{$g['varrun_path']}/pptp-vpn.pid"); /* wait for process to die */ sleep(3); if (is_process_running("mpd -b")) { killbypid("{$g['varrun_path']}/pptp-vpn.pid"); log_error("Could not kill mpd within 3 seconds. Trying again."); } /* remove mpd.conf, if it exists */ unlink_if_exists("{$g['varetc_path']}/pptp-vpn/mpd.conf"); unlink_if_exists("{$g['varetc_path']}/pptp-vpn/mpd.links"); unlink_if_exists("{$g['varetc_path']}/pptp-vpn/mpd.secret"); } if (empty($pptpdcfg['n_pptp_units'])) { log_error("Something wrong in the PPTPd configuration. Preventing starting the daemon because issues would arise."); return; } /* make sure pptp-vpn directory exists */ if (!file_exists("{$g['varetc_path']}/pptp-vpn")) mkdir("{$g['varetc_path']}/pptp-vpn"); switch ($pptpdcfg['mode']) { case 'server' : /* write mpd.conf */ $fd = fopen("{$g['varetc_path']}/pptp-vpn/mpd.conf", "w"); if (!$fd) { printf("Error: cannot open mpd.conf in vpn_pptpd_configure().\n"); return 1; } $mpdconf = << 1) ? $pptpdcfg['radius']['server']['port'] : 1812; $acctport = $authport + 1; $mpdconf .=<< 1) ? $pptpdcfg['radius']['server2']['port'] : 1812; $acctport = $authport + 1; $mpdconf .=<< "") { $oldphase1 = $phase1; $oldphase1['remote-gateway'] = trim($dnscache); /* now we need to find all tunnels for this host */ if (!is_array($a_phase2) || (!count($a_phase2))) { continue; } foreach ($a_phase2 as $phase2) { if($phase2['ikeid'] == $phase1['ikeid']) { reload_tunnel_spd_policy ($phase1, $phase2, $oldphase1, $oldphase2); } } } } } /* process all generated spd.conf files from tmp which are left behind * behind by either changes of dynamic tunnels or manual edits * scandir() is only available in PHP5 */ $tmpfiles = array(); $dh = opendir($g['tmp_path']); while (false !== ($filename = readdir($dh))) { if(preg_match("/^spd.conf.reload./", $filename)) { $tmpfiles[] = $filename; } } sort($tmpfiles); foreach($tmpfiles as $tmpfile) { $ret = mwexec("/usr/local/sbin/setkey -f {$g['tmp_path']}/{$tmpfile} 2>&1", false); if($ret == 0) { unlink_if_exists("{$g['tmp_path']}/{$tmpfile}"); } else { rename("{$g['tmp_path']}/{$tmpfile}", ("{$g['tmp_path']}/failed.{$tmpfile}")); } } } /* reloads the tunnel configuration for a tunnel item * Will remove and add SPD polices */ function reload_tunnel_spd_policy($phase1, $phase2, $old_phase1, $old_phase2) { global $config; global $g; /* if we are not passed a old tunnel array we create one */ if(empty($old_phase1)) { $old_phase1 = $phase1; } if(empty($old_phase2)) { $old_phase2 = $phase2; } $sad_arr = ipsec_dump_sad(); $ep = ipsec_get_phase1_src($phase1); $local_subnet = ipsec_idinfo_to_cidr($phase2['localid']); $remote_subnet = ipsec_idinfo_to_cidr($phase2['remoteid']); /* make sure we pass the oldtunnel array with a IP for the remote gw */ $old_gw = trim($old_phase1['remote-gateway']); $old_ep = ipsec_get_phase1_src($old_phase1); $old_local_subnet = ipsec_idinfo_to_cidr($old_phase2['localid']); $old_remote_subnet = ipsec_idinfo_to_cidr($old_phase2['remoteid']); /* see if this tunnel has a hostname for the remote-gateway, and if so, * try to resolve it now and add it to the list for filterdns */ $rgip = ""; if (!is_ipaddr($phase1['remote-gateway'])) { if(! $g['booting']) { $rgip = resolve_retry($phase1['remote-gateway']); add_hostname_to_watch($phase1['remote-gateway']); } else { add_hostname_to_watch($phase1['remote-gateway']); } if (!is_ipaddr($rgip)) { log_error("Could not determine VPN endpoint for '{$phase1['descr']}'"); return false; } } else { $rgip = $phase1['remote-gateway']; } if (!$ep) { log_error("Could not determine VPN endpoint for '{$phase1['descr']}'"); return false; } if((!is_ipaddr($old_ep)) || (! is_ipaddr($ep))) { log_error("IPSEC: ERROR: One of the endpoints is not a IP address. Old EP '{$old_ep}' new EP '{$ep}'"); } if((! is_ipaddr($rgip)) || (! is_ipaddr($old_gw))) { log_error("IPSEC: ERROR: One of the remote endpoints is not a IP address. Old RG '{$old_gw}' new RG '{$rgip}'"); } $spdconf = ""; /* Delete old SPD policies if there are changes between the old and new */ if(($phase1 != $old_phase1) || ($phase2 != $old_phase2)) { $spdconf .= "spddelete {$old_local_subnet} " . "{$old_remote_subnet} any -P out ipsec " . "{$old_phase2['protocol']}/tunnel/{$old_ep}-" . "{$old_gw}/unique;\n"; $spdconf .= "spddelete {$old_remote_subnet} " . "{$old_local_subnet} any -P in ipsec " . "{$old_phase2['protocol']}/tunnel/{$old_gw}-" . "{$old_ep}/unique;\n"; /* zap any existing SA entries */ foreach($sad_arr as $sad) { if(($sad['dst'] == $old_ep) && ($sad['src'] == $old_gw)) { $spdconf .= "delete {$old_ep} {$old_gw} {$old_phase2['protocol']} 0x{$sad['spi']};\n"; } if(($sad['src'] == $oldep) && ($sad['dst'] == $old_gw)) { $spdconf .= "delete {$old_gw} {$old_ep} {$old_phase2['protocol']} 0x{$sad['spi']};\n"; } } } /* Create new SPD entries for the new configuration */ /* zap any existing SA entries beforehand */ foreach($sad_arr as $sad) { if(($sad['dst'] == $ep) && ($sad['src'] == $rgip)) { $spdconf .= "delete {$rgip} {$ep} {$phase2['protocol']} 0x{$sad['spi']};\n"; } if(($sad['src'] == $ep) && ($sad['dst'] == $rgip)) { $spdconf .= "delete {$ep} {$rgip} {$phase2['protocol']} 0x{$sad['spi']};\n"; } } /* add new SPD policies to replace them */ $spdconf .= "spdadd {$local_subnet} " . "{$remote_subnet} any -P out ipsec " . "{$phase2['protocol']}/tunnel/{$ep}-" . "{$rgip}/unique;\n"; $spdconf .= "spdadd {$remote_subnet} " . "{$local_subnet} any -P in ipsec " . "{$phase2['protocol']}/tunnel/{$rgip}-" . "{$ep}/unique;\n"; log_error("Reloading IPsec tunnel '{$phase1['descr']}'. Previous IP '{$old_gw}', current IP '{$rgip}'. Reloading policy"); $now = time(); $spdfile = tempnam("{$g['tmp_path']}", "spd.conf.reload.{$now}."); /* generate temporary spd.conf */ file_put_contents($spdfile, $spdconf); return true; } function vpn_ipsec_configure_preferoldsa() { global $config; if(isset($config['ipsec']['preferoldsa'])) mwexec("/sbin/sysctl -w net.key.preferred_oldsa=-30"); else mwexec("/sbin/sysctl net.key.preferred_oldsa=0"); } ?>