summaryrefslogtreecommitdiffstats
path: root/etc/inc/ipsec.inc
diff options
context:
space:
mode:
authorMatthew Grooms <mgrooms@pfsense.org>2008-07-11 01:55:30 +0000
committerMatthew Grooms <mgrooms@pfsense.org>2008-07-11 01:55:30 +0000
commita93e56c58af2611650d1f97190ffe54782479423 (patch)
tree4748e51726a04966508a45bd275cf8e0589df7be /etc/inc/ipsec.inc
parent2a66b533249a31c4b9ea6f90c696998b2ba8ba49 (diff)
downloadpfsense-a93e56c58af2611650d1f97190ffe54782479423.zip
pfsense-a93e56c58af2611650d1f97190ffe54782479423.tar.gz
Overhaul IPsec related code. Shared functions have been consolidated into
a new file named /etc/ipsec.inc. Tunnel definitions have been split into phase1 and phase2. This allows any number of phase2 definitions to be created for a single phase1 definition. Several facets of configuration have also been improved. The key size for variable length algorithms can now be selected and the phase1 ID options have been extended to allow for more flexible configuration. Several NAT-T related issues have also been resolved. Please note, IPsec remote access functionality has been temporarily disabled. An improved implementation will be included in a follow up commit.
Diffstat (limited to 'etc/inc/ipsec.inc')
-rw-r--r--etc/inc/ipsec.inc344
1 files changed, 344 insertions, 0 deletions
diff --git a/etc/inc/ipsec.inc b/etc/inc/ipsec.inc
new file mode 100644
index 0000000..23cd4ba
--- /dev/null
+++ b/etc/inc/ipsec.inc
@@ -0,0 +1,344 @@
+<?php
+/*
+ ipsec.inc
+ Copyright (C) 2007 Scott Ullrich
+ Copyright (C) 2008 Shrew Soft Inc
+ All rights reserved.
+
+ Parts of this code was originally based on vpn_ipsec_sad.php
+ Copyright (C) 2003-2004 Manuel Kasper
+
+ 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.
+*/
+
+/*
+ * Return phase1 local address
+ */
+function ipsec_get_phase1_src(& $ph1ent) {
+
+ if ($ph1ent['interface'])
+ $if = $ph1ent['interface'];
+ else
+ $if = "WAN";
+
+ $realinterface = convert_friendly_interface_to_real_interface_name($if);
+ $interfaceip = find_interface_ip($realinterface);
+
+ return $interfaceip;
+}
+
+/*
+ * Return phase2 idinfo in cidr format
+ */
+function ipsec_idinfo_to_cidr(& $idinfo,$addrbits = false) {
+ global $config;
+
+ switch ($idinfo['type'])
+ {
+ case "address":
+ if ($addrbits)
+ return $idinfo['address']."/32";
+ else
+ return $idinfo['address'];
+ case "network":
+ return $idinfo['address']."/".$idinfo['netbits'];
+ default:
+ $address = $config['interfaces']['lan']['ipaddr'];
+ $netbits = $config['interfaces'][$idinfo['type']]['subnet'];
+ $address = gen_subnet($address,$netbits);
+ return $address."/".$netbits;
+ }
+}
+
+/*
+ * Return phase2 idinfo in address/netmask format
+ */
+function ipsec_idinfo_to_subnet(& $idinfo,$addrbits = false) {
+ global $config;
+
+ switch ($idinfo['type'])
+ {
+ case "address":
+ if ($addrbits)
+ return $idinfo['address']."/255.255.255.255";
+ else
+ return $idinfo['address'];
+ case "network":
+ return $idinfo['address']."/".gen_subnet_mask($idinfo['netbits']);
+ default:
+ $address = $config['interfaces']['lan']['ipaddr'];
+ $netbits = $config['interfaces'][$idinfo['type']]['subnet'];
+ $address = gen_subnet($address,$netbits);
+ $netbits = gen_subnet_mask($netbits);
+ return $address."/".netbits;
+ }
+}
+
+/*
+ * Return phase2 idinfo in text format
+ */
+function ipsec_idinfo_to_text(& $idinfo) {
+
+ switch ($idinfo['type'])
+ {
+ case "address":
+ return $idinfo['address'];
+ case "network":
+ return $idinfo['address']."/".$idinfo['netbits'];
+ default:
+ return strtoupper($idinfo['type']);
+ }
+}
+
+/*
+ * Return phase1 association for phase2
+ */
+function ipsec_lookup_phase1(& $ph2ent,& $ph1ent)
+{
+ global $config;
+ $a_phase1 = $config['ipsec']['phase1'];
+
+ if (is_array($a_phase1) && count($a_phase1)) {
+ foreach ($a_phase1 as $ph1tmp) {
+ if ($ph1tmp['ikeid'] == $ph2ent['ikeid']) {
+ $ph1ent = $ph1tmp;
+ return $ph1ent;
+ }
+ }
+ }
+
+ return false;
+}
+
+/*
+ * Check phase1 communications status
+ */
+function ipsec_phase1_status(& $ph1ent) {
+
+ $loc_ip = get_ipsec_tunnel_src($ph1ent);
+ $rmt_ip = $ph1ent['remote-gateway'];
+
+ if(ipsec_lookup_ipsakmp_sa($loc_ip,$rmt_ip))
+ return true;
+
+ return false;
+}
+
+/*
+ * Check phase2 communications status
+ */
+function ipsec_phase2_status(& $spd,& $sad,& $ph1ent,& $ph2ent) {
+
+ $loc_ip = ipsec_get_phase1_src($ph1ent);
+ $rmt_ip = $ph1ent['remote-gateway'];
+
+ $loc_id = ipsec_idinfo_to_cidr($ph2ent['localid'],true);
+ $rmt_id = ipsec_idinfo_to_cidr($ph2ent['remoteid'],true);
+
+ /* check for established SA in both directions */
+ if( ipsec_lookup_ipsec_sa($spd,$sad,"out",$loc_ip,$rmt_ip,$loc_id,$rmt_id) &&
+ ipsec_lookup_ipsec_sa($spd,$sad,"in",$rmt_ip,$loc_ip,$rmt_id,$loc_id))
+ return true;
+
+ return false;
+}
+
+/*
+ * Return ISAKMP SA details
+ */
+function ipsec_lookup_isakmp_sa($in_srcip,$in_dstip) {
+ /* TODO : use racconctl to lookup iskamp SA */
+ return NULL;
+}
+
+/*
+ * Return IPsec SA details
+ */
+function ipsec_lookup_ipsec_sa(& $spd,& $sad,$dir,$in_srcip,$in_dstip,$in_srcid,$in_dstid) {
+
+ /* match the phase1/2 to an SP */
+
+ foreach($spd as $sp) {
+
+ /* match direction */
+
+ if($dir != $sp['dir'])
+ continue;
+
+ /* match IPs */
+
+ if($in_srcip != $sp['src'])
+ continue;
+ if($in_dstip != $sp['dst'])
+ continue;
+
+ /* add netbits for address IDs */
+
+ $sp_srcid = $sp['srcid'];
+ $sp_dstid = $sp['dstid'];
+
+ if (!strstr($sp_srcid,"/"))
+ $sp_srcid .= '/32';
+ if (!strstr($sp_dstid,"/"))
+ $sp_dstid .= '/32';
+
+ /* match IDs */
+
+ if($in_srcid != $sp_srcid)
+ continue;
+ if($in_dstid != $sp_dstid)
+ continue;
+
+ /* match the SP to a unique SA by reqid */
+
+ foreach($sad as $sa) {
+
+ /* match REQIDs */
+
+ if($sa[reqid] != $sp[reqid])
+ continue;
+
+ /* sanitize for NAT-T ports */
+
+ $sa_srcip = $sa['src'];
+ $sa_dstip = $sa['dst'];
+
+ if (strstr($sa_srcip,"["))
+ $sa_srcip = substr($sa_srcip,0,strcspn($sa_srcip,"["));
+ if (strstr($sa_dstip,"["))
+ $sa_dstip = substr($sa_dstip,0,strcspn($sa_dstip,"["));
+
+ /* match IPs */
+
+ if($in_srcip != $sa_srcip)
+ continue;
+ if($in_dstip != $sa_dstip)
+ continue;
+
+ return $sa;
+ }
+ }
+
+ return NULL;
+}
+
+/*
+ * Return dump of SPD table
+ */
+function ipsec_dump_spd()
+{
+ $fd = @popen("/usr/local/sbin/setkey -DP", "r");
+ $spd = array();
+ if ($fd) {
+ while (!feof($fd)) {
+ $line = chop(fgets($fd));
+ if (!$line)
+ continue;
+ if ($line == "No SPD entries.")
+ break;
+ if ($line[0] != "\t") {
+ if (is_array($cursp))
+ $spd[] = $cursp;
+ $cursp = array();
+ $linea = explode(" ", $line);
+ $cursp['srcid'] = substr($linea[0], 0, strpos($linea[0], "["));
+ $cursp['dstid'] = substr($linea[1], 0, strpos($linea[1], "["));
+ $i = 0;
+ } else if (is_array($cursp)) {
+ $linea = explode(" ", trim($line));
+ switch($i)
+ {
+ case 1:
+ if ($linea[1] == "none") /* don't show default anti-lockout rule */
+ unset($cursp);
+ else
+ $cursp['dir'] = $linea[0];
+ break;
+ case 2:
+ $upperspec = explode("/", $linea[0]);
+ $cursp['proto'] = $upperspec[0];
+ list($cursp['src'], $cursp['dst']) = explode("-", $upperspec[2]);
+ $cursp['reqid'] = substr($upperspec[3], strpos($upperspec[3], "#")+1);
+ break;
+ }
+ }
+ $i++;
+ }
+ if (is_array($cursp) && count($cursp))
+ $spd[] = $cursp;
+ pclose($fd);
+ }
+
+ return $spd;
+}
+
+/*
+ * Return dump of SAD table
+ */
+function ipsec_dump_sad()
+{
+ $fd = @popen("/usr/local/sbin/setkey -D", "r");
+ $sad = array();
+ if ($fd) {
+ while (!feof($fd)) {
+ $line = chop(fgets($fd));
+ if (!$line)
+ continue;
+ if ($line == "No SAD entries.")
+ break;
+ if ($line[0] != "\t")
+ {
+ if (is_array($cursa))
+ $sad[] = $cursa;
+ $cursa = array();
+ list($cursa['src'],$cursa['dst']) = explode(" ", $line);
+ $i = 0;
+ }
+ else
+ {
+ $linea = explode(" ", trim($line));
+ switch ($i) {
+ case 1:
+ $cursa['proto'] = $linea[0];
+ $cursa['spi'] = substr($linea[2], strpos($linea[2], "x")+1, -1);
+ $reqid = substr($linea[3], strpos($linea[3], "=")+1);
+ $cursa['reqid'] = substr($reqid, 0, strcspn($reqid,"("));
+ break;
+ case 2:
+ $cursa['ealgo'] = $linea[1];
+ break;
+ case 3:
+ $cursa['aalgo'] = $linea[1];
+ break;
+ }
+ }
+ $i++;
+ }
+ if (is_array($cursa) && count($cursa))
+ $sad[] = $cursa;
+ pclose($fd);
+ }
+
+ return $sad;
+}
+
+?>
OpenPOWER on IntegriCloud