summaryrefslogtreecommitdiffstats
path: root/usr/local/www/vpn_openvpn.php
blob: d6d3684eefe57f048504992d87c5c25b59b96b8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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
55
56
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
113
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
<?php 
/*
	vpn_openvpn.php

	Copyright (C) 2004 Peter Curran (peter@closeconsultants.com).
	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.
*/

require("guiconfig.inc");
require_once("openvpn.inc");

if (!is_array($config['ovpn']))
	$config['ovpn'] = array();
if (!is_array($config['ovpn']['server'])){
	$config['ovpn']['server'] =  array();
	$config['ovpn']['server']['tun_iface'] = "tun0";
	$config['ovpn']['server']['psh_options'] = array();
	/* Initialise with some sensible defaults */
	$config['ovpn']['server']['port'] = 5000;
	$config['ovpn']['server']['proto'] = 'UDP';
	$config['ovpn']['server']['maxcli'] = 25;
	$config['ovpn']['server']['crypto'] = 'BF-CBC';
	$config['ovpn']['server']['dupcn'] = true;
	$config['ovpn']['server']['verb'] = 1;
}

if ($_POST) {

	unset($input_errors);

	/* input validation */
	if (isset($_POST['enable'])) {
		$reqdfields = explode(" ", "tun_iface bind_iface ipblock");
		$reqdfieldsn = explode(",", "Tunnel type,Interface binding,IP address block start");

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

	}
	
	/* need a test here to make sure prefix and max_clients are coherent */
		
	/* Sort out the cert+key files */
	if (is_null($_POST['ca_cert']))
		$input_errors[] = "You must provide a CA certificate file";
	elseif (!strstr($_POST['ca_cert'], "BEGIN CERTIFICATE") || !strstr($_POST['ca_cert'], "END CERTIFICATE"))
		$input_errors[] = "The CA certificate does not appear to be valid.";
		
	if (is_null($_POST['srv_cert']))
		$input_errors[] = "You must provide a server certificate file";
	elseif (!strstr($_POST['srv_cert'], "BEGIN CERTIFICATE") || !strstr($_POST['srv_cert'], "END CERTIFICATE"))
		$input_errors[] = "The server certificate does not appear to be valid.";
		
	if (is_null($_POST['srv_key']))
		$input_errors[] = "You must provide a server key file";
	elseif (!strstr($_POST['srv_key'], "BEGIN RSA PRIVATE KEY") || !strstr($_POST['srv_key'], "END RSA PRIVATE KEY"))
		$input_errors[] = "The server key does not appear to be valid.";
		
	if (is_null($_POST['dh_param']))
		$input_errors[] = "You must provide a DH parameters file";
	elseif (!strstr($_POST['dh_param'], "BEGIN DH PARAMETERS") || !strstr($_POST['dh_param'], "END DH PARAMETERS"))
		$input_errors[] = "The DH parameters do not appear to be valid.";
				
	if (!$input_errors) {
		$server =& $config['ovpn']['server'];
		$server['enable'] = $_POST['enable'] ? true : false;
		/* Make sure that the tunnel interface type has not changed */
		if ($server['tun_iface'] != $_POST['tun_iface']){ 
			$server['tun_iface'] = $_POST['tun_iface'];

		}
		
		$server['bind_iface'] = $_POST['bind_iface'];
		$server['port'] = $_POST['port'];
		$server['proto'] = $_POST['proto'];
		
		/* Make sure the IP address and/or prefix have not changed */
		if ($server['ipblock'] != $_POST['ipblock']){
			$server['ipblock'] = $_POST['ipblock'];
		}
		if ($server['prefix'] != $_POST['prefix']){
			$server['prefix'] = $_POST['prefix'];
		}
		
		$server['maxcli'] = $_POST['maxcli'];
		$server['crypto'] = $_POST['crypto'];
		$server['cli2cli'] = $_POST['cli2cli'] ? true : false;
		$server['dupcn'] = $_POST['dupcn'] ? true : false;
		$server['psh_options']['redir'] = $_POST['psh_redir'] ? true : false;
		$server['psh_options']['redir_loc'] = $_POST['psh_redir_loc'] ? true : false;
		if ($_POST['psh_rtedelay'])
			$server['psh_options']['rtedelay'] = $_POST['psh_rtedelay_int'];
		if ($_POST['psh_ping'])
			$server['psh_options']['ping'] = $_POST['psh_ping_int'];
		if ($_POST['psh_pingexit'])
			$server['psh_options']['pingexit'] = $_POST['psh_pingexit_int'];
		if ($_POST['psh_pingrst'])
			$server['psh_options']['pingrst'] = $_POST['psh_pingrst_int'];
		if ($_POST['inact'])
			$server['psh_options']['inact'] = $_POST['psh_inact_int'];
		$server['ca_cert'] = base64_encode($_POST['ca_cert']);
		$server['srv_cert'] = base64_encode($_POST['srv_cert']);
		$server['srv_key'] = base64_encode($_POST['srv_key']);
		$server['dh_param'] = base64_encode($_POST['dh_param']);	
			
		write_config();

		$retval = 0;
		if (file_exists($d_sysrebootreqd_path)) {
			/* Rewrite interface definitions */
			$retval = ovpn_server_iface();
		}
		else{
			ovpn_lock();
			$retval = ovpn_config_server($server['enable']);
			ovpn_unlock();
		}
		$savemsg = get_std_save_message($retval);
	}
}

