vpn_ipsec_keys_edit.php 6.06 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_once("interfaces.inc");
30
require_once("guiconfig.inc");
Ad Schellevis's avatar
Ad Schellevis committed
31
require_once("vpn.inc");
32
require_once("services.inc");
Ad Schellevis's avatar
Ad Schellevis committed
33

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

Ad Schellevis's avatar
Ad Schellevis committed
38
if (!is_array($config['ipsec']['mobilekey'])) {
39
    $config['ipsec']['mobilekey'] = array();
Ad Schellevis's avatar
Ad Schellevis committed
40 41 42 43
}
ipsec_mobilekey_sort();
$a_secret = &$config['ipsec']['mobilekey'];

44 45 46 47 48 49
if (is_numericint($_GET['id'])) {
    $id = $_GET['id'];
}
if (isset($_POST['id']) && is_numericint($_POST['id'])) {
    $id = $_POST['id'];
}
Ad Schellevis's avatar
Ad Schellevis committed
50 51

if (isset($id) && $a_secret[$id]) {
52 53
    $pconfig['ident'] = $a_secret[$id]['ident'];
    $pconfig['psk'] = $a_secret[$id]['pre-shared-key'];
Ad Schellevis's avatar
Ad Schellevis committed
54 55 56
}

if ($_POST) {
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
    $userids = array();
    foreach ($config['system']['user'] as $uid => $user) {
        $userids[$user['name']] = $uid;
    }

    unset($input_errors);
    $pconfig = $_POST;

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

    do_input_validation($_POST, $reqdfields, $reqdfieldsn, $input_errors);

    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);

    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) {
        if (isset($id) && $a_secret[$id]) {
            $secretent = $a_secret[$id];
        }

        $secretent['ident'] = $_POST['ident'];
        $secretent['pre-shared-key'] = $_POST['psk'];
        $text = "";

        if (isset($id) && $a_secret[$id]) {
            $a_secret[$id] = $secretent;
            $text = gettext("Edited");
        } else {
            $a_secret[] = $secretent;
            $text = gettext("Added");
        }

        write_config("{$text} IPsec Pre-Shared Keys");
        mark_subsystem_dirty('ipsec');

        header("Location: vpn_ipsec_keys.php");
        exit;
    }
Ad Schellevis's avatar
Ad Schellevis committed
113 114 115 116 117 118 119 120 121
}

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

include("head.inc");

?>

Ad Schellevis's avatar
Ad Schellevis committed
122
<body>
Ad Schellevis's avatar
Ad Schellevis committed
123
<?php include("fbegin.inc"); ?>
Ad Schellevis's avatar
Ad Schellevis committed
124 125 126 127

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

		<div class="container-fluid">
128 129

			<div class="row">
130
				<?php if (isset($input_errors) && count($input_errors) > 0) {
131 132
                    print_input_errors($input_errors);
} ?>
133

Ad Schellevis's avatar
Ad Schellevis committed
134
			    <section class="col-xs-12">
135 136 137 138 139 140 141 142

				<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
143 144
					                  <td valign="top" class="vncellreq"><?=gettext("Identifier"); ?></td>
					                  <td class="vtable">
145
					                  <input name="ident" type="text" class="formfld unknown" id="ident" size="30" value="<?=htmlspecialchars($pconfig['ident']);?>" />
Ad Schellevis's avatar
Ad Schellevis committed
146
					                    <br />
147
					<?=gettext("This can be either an IP address, fully qualified domain name or an e-mail address"); ?>.
Ad Schellevis's avatar
Ad Schellevis committed
148 149
					                  </td>
					                </tr>
150
					                <tr>
Ad Schellevis's avatar
Ad Schellevis committed
151
					                  <td width="22%" valign="top" class="vncellreq"><?=gettext("Pre-Shared Key"); ?></td>
152
					                  <td width="78%" class="vtable">
153
					                  <input name="psk" type="text" class="formfld unknown" id="psk" size="40" value="<?=htmlspecialchars($pconfig['psk']);?>" />
Ad Schellevis's avatar
Ad Schellevis committed
154 155
					                  </td>
					                </tr>
156
					                <tr>
Ad Schellevis's avatar
Ad Schellevis committed
157
					                  <td width="22%" valign="top">&nbsp;</td>
158 159
					                  <td width="78%">
					                    <input name="Submit" type="submit" class="btn btn-primary" value="<?=gettext("Save"); ?>" />
160 161
					                    <?php if (isset($id) && $a_secret[$id]) :
?>
Ad Schellevis's avatar
Ad Schellevis committed
162
					                    <input name="id" type="hidden" value="<?=htmlspecialchars($id);?>" />
163 164
					                    <?php
endif; ?>
Ad Schellevis's avatar
Ad Schellevis committed
165 166 167
					                  </td>
					                </tr>
					              </table>
168 169 170
				</div>

				<div class="col-xs-12">
Ad Schellevis's avatar
Ad Schellevis committed
171 172 173 174 175 176 177 178
								<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>
179
				</div>
Ad Schellevis's avatar
Ad Schellevis committed
180 181 182 183 184
			    </section>
			</div>
		</div>
	</section>

185
<?php include("foot.inc");