vpn_ipsec_keys_edit.php 5.67 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
require("functions.inc");
Ad Schellevis's avatar
Ad Schellevis committed
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
require("guiconfig.inc");
require_once("ipsec.inc");
require_once("vpn.inc");

if (!is_array($config['ipsec']['mobilekey'])) {
	$config['ipsec']['mobilekey'] = array();
}
ipsec_mobilekey_sort();
$a_secret = &$config['ipsec']['mobilekey'];

if (is_numericint($_GET['id']))
	$id = $_GET['id'];
if (isset($_POST['id']) && is_numericint($_POST['id']))
	$id = $_POST['id'];

if (isset($id) && $a_secret[$id]) {
	$pconfig['ident'] = $a_secret[$id]['ident'];
	$pconfig['psk'] = $a_secret[$id]['pre-shared-key'];
}

if ($_POST) {
	$userids = array();
	foreach ($config['system']['user'] as $uid => $user) {
		$userids[$user['name']] = $uid;
	}
55

Ad Schellevis's avatar
Ad Schellevis committed
56 57 58 59 60 61
	unset($input_errors);
	$pconfig = $_POST;

	/* input validation */
	$reqdfields = explode(" ", "ident psk");
	$reqdfieldsn = array(gettext("Identifier"),gettext("Pre-Shared Key"));
62

Ad Schellevis's avatar
Ad Schellevis committed
63
	do_input_validation($_POST, $reqdfields, $reqdfieldsn, $input_errors);
64

Ad Schellevis's avatar
Ad Schellevis committed
65 66 67 68 69 70
	if (preg_match("/[^a-zA-Z0-9@\.\-]/", $_POST['ident']))
		$input_errors[] = gettext("The identifier contains invalid characters.");

	if (array_key_exists($_POST['ident'], $userids))
		$input_errors[] = gettext("A user with this name already exists. Add the key to the user instead.");
	unset($userids);
71

Ad Schellevis's avatar
Ad Schellevis committed
72 73 74 75 76 77 78 79 80 81 82
	if (!$input_errors && !(isset($id) && $a_secret[$id])) {
		/* make sure there are no dupes */
		foreach ($a_secret as $secretent) {
			if ($secretent['ident'] == $_POST['ident']) {
				$input_errors[] = gettext("Another entry with the same identifier already exists.");
				break;
			}
		}
	}

	if (!$input_errors) {
83

Ad Schellevis's avatar
Ad Schellevis committed
84 85
		if (isset($id) && $a_secret[$id])
			$secretent = $a_secret[$id];
86

Ad Schellevis's avatar
Ad Schellevis committed
87 88 89
		$secretent['ident'] = $_POST['ident'];
		$secretent['pre-shared-key'] = $_POST['psk'];
		$text = "";
90

Ad Schellevis's avatar
Ad Schellevis committed
91 92 93 94 95 96 97
		if (isset($id) && $a_secret[$id]) {
			$a_secret[$id] = $secretent;
			$text = gettext("Edited");
		} else {
			$a_secret[] = $secretent;
			$text = gettext("Added");
		}
98

Ad Schellevis's avatar
Ad Schellevis committed
99 100
		write_config("{$text} IPsec Pre-Shared Keys");
		mark_subsystem_dirty('ipsec');
101

Ad Schellevis's avatar
Ad Schellevis committed
102 103 104 105 106 107 108 109 110 111 112 113
		header("Location: vpn_ipsec_keys.php");
		exit;
	}
}

$pgtitle = gettext("VPN: IPsec: Edit Pre-Shared Key");
$shortcut_section = "ipsec";

include("head.inc");

?>

Ad Schellevis's avatar
Ad Schellevis committed
114
<body>
Ad Schellevis's avatar
Ad Schellevis committed
115
<?php include("fbegin.inc"); ?>
Ad Schellevis's avatar
Ad Schellevis committed
116 117 118 119

	<section class="page-content-main">

		<div class="container-fluid">
120 121

			<div class="row">
Ad Schellevis's avatar
Ad Schellevis committed
122
				<?php if ($input_errors) print_input_errors($input_errors); ?>
123

Ad Schellevis's avatar
Ad Schellevis committed
124
			    <section class="col-xs-12">
125 126 127 128 129 130 131 132

				<div class="content-box">

                        <form action="vpn_ipsec_keys_edit.php" method="post" name="iform" id="iform">

				<div class="table-responsive">
					<table class="table table-striped table-sort">
					                <tr>
Ad Schellevis's avatar
Ad Schellevis committed
133 134 135 136
					                  <td valign="top" class="vncellreq"><?=gettext("Identifier"); ?></td>
					                  <td class="vtable">
										<?=$mandfldhtml;?><input name="ident" type="text" class="formfld unknown" id="ident" size="30" value="<?=htmlspecialchars($pconfig['ident']);?>" />
					                    <br />
137
					<?=gettext("This can be either an IP address, fully qualified domain name or an e-mail address"); ?>.
Ad Schellevis's avatar
Ad Schellevis committed
138 139
					                  </td>
					                </tr>
140
					                <tr>
Ad Schellevis's avatar
Ad Schellevis committed
141
					                  <td width="22%" valign="top" class="vncellreq"><?=gettext("Pre-Shared Key"); ?></td>
142
					                  <td width="78%" class="vtable">
Ad Schellevis's avatar
Ad Schellevis committed
143 144 145
					                    <?=$mandfldhtml;?><input name="psk" type="text" class="formfld unknown" id="psk" size="40" value="<?=htmlspecialchars($pconfig['psk']);?>" />
					                  </td>
					                </tr>
146
					                <tr>
Ad Schellevis's avatar
Ad Schellevis committed
147
					                  <td width="22%" valign="top">&nbsp;</td>
148 149
					                  <td width="78%">
					                    <input name="Submit" type="submit" class="btn btn-primary" value="<?=gettext("Save"); ?>" />
Ad Schellevis's avatar
Ad Schellevis committed
150 151 152 153 154 155
					                    <?php if (isset($id) && $a_secret[$id]): ?>
					                    <input name="id" type="hidden" value="<?=htmlspecialchars($id);?>" />
					                    <?php endif; ?>
					                  </td>
					                </tr>
					              </table>
156 157 158
				</div>

				<div class="col-xs-12">
Ad Schellevis's avatar
Ad Schellevis committed
159 160 161 162 163 164 165 166
								<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>
							</div>
                        </form>
167
				</div>
Ad Schellevis's avatar
Ad Schellevis committed
168 169 170 171 172
			    </section>
			</div>
		</div>
	</section>

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