/* Simply take a copy of the array */
$pconfig = $config['ovpn']['server'];

$pgtitle = "VPN: OpenVPN";
include("head.inc");

?>

<?php include("fbegin.inc"); ?>
<body link="#0000CC" vlink="#0000CC" alink="#0000CC">
<p class="pgtitle"><?=$pgtitle?></p>
<?php if ($input_errors) print_input_errors($input_errors); ?>

<form action="vpn_openvpn.php" method="post" enctype="multipart/form-data" name="iform" id="iform">
<table width="100%" border="0" cellpadding="0" cellspacing="0">
  <tr><td>
<?php
        $tab_array = array();
        $tab_array[] = array("Server", true, "vpn_openvpn.php");
        $tab_array[] = array("Client", false, "vpn_openvpn_cli.php");
        display_top_tabs($tab_array);
?>
  </td></tr>
  <tr>
  <td>
    <div id="mainarea">
    <table class="tabcont" width="100%" border="0" cellspacing="0" cellpadding="0">
  <tr>
  <td colspan="2">
    <strong><span class="red">WARNING: This feature is experimental and modifies your optional interface configuration.
  Backup your configuration before using OpenVPN, and restore it before upgrading.<br>
&nbsp;  <br>
    </span></strong>
  </td></tr>
  <tr>
    <td width="22%" valign="top" class="vtable">&nbsp;</td>
    <td width="78%" class="vtable">
      <input name="enable" type="checkbox" value="yes" <?php if (isset($pconfig['enable'])) echo "checked"; ?>>
      <strong>Enable OpenVPN server </strong></td>
   </tr>
   
   <tr>
     <td width="22%" valign="top" class="vncellreq">Tunnel type</td>
     <td width="78%" class="vtable">
       <input type="radio" name="tun_iface" class="formfld" value="tun0" <?php if ($pconfig['tun_iface'] == 'tun0') echo "checked"; ?>>
          TUN&nbsp;
       <input type="radio" name="tun_iface" class="formfld" value="tap0" <?php if ($pconfig['tun_iface'] == 'tap0') echo "checked"; ?>>
          TAP
      </td>
    </tr>
    
    <tr>
      <td width="22%" valign="top" class="vncell">OpenVPN protocol/port</td>
      <td width="78%" class="vtable">
	<input type="radio" name="proto" class="formfld" value="UDP" <?php if ($pconfig['proto'] == 'UDP') echo "checked"; ?>>
           UDP&nbsp;
        <input type="radio" name="proto" class="formfld" value="TCP" <?php if ($pconfig['proto'] == 'TCP') echo "checked"; ?>>
           TCP<br><br>
        Port: 
        <input name="port" type="text" class="formfld" size="5" maxlength="5" value="<?= $pconfig['port']; ?>"><br>
        Enter the port number to use for the server (default is 5000).</td>
    </tr>
    
    <tr>
      <td width="22%" valign="top" class="vncellreq">Interface binding</td>
      <td width="78%" class="vtable">
	<select name="bind_iface" class="formfld">
        <?php 
	$interfaces = ovpn_real_interface_list();
	foreach ($interfaces as $key => $iface):
        ?>
	<option value="<?=$key;?>" <?php if ($key == $pconfig['bind_iface']) echo "selected"; ?>> <?= $iface;?>
        </option>
        <?php endforeach;?>
        </select>
        <span class="vexpl"><br>
        Choose an interface for the OpenVPN server to listen on.</span></td>
    </tr>
		
    <tr> 
      <td width="22%" valign="top" class="vncellreq">IP address block</td>
      <td width="78%" class="vtable"> 
        <input name="ipblock" type="text" class="formfld" size="20" value="<?=htmlspecialchars($pconfig['ipblock']);?>">
        / 
        <select name="prefix" class="formfld">
          <?php for ($i = 29; $i > 19; $i--): ?>
          <option value="<?=$i;?>" <?php if ($i == $pconfig['prefix']) echo "selected"; ?>>
            <?=$i;?>
          </option>
          <?php endfor; ?>
        </select>
        <br>
        Enter the IP address block for the OpenVPN server and clients to use.<br>
        <br>
	Maximum number of simultaneous clients: 
	<input name="maxcli" type="text" class="formfld" size="3" maxlength="3" value="<?=htmlspecialchars($pconfig['maxcli']);?>">
	</td>
    </tr>
    
    <tr> 
      <td width="22%" valign="top" class="vncellreq">CA certificate</td>
      <td width="78%" class="vtable"> 
      <textarea name="ca_cert" cols="65" rows="4" class="formpre"><?=htmlspecialchars(base64_decode($pconfig['ca_cert']));?></textarea>
      <br>
      Paste a CA certificate in X.509 PEM format here.</td>
    </tr>
		
    <tr> 
      <td width="22%" valign="top" class="vncellreq">Server certificate</td>
      <td width="78%" class="vtable">
        <textarea name="srv_cert" cols="65" rows="4" class="formpre"><?=htmlspecialchars(base64_decode($pconfig['srv_cert']));?></textarea>
        <br>
        Paste a server certificate in X.509 PEM format here.</td>
     </tr>
     
     <tr> 
       <td width="22%" valign="top" class="vncellreq">Server key</td>
       <td width="78%" class="vtable"> 
         <textarea name="srv_key" cols="65" rows="4" class="formpre"><?=htmlspecialchars(base64_decode($pconfig['srv_key']));?></textarea>
         <br>Paste the server RSA private key here.</td>
      </tr>
      
      <tr> 
        <td width="22%" valign="top" class="vncellreq">DH parameters</td>
        <td width="78%" class="vtable"> 
	  <textarea name="dh_param" cols="65" rows="4" class="formpre"><?=htmlspecialchars(base64_decode($pconfig['dh_param']));?></textarea>
          <br>          
          Paste the Diffie-Hellman parameters in PEM format here.</td>
      </tr>
      
      <tr>
        <td width="22%" valign="top" class="vncell">Crypto</td>
        <td width="78%" class="vtable">
          <select name="crypto" class="formfld">
	    <?php $cipher_list = ovpn_get_cipher_list();
	    foreach($cipher_list as $key => $value){
	    ?>
	      <option value="<?= $key ?>" <?php if ($pconfig['crypto'] == $key) echo "selected"; ?>>
	        <?= $value ?>
	      </option>
	    <?php
	    }
	    ?>
	  </select>
	  <br>
	  Select a data channel encryption cipher.</td>
      </tr>
      
      <tr>
        <td width="22%" valign="top" class="vncell">Internal routing mode</td>
        <td width="78%" class="vtable">
	  <input name="cli2cli" type="checkbox" value="yes" <?php if (isset($pconfig['cli2cli'])) echo "checked"; ?>>
          <strong>Enable client-to-client routing</strong><br>
          If this option is on,  clients are allowed to talk to each other.</td>
      </tr>
      
      <tr>
        <td width="22%" valign="top" class="vncell">Client authentication</td>
        <td width="78%" class="vtable">
	  <input name="dupcn" type="checkbox" value="yes" <?php if (isset($pconfig['dupcn'])) echo "checked"; ?>>
          <strong>Permit duplicate client certificates</strong><br>
	  If this option is on, clients with duplicate certificates will not be disconnected.</td>
      </tr>
	 
      <tr>
        <td width="22%" valign="top" class="vncell">Client-push options</td>
        <td width="78%" class="vtable">
	      <table border="0" cellspacing="0" cellpadding="0">
	        <tr>
              <td><input type="checkbox" name="psh_redir" value="yes" <?php if (isset($pconfig['psh_options']['redir'])) echo "checked"; ?>>
              Redirect-gateway</td>
              <td>&nbsp;</td>
              <td><input type="checkbox" name="psh_redir_loc" value="yes" <?php if (isset($pconfig['psh_options']['redir_loc'])) echo "checked"; ?>>
                Local</td>
	          </tr>
            <tr>
              <td><input type="checkbox" name="psh_rtedelay" value="yes" <?php if (isset($pconfig['psh_options']['rtedelay'])) echo "checked"; ?>> Route-delay</td>
              <td width="16">&nbsp;</td>
              <td><input type="text" name="psh_rtedelay_int" class="formfld" size="4" value="<?= $pconfig['psh_options']['rtedelay']?>"> seconds</td>
            </tr>
            <tr>
              <td><input type="checkbox" name="psh_inact" value="yes" <?php if (isset($pconfig['psh_options']['inact'])) echo "checked"; ?>>
    Inactive</td>
              <td>&nbsp;</td>
              <td><input type="text" name="psh_inact_int" class="formfld" size="4" value="<?= $pconfig['psh_options']['inact']?>">
    seconds</td>
            </tr>
            <tr>
              <td><input type="checkbox" name="psh_ping" value="yes" <?php if (isset($pconfig['psh_options']['ping'])) echo "checked"; ?>> Ping</td>
              <td>&nbsp;</td>
              <td>Interval: <input type="text" name="psh_ping_int" class="formfld" size="4" value="<?= $pconfig['psh_options']['ping']?>"> seconds</td>
            </tr>
            <tr>
              <td><input type="checkbox" name="psh_pingexit" value="yes" <?php if (isset($pconfig['psh_options']['pingexit'])) echo "checked"; ?>> Ping-exit</td>
              <td>&nbsp;</td>
              <td>Interval: <input type="text" name="psh_pingexit_int" class="formfld" size="4" value="<?= $pconfig['psh_options']['pingexit']?>"> seconds</td>
            </tr>
            <tr>
              <td><input type="checkbox" name="psh_pingrst" value="yes" <?php if (isset($pconfig['psh_options']['pingrst'])) echo "checked"; ?>> Ping-restart</td>
              <td>&nbsp;</td>
              <td>Interval: <input type="text" name="psh_pingrst_int" class="formfld" size="4" value="<?= $pconfig['psh_options']['pingrst']?>"> seconds</td>
            </tr>
          </table></td>
      </tr>
      <tr>
        <td width="22%" valign="top">&nbsp;</td>
        <td width="78%">
          <input name="Submit" type="submit" class="formbtn" value="Save">
        </td>
      </tr>
      <tr>
        <td width="22%" valign="top">&nbsp;</td>
        <td width="78%"><span class="vexpl"><span class="red"><strong>Note:<br>
          </strong></span>Changing any settings on this page will disconnect all clients!</span>
	</td>
      </tr>
    </table>
    </div>
</td>
</tr>
</table>
</form>
<?php include("fend.inc"); ?>
OpenPOWER on IntegriCloud