vpn_ipsec_keys.php 6.58 KB
Newer Older
Ad Schellevis's avatar
Ad Schellevis committed
1 2
<?php
/*
3
	Copyright (C) 2014-2015 Deciso B.V.
Ad Schellevis's avatar
Ad Schellevis committed
4 5
	Copyright (C) 2003-2005 Manuel Kasper <mk@neon1.net>.
	All rights reserved.
6

Ad Schellevis's avatar
Ad Schellevis committed
7 8
	Redistribution and use in source and binary forms, with or without
	modification, are permitted provided that the following conditions are met:
9

Ad Schellevis's avatar
Ad Schellevis committed
10 11
	1. Redistributions of source code must retain the above copyright notice,
	   this list of conditions and the following disclaimer.
12

Ad Schellevis's avatar
Ad Schellevis committed
13 14 15
	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.
16

Ad Schellevis's avatar
Ad Schellevis committed
17 18 19 20 21 22 23 24 25 26 27 28
	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.
*/

29 30
require_once("functions.inc");
require_once("guiconfig.inc");
Ad Schellevis's avatar
Ad Schellevis committed
31 32 33 34
require_once("ipsec.inc");
require_once("vpn.inc");
require_once("filter.inc");

35 36 37
if (!is_array($config['ipsec'])) {
        $config['ipsec'] = array();
}
38

Ad Schellevis's avatar
Ad Schellevis committed
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
if (!is_array($config['ipsec']['mobilekey'])) {
	$config['ipsec']['mobilekey'] = array();
}
ipsec_mobilekey_sort();
$a_secret = &$config['ipsec']['mobilekey'];

$userkeys = array();
foreach ($config['system']['user'] as $id => $user) {
	if (!empty($user['ipsecpsk'])) {
		$userkeys[] = array('ident' => $user['name'], 'pre-shared-key' => $user['ipsecpsk'], 'id' => $id);;
	}
}

if (isset($_POST['apply'])) {
	$retval = vpn_ipsec_configure();
	/* reload the filter in the background */
	filter_configure();
	$savemsg = get_std_save_message($retval);
	if (is_subsystem_dirty('ipsec'))
		clear_subsystem_dirty('ipsec');
}

if ($_GET['act'] == "del") {
	if ($a_secret[$_GET['id']]) {
		unset($a_secret[$_GET['id']]);
		write_config(gettext("Deleted IPsec Pre-Shared Key"));
		mark_subsystem_dirty('ipsec');
		header("Location: vpn_ipsec_keys.php");
		exit;
	}
}

$pgtitle = gettext("VPN: IPsec: Keys");
$shortcut_section = "ipsec";

include("head.inc");

?>

78
<body>
Ad Schellevis's avatar
Ad Schellevis committed
79 80
<?php include("fbegin.inc"); ?>

81
<section class="page-content-main">
82
		<div class="container-fluid">
83
			<div class="row">
84 85 86


				<?php
87 88 89 90
					if ($savemsg)
						print_info_box($savemsg);
					if (is_subsystem_dirty('ipsec'))
						print_info_box_np(gettext("The IPsec tunnel configuration has been changed") . ".<br />" . gettext("You must apply the changes in order for them to take effect."));
91

92
				?>
93

94
			    <section class="col-xs-12">
95 96 97 98 99

				<? $active_tab = "/vpn_ipsec_settings.php"; include('vpn_ipsec_tabs.php'); ?>

					<div class="tab-content content-box col-xs-12">

100 101 102
							<form action="vpn_ipsec_keys.php" method="post">

								<div class="table-responsive">
103
									<table class="table table-striped table-sort">
104 105


106
						                <tr>
107 108 109 110 111 112
						                  <td class="listhdrr"><?=gettext("Identifier"); ?></td>
						                  <td class="listhdr"><?=gettext("Pre-Shared Key"); ?></td>
						                  <td class="list">
											<table border="0" cellspacing="0" cellpadding="1" summary="add key">
											    <tr>
											        <td width="20" height="17"></td>
Ad Schellevis's avatar
Ad Schellevis committed
113
												<td><a href="vpn_ipsec_keys_edit.php" class="btn btn-default btn-xs"><span class="glyphicon glyphicon-plus"></span></a></td>
114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
											    </tr>
											</table>
								  </td>
								</tr>
									  <?php $i = 0; foreach ($userkeys as $secretent): ?>
								<tr>
								<td class="listlr gray">
									<?php
										if ($secretent['ident'] == 'allusers')
											echo gettext("ANY USER");
										else
											echo htmlspecialchars($secretent['ident']);
									?>
								</td>
								<td class="listr gray">
									<?=htmlspecialchars($secretent['pre-shared-key']);?>
								</td>
								<td class="list nowrap">
									<form action="system_usermanager.php" method="post" name="form_edit_key">
										<input type="hidden" name="act" value="edit" />
										<input type="hidden" name="userid" value="<?=$secretent['id'];?>" />
										<input type="image" name="edituser[]" width="17" height="17" border="0"
											src="/themes/<?=$g['theme'];?>/images/icons/icon_e.gif"
											title="<?=gettext("edit");?>" />
									</form>
								&nbsp;</td>
										</tr>
									  <?php $i++; endforeach; ?>
142

143
									  <?php $i = 0; foreach ($a_secret as $secretent): ?>
144
						                <tr>
145 146 147 148 149 150 151 152 153 154
						                  <td class="listlr">
						                    <?=htmlspecialchars($secretent['ident']);?>
						                  </td>
						                  <td class="listr">
						                    <?=htmlspecialchars($secretent['pre-shared-key']);?>
						                  </td>
						                  <td class="list nowrap"><a href="vpn_ipsec_keys_edit.php?id=<?=$i;?>"><img src="./themes/<?= $g['theme']; ?>/images/icons/icon_e.gif" title="<?=gettext("edit key"); ?>" width="17" height="17" border="0" alt="edit" /></a>
						                     &nbsp;<a href="vpn_ipsec_keys.php?act=del&amp;id=<?=$i;?>" onclick="return confirm('<?=gettext("Do you really want to delete this Pre-Shared Key?"); ?>')"><img src="./themes/<?= $g['theme']; ?>/images/icons/icon_x.gif" title="<?=gettext("delete key"); ?>" width="17" height="17" border="0" alt="delete" /></a></td>
										</tr>
									  <?php $i++; endforeach; ?>
155
						                <tr>
156 157 158 159 160
						                  <td class="list" colspan="2"></td>
						                  <td class="list">
									<table border="0" cellspacing="0" cellpadding="1" summary="add key">
									    <tr>
									        <td width="20" height="17"></td>
Ad Schellevis's avatar
Ad Schellevis committed
161
										<td><a href="vpn_ipsec_keys_edit.php" class="btn btn-default btn-xs"><span class="glyphicon glyphicon-plus"></span></a></td>
162 163 164 165 166 167 168
									    </tr>
									</table>
								  </td>
								</tr>
						              </table>
							</div>
							</form>
169

Ad Schellevis's avatar
Ad Schellevis committed
170
							<div class="container-fluid">
171 172 173 174 175 176 177 178
							<p>
							<span class="vexpl">
							<span class="text-danger">
								<strong><?=gettext("Note"); ?>:<br /></strong>
							</span>
							<?=gettext("PSK for any user can be set by using an identifier of any/ANY");?>
							</span>
							</p>
179
				        </div>
180 181 182 183 184
					</div>
			    </section>
			</div>
		</div>
</section>
Ad Schellevis's avatar
Ad Schellevis committed
185

186
<?php include("foot.inc"); ?>