]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blame - html/cgi-bin/vpnmain.cgi
vpnmain.cgi: Remove left-over </td> tag.
[people/teissler/ipfire-2.x.git] / html / cgi-bin / vpnmain.cgi
CommitLineData
ac1cfefa 1#!/usr/bin/perl
70df8302
MT
2###############################################################################
3# #
4# IPFire.org - A linux based firewall #
4a29f854 5# Copyright (C) 2007-2013 IPFire Team info@ipfire.org #
70df8302
MT
6# #
7# This program is free software: you can redistribute it and/or modify #
8# it under the terms of the GNU General Public License as published by #
9# the Free Software Foundation, either version 3 of the License, or #
10# (at your option) any later version. #
11# #
12# This program is distributed in the hope that it will be useful, #
13# but WITHOUT ANY WARRANTY; without even the implied warranty of #
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
15# GNU General Public License for more details. #
16# #
17# You should have received a copy of the GNU General Public License #
18# along with this program. If not, see <http://www.gnu.org/licenses/>. #
19# #
20###############################################################################
ac1cfefa
MT
21
22use Net::DNS;
23use File::Copy;
24use File::Temp qw/ tempfile tempdir /;
25use strict;
eff2dbf8 26use Sort::Naturally;
ac1cfefa 27# enable only the following on debugging purpose
cb5e9c6c
CS
28#use warnings;
29#use CGI::Carp 'fatalsToBrowser';
ac1cfefa 30
986e08d9 31require '/var/ipfire/general-functions.pl';
ac1cfefa
MT
32require "${General::swroot}/lang.pl";
33require "${General::swroot}/header.pl";
ac1cfefa
MT
34require "${General::swroot}/countries.pl";
35
36#workaround to suppress a warning when a variable is used only once
ed84e8b8 37my @dummy = ( ${Header::colourgreen}, ${Header::colourblue} );
ac1cfefa
MT
38undef (@dummy);
39
40###
41### Initialize variables
42###
ed84e8b8 43my $sleepDelay = 4; # after a call to ipsecctrl S or R, wait this delay (seconds) before reading status
ac1cfefa
MT
44 # (let the ipsec do its job)
45my %netsettings=();
ed84e8b8
MT
46our %cgiparams=();
47our %vpnsettings=();
ac1cfefa
MT
48my %checked=();
49my %confighash=();
50my %cahash=();
51my %selected=();
52my $warnmessage = '';
53my $errormessage = '';
ed84e8b8 54
f2fdd0c1
CS
55my %color = ();
56my %mainsettings = ();
57&General::readhash("${General::swroot}/main/settings", \%mainsettings);
58&General::readhash("/srv/web/ipfire/html/themes/".$mainsettings{'THEME'}."/include/colors.txt", \%color);
59
ac1cfefa 60&General::readhash("${General::swroot}/ethernet/settings", \%netsettings);
e897bfeb
AF
61
62my $green_cidr = &General::ipcidr("$netsettings{'GREEN_NETADDRESS'}/$netsettings{'GREEN_NETMASK'}");
63my $blue_cidr = "# Blue not defined";
095cbf43 64if (&Header::blue_used() && $netsettings{'BLUE_DEV'}) {
e897bfeb
AF
65 $blue_cidr = &General::ipcidr("$netsettings{'BLUE_NETADDRESS'}/$netsettings{'BLUE_NETMASK'}");
66}
67my $orange_cidr = "# Orange not defined";
095cbf43 68if (&Header::orange_used() && $netsettings{'ORANGE_DEV'}) {
e897bfeb
AF
69 $orange_cidr = &General::ipcidr("$netsettings{'ORANGE_NETADDRESS'}/$netsettings{'ORANGE_NETMASK'}");
70}
71
e9850821
AM
72my $col="";
73
ac1cfefa 74$cgiparams{'ENABLED'} = 'off';
ac1cfefa 75$cgiparams{'EDIT_ADVANCED'} = 'off';
ac1cfefa
MT
76$cgiparams{'ACTION'} = '';
77$cgiparams{'CA_NAME'} = '';
ed84e8b8
MT
78$cgiparams{'KEY'} = '';
79$cgiparams{'TYPE'} = '';
80$cgiparams{'ADVANCED'} = '';
ed84e8b8
MT
81$cgiparams{'NAME'} = '';
82$cgiparams{'LOCAL_SUBNET'} = '';
83$cgiparams{'REMOTE_SUBNET'} = '';
84$cgiparams{'REMOTE'} = '';
85$cgiparams{'LOCAL_ID'} = '';
86$cgiparams{'REMOTE_ID'} = '';
87$cgiparams{'REMARK'} = '';
88$cgiparams{'PSK'} = '';
89$cgiparams{'CERT_NAME'} = '';
90$cgiparams{'CERT_EMAIL'} = '';
91$cgiparams{'CERT_OU'} = '';
92$cgiparams{'CERT_ORGANIZATION'} = '';
93$cgiparams{'CERT_CITY'} = '';
94$cgiparams{'CERT_STATE'} = '';
95$cgiparams{'CERT_COUNTRY'} = '';
96$cgiparams{'SUBJECTALTNAME'} = '';
97$cgiparams{'CERT_PASS1'} = '';
98$cgiparams{'CERT_PASS2'} = '';
99$cgiparams{'ROOTCERT_HOSTNAME'} = '';
100$cgiparams{'ROOTCERT_COUNTRY'} = '';
101$cgiparams{'P12_PASS'} = '';
102$cgiparams{'ROOTCERT_ORGANIZATION'} = '';
103$cgiparams{'ROOTCERT_HOSTNAME'} = '';
104$cgiparams{'ROOTCERT_EMAIL'} = '';
105$cgiparams{'ROOTCERT_OU'} = '';
106$cgiparams{'ROOTCERT_CITY'} = '';
107$cgiparams{'ROOTCERT_STATE'} = '';
9d85ac3b 108$cgiparams{'RW_NET'} = '';
4e156911
AM
109$cgiparams{'DPD_DELAY'} = '30';
110$cgiparams{'DPD_TIMEOUT'} = '120';
ac1cfefa
MT
111&Header::getcgihash(\%cgiparams, {'wantfile' => 1, 'filevar' => 'FH'});
112
113###
114### Useful functions
115###
116sub valid_dns_host {
117 my $hostname = $_[0];
118 unless ($hostname) { return "No hostname"};
119 my $res = new Net::DNS::Resolver;
120 my $query = $res->search("$hostname");
121 if ($query) {
122 foreach my $rr ($query->answer) {
123 ## Potential bug - we are only looking at A records:
124 return 0 if $rr->type eq "A";
125 }
126 } else {
127 return $res->errorstring;
128 }
129}
ed84e8b8
MT
130###
131### Just return true is one interface is vpn enabled
132###
133sub vpnenabled {
5fd30232 134 return ($vpnsettings{'ENABLED'} eq 'on');
ed84e8b8
MT
135}
136###
137### old version: maintain serial number to one, without explication.
138### this : let the counter go, so that each cert is numbered.
139###
ac1cfefa
MT
140sub cleanssldatabase
141{
142 if (open(FILE, ">${General::swroot}/certs/serial")) {
143 print FILE "01";
144 close FILE;
145 }
146 if (open(FILE, ">${General::swroot}/certs/index.txt")) {
147 print FILE "";
148 close FILE;
149 }
150 unlink ("${General::swroot}/certs/index.txt.old");
151 unlink ("${General::swroot}/certs/serial.old");
152 unlink ("${General::swroot}/certs/01.pem");
153}
154sub newcleanssldatabase
155{
156 if (! -s "${General::swroot}/certs/serial" ) {
157 open(FILE, ">${General::swroot}/certs/serial");
158 print FILE "01";
159 close FILE;
160 }
161 if (! -s ">${General::swroot}/certs/index.txt") {
162 system ("touch ${General::swroot}/certs/index.txt");
163 }
164 unlink ("${General::swroot}/certs/index.txt.old");
165 unlink ("${General::swroot}/certs/serial.old");
166# unlink ("${General::swroot}/certs/01.pem"); numbering evolves. Wrong place to delete
167}
ed84e8b8
MT
168
169###
170### Call openssl and return errormessage if any
171###
172sub callssl ($) {
173 my $opt = shift;
174 my $retssl = `/usr/bin/openssl $opt 2>&1`; #redirect stderr
175 my $ret = '';
176 foreach my $line (split (/\n/, $retssl)) {
177 &General::log("ipsec", "$line") if (0); # 1 for verbose logging
178 $ret .= '<br>'.$line if ( $line =~ /error|unknown/ );
179 }
180 if ($ret) {
181 $ret= &Header::cleanhtml($ret);
182 }
183 return $ret ? "$Lang::tr{'openssl produced an error'}: $ret" : '' ;
184}
185###
186### Obtain a CN from given cert
187###
188sub getCNfromcert ($) {
189 #&General::log("ipsec", "Extracting name from $_[0]...");
190 my $temp = `/usr/bin/openssl x509 -text -in $_[0]`;
191 $temp =~ /Subject:.*CN=(.*)[\n]/;
192 $temp = $1;
193 $temp =~ s+/Email+, E+;
194 $temp =~ s/ ST=/ S=/;
195 $temp =~ s/,//g;
196 $temp =~ s/\'//g;
197 return $temp;
198}
199###
200### Obtain Subject from given cert
201###
202sub getsubjectfromcert ($) {
203 #&General::log("ipsec", "Extracting subject from $_[0]...");
204 my $temp = `/usr/bin/openssl x509 -text -in $_[0]`;
205 $temp =~ /Subject: (.*)[\n]/;
206 $temp = $1;
207 $temp =~ s+/Email+, E+;
208 $temp =~ s/ ST=/ S=/;
209 return $temp;
210}
211###
212### Combine local subnet and connection name to make a unique name for each connection section
213### (this sub is not used now)
214###
215sub makeconnname ($) {
216 my $conn = shift;
217 my $subnet = shift;
218
219 $subnet =~ /^(.*?)\/(.*?)$/; # $1=IP $2=mask
220 my $ip = unpack('N', &Socket::inet_aton($1));
221 if (length ($2) > 2) {
222 my $mm = unpack('N', &Socket::inet_aton($2));
223 while ( ($mm & 1)==0 ) {
224 $ip >>= 1;
225 $mm >>= 1;
226 };
227 } else {
228 $ip >>= (32 - $2);
229 }
230 return sprintf ("%s-%X", $conn, $ip);
231}
232###
233### Write a config file.
234###
235###Type=Host : GUI can choose the interface used (RED,GREEN,BLUE) and
236### the side is always defined as 'left'.
237### configihash[14]: 'VHOST' is allowed
238###
ed84e8b8 239
ac1cfefa
MT
240sub writeipsecfiles {
241 my %lconfighash = ();
242 my %lvpnsettings = ();
243 &General::readhasharray("${General::swroot}/vpn/config", \%lconfighash);
244 &General::readhash("${General::swroot}/vpn/settings", \%lvpnsettings);
245
246 open(CONF, ">${General::swroot}/vpn/ipsec.conf") or die "Unable to open ${General::swroot}/vpn/ipsec.conf: $!";
247 open(SECRETS, ">${General::swroot}/vpn/ipsec.secrets") or die "Unable to open ${General::swroot}/vpn/ipsec.secrets: $!";
248 flock CONF, 2;
249 flock SECRETS, 2;
05207d69 250 print CONF "version 2\n\n";
ac1cfefa 251 print CONF "conn %default\n";
7916a3be 252 print CONF "\tkeyingtries=%forever\n";
ac1cfefa
MT
253 print CONF "\n";
254
63043a1b
AF
255 # Add user includes to config file
256 print CONF "include /etc/ipsec.user.conf\n";
257 print CONF "\n";
258
2827f4af 259 print SECRETS "include /etc/ipsec.user.secrets\n";
63043a1b 260
ac1cfefa
MT
261 if (-f "${General::swroot}/certs/hostkey.pem") {
262 print SECRETS ": RSA ${General::swroot}/certs/hostkey.pem\n"
263 }
ed84e8b8
MT
264 my $last_secrets = ''; # old the less specifics connections
265
ac1cfefa 266 foreach my $key (keys %lconfighash) {
ed84e8b8 267 next if ($lconfighash{$key}[0] ne 'on');
ac1cfefa 268
ed84e8b8
MT
269 #remote peer is not set? => use '%any'
270 $lconfighash{$key}[10] = '%any' if ($lconfighash{$key}[10] eq '');
ac1cfefa 271
5fd30232 272 my $localside;
ed84e8b8 273 if ($lconfighash{$key}[26] eq 'BLUE') {
5fd30232 274 $localside = $netsettings{'BLUE_ADDRESS'};
ed84e8b8 275 } elsif ($lconfighash{$key}[26] eq 'GREEN') {
5fd30232
MT
276 $localside = $netsettings{'GREEN_ADDRESS'};
277 } elsif ($lconfighash{$key}[26] eq 'ORANGE') {
278 $localside = $netsettings{'ORANGE_ADDRESS'};
279 } else { # it is RED
280 $localside = $lvpnsettings{'VPN_IP'};
ed84e8b8 281 }
ac1cfefa 282
341ff36c 283 print CONF "conn $lconfighash{$key}[1]\n";
5fd30232 284 print CONF "\tleft=$localside\n";
e897bfeb
AF
285 my $cidr_net=&General::ipcidr($lconfighash{$key}[8]);
286 print CONF "\tleftsubnet=$cidr_net\n";
6652626c 287 print CONF "\tleftfirewall=yes\n";
b2d5dd6d 288 print CONF "\tlefthostaccess=yes\n";
5fd30232
MT
289
290 print CONF "\tright=$lconfighash{$key}[10]\n";
ed84e8b8 291 if ($lconfighash{$key}[3] eq 'net') {
e897bfeb
AF
292 my $cidr_net=&General::ipcidr($lconfighash{$key}[11]);
293 print CONF "\trightsubnet=$cidr_net\n";
5fd30232 294 } elsif ($lconfighash{$key}[10] eq '%any' && $lconfighash{$key}[14] eq 'on') { #vhost allowed for roadwarriors?
ed84e8b8
MT
295 print CONF "\trightsubnet=vhost:%no,%priv\n";
296 }
297
298 # Local Cert and Remote Cert (unless auth is DN dn-auth)
299 if ($lconfighash{$key}[4] eq 'cert') {
5fd30232
MT
300 print CONF "\tleftcert=${General::swroot}/certs/hostcert.pem\n";
301 print CONF "\trightcert=${General::swroot}/certs/$lconfighash{$key}[1]cert.pem\n" if ($lconfighash{$key}[2] ne '%auth-dn');
ed84e8b8
MT
302 }
303
304 # Local and Remote IDs
5fd30232
MT
305 print CONF "\tleftid=\"$lconfighash{$key}[7]\"\n" if ($lconfighash{$key}[7]);
306 print CONF "\trightid=\"$lconfighash{$key}[9]\"\n" if ($lconfighash{$key}[9]);
ed84e8b8 307
ae2782ba
MT
308 # Is PFS enabled?
309 my $pfs = $lconfighash{$key}[28] eq 'on' ? 'on' : 'off';
310
ed84e8b8
MT
311 # Algorithms
312 if ($lconfighash{$key}[18] && $lconfighash{$key}[19] && $lconfighash{$key}[20]) {
313 print CONF "\tike=";
314 my @encs = split('\|', $lconfighash{$key}[18]);
315 my @ints = split('\|', $lconfighash{$key}[19]);
316 my @groups = split('\|', $lconfighash{$key}[20]);
317 my $comma = 0;
318 foreach my $i (@encs) {
319 foreach my $j (@ints) {
320 foreach my $k (@groups) {
321 if ($comma != 0) { print CONF ","; } else { $comma = 1; }
26dfc86a
MT
322
323 my @l = split("", $k);
324 if ($l[0] eq "e") {
325 shift @l;
326 print CONF "$i-$j-ecp".join("", @l);
327 } else {
328 print CONF "$i-$j-modp$k";
329 }
ed84e8b8 330 }
26dfc86a 331 }
ed84e8b8
MT
332 }
333 if ($lconfighash{$key}[24] eq 'on') { #only proposed algorythms?
334 print CONF "!\n";
ac1cfefa 335 } else {
ed84e8b8
MT
336 print CONF "\n";
337 }
338 }
339 if ($lconfighash{$key}[21] && $lconfighash{$key}[22]) {
340 print CONF "\tesp=";
341 my @encs = split('\|', $lconfighash{$key}[21]);
342 my @ints = split('\|', $lconfighash{$key}[22]);
ae2782ba 343 my @groups = split('\|', $lconfighash{$key}[20]);
ed84e8b8
MT
344 my $comma = 0;
345 foreach my $i (@encs) {
346 foreach my $j (@ints) {
ae2782ba 347 my $modp = "";
7916a3be
MT
348 if ($pfs eq "on") {
349 foreach my $k (@groups) {
350 if ($comma != 0) { print CONF ","; } else { $comma = 1; }
351 if ($pfs eq "on") {
26dfc86a
MT
352 my @l = split("", $k);
353 if ($l[0] eq "e") {
354 $modp = "";
355 } else {
356 $modp = "-modp$k";
357 }
7916a3be
MT
358 } else {
359 $modp = "";
360 }
361 print CONF "$i-$j$modp";
362 }
363 } else {
364 if ($comma != 0) { print CONF ","; } else { $comma = 1; }
365 print CONF "$i-$j";
ae2782ba 366 }
ed84e8b8 367 }
ac1cfefa 368 }
ed84e8b8
MT
369 if ($lconfighash{$key}[24] eq 'on') { #only proposed algorythms?
370 print CONF "!\n";
371 } else {
372 print CONF "\n";
373 }
374 }
ed84e8b8 375
e2e4ed01
AF
376 # IKE V1 or V2
377 if (! $lconfighash{$key}[29]) {
378 $lconfighash{$key}[29] = "ikev1";
379 }
380 print CONF "\tkeyexchange=$lconfighash{$key}[29]\n";
126246a8 381
ed84e8b8
MT
382 # Lifetimes
383 print CONF "\tikelifetime=$lconfighash{$key}[16]h\n" if ($lconfighash{$key}[16]);
384 print CONF "\tkeylife=$lconfighash{$key}[17]h\n" if ($lconfighash{$key}[17]);
385
ed84e8b8
MT
386 # Compression
387 print CONF "\tcompress=yes\n" if ($lconfighash{$key}[13] eq 'on');
388
389 # Dead Peer Detection
afd5d8f7
MT
390 my $dpdaction = $lconfighash{$key}[27];
391 print CONF "\tdpdaction=$dpdaction\n";
392
393 # If the dead peer detection is disabled and IKEv2 is used,
394 # dpddelay must be set to zero, too.
395 if ($dpdaction eq "none") {
396 if ($lconfighash{$key}[29] eq "ikev2") {
397 print CONF "\tdpddelay=0\n";
398 }
399 } else {
400 my $dpddelay = $lconfighash{$key}[30];
401 if (!$dpddelay) {
402 $dpddelay = 30;
403 }
404 print CONF "\tdpddelay=$dpddelay\n";
405 my $dpdtimeout = $lconfighash{$key}[31];
406 if (!$dpdtimeout) {
407 $dpdtimeout = 120;
408 }
409 print CONF "\tdpdtimeout=$dpdtimeout\n";
cbb3a8f9 410 }
cbb3a8f9 411
ed84e8b8
MT
412 # Build Authentication details: LEFTid RIGHTid : PSK psk
413 my $psk_line;
414 if ($lconfighash{$key}[4] eq 'psk') {
ed84e8b8
MT
415 $psk_line = ($lconfighash{$key}[7] ? $lconfighash{$key}[7] : $localside) . " " ;
416 $psk_line .= $lconfighash{$key}[9] ? $lconfighash{$key}[9] : $lconfighash{$key}[10]; #remoteid or remote address?
417 $psk_line .= " : PSK '$lconfighash{$key}[5]'\n";
418 # if the line contains %any, it is less specific than two IP or ID, so move it at end of file.
419 if ($psk_line =~ /%any/) {
420 $last_secrets .= $psk_line;
ac1cfefa 421 } else {
ed84e8b8 422 print SECRETS $psk_line;
ac1cfefa 423 }
ed84e8b8
MT
424 print CONF "\tauthby=secret\n";
425 } else {
426 print CONF "\tauthby=rsasig\n";
427 print CONF "\tleftrsasigkey=%cert\n";
428 print CONF "\trightrsasigkey=%cert\n";
429 }
ac1cfefa 430
ed84e8b8
MT
431 # Automatically start only if a net-to-net connection
432 if ($lconfighash{$key}[3] eq 'host') {
433 print CONF "\tauto=add\n";
86525dfc 434 print CONF "\trightsourceip=$lvpnsettings{'RW_NET'}\n";
ed84e8b8
MT
435 } else {
436 print CONF "\tauto=start\n";
437 }
438 print CONF "\n";
439 }#foreach key
440 print SECRETS $last_secrets if ($last_secrets);
ac1cfefa
MT
441 close(CONF);
442 close(SECRETS);
443}
444
ae2782ba
MT
445# Hook to regenerate the configuration files.
446if ($ENV{"REMOTE_ADDR"} eq "") {
26dfc86a 447 writeipsecfiles();
ae2782ba
MT
448 exit(0);
449}
450
ac1cfefa
MT
451###
452### Save main settings
453###
454if ($cgiparams{'ACTION'} eq $Lang::tr{'save'} && $cgiparams{'TYPE'} eq '' && $cgiparams{'KEY'} eq '') {
455 &General::readhash("${General::swroot}/vpn/settings", \%vpnsettings);
456 unless (&General::validfqdn($cgiparams{'VPN_IP'}) || &General::validip($cgiparams{'VPN_IP'})
457 || $cgiparams{'VPN_IP'} eq '%defaultroute' ) {
458 $errormessage = $Lang::tr{'invalid input for hostname'};
459 goto SAVE_ERROR;
460 }
461
462 unless ($cgiparams{'VPN_DELAYED_START'} =~ /^[0-9]{1,3}$/ ) { #allow 0-999 seconds !
463 $errormessage = $Lang::tr{'invalid time period'};
464 goto SAVE_ERROR;
465 }
466
2444cc97 467 if ( $cgiparams{'RW_NET'} ne '' and !&General::validipandmask($cgiparams{'RW_NET'}) ) {
9d85ac3b
CS
468 $errormessage = $Lang::tr{'urlfilter invalid ip or mask error'};
469 goto SAVE_ERROR;
470 }
471
35b5392a 472 $vpnsettings{'ENABLED'} = $cgiparams{'ENABLED'};
ac1cfefa
MT
473 $vpnsettings{'VPN_IP'} = $cgiparams{'VPN_IP'};
474 $vpnsettings{'VPN_DELAYED_START'} = $cgiparams{'VPN_DELAYED_START'};
9d85ac3b 475 $vpnsettings{'RW_NET'} = $cgiparams{'RW_NET'};
ac1cfefa
MT
476 &General::writehash("${General::swroot}/vpn/settings", \%vpnsettings);
477 &writeipsecfiles();
ed84e8b8 478 if (&vpnenabled) {
ac1cfefa
MT
479 system('/usr/local/bin/ipsecctrl', 'S');
480 } else {
481 system('/usr/local/bin/ipsecctrl', 'D');
482 }
483 sleep $sleepDelay;
484 SAVE_ERROR:
485###
486### Reset all step 2
487###
ed84e8b8 488} elsif ($cgiparams{'ACTION'} eq $Lang::tr{'remove x509'} && $cgiparams{'AREUSURE'} eq 'yes') {
ac1cfefa
MT
489 &General::readhasharray("${General::swroot}/vpn/config", \%confighash);
490
491 foreach my $key (keys %confighash) {
492 if ($confighash{$key}[4] eq 'cert') {
493 delete $confighash{$key};
494 }
495 }
ed84e8b8 496 while (my $file = glob("${General::swroot}/{ca,certs,crls,private}/*")) {
ac1cfefa
MT
497 unlink $file
498 }
499 &cleanssldatabase();
500 if (open(FILE, ">${General::swroot}/vpn/caconfig")) {
501 print FILE "";
502 close FILE;
503 }
504 &General::writehasharray("${General::swroot}/vpn/config", \%confighash);
505 &writeipsecfiles();
506 system('/usr/local/bin/ipsecctrl', 'R');
507 sleep $sleepDelay;
508
509###
510### Reset all step 1
511###
ed84e8b8 512} elsif ($cgiparams{'ACTION'} eq $Lang::tr{'remove x509'}) {
ac1cfefa 513 &Header::showhttpheaders();
7d44bfee 514 &Header::openpage($Lang::tr{'ipsec'}, 1, '');
ed84e8b8
MT
515 &Header::openbigbox('100%', 'left', '', '');
516 &Header::openbox('100%', 'left', $Lang::tr{'are you sure'});
ac1cfefa 517 print <<END
ed84e8b8
MT
518 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
519 <table width='100%'>
520 <tr>
521 <td align='center'>
522 <input type='hidden' name='AREUSURE' value='yes' />
523 <b><font color='${Header::colourred}'>$Lang::tr{'capswarning'}</font></b>:
524 $Lang::tr{'resetting the vpn configuration will remove the root ca, the host certificate and all certificate based connections'}</td>
525 </tr><tr>
526 <td align='center'>
527 <input type='submit' name='ACTION' value='$Lang::tr{'remove x509'}' />
528 <input type='submit' name='ACTION' value='$Lang::tr{'cancel'}' /></td>
529 </tr>
530 </table>
531 </form>
ac1cfefa
MT
532END
533 ;
534 &Header::closebox();
535 &Header::closebigbox();
536 &Header::closepage();
537 exit (0);
538
539###
540### Upload CA Certificate
541###
542} elsif ($cgiparams{'ACTION'} eq $Lang::tr{'upload ca certificate'}) {
543 &General::readhasharray("${General::swroot}/vpn/caconfig", \%cahash);
544
545 if ($cgiparams{'CA_NAME'} !~ /^[a-zA-Z0-9]+$/) {
546 $errormessage = $Lang::tr{'name must only contain characters'};
547 goto UPLOADCA_ERROR;
548 }
549
550 if (length($cgiparams{'CA_NAME'}) >60) {
551 $errormessage = $Lang::tr{'name too long'};
552 goto VPNCONF_ERROR;
553 }
554
555 if ($cgiparams{'CA_NAME'} eq 'ca') {
556 $errormessage = $Lang::tr{'name is invalid'};
557 goto UPLOAD_CA_ERROR;
558 }
559
560 # Check if there is no other entry with this name
561 foreach my $key (keys %cahash) {
562 if ($cahash{$key}[0] eq $cgiparams{'CA_NAME'}) {
563 $errormessage = $Lang::tr{'a ca certificate with this name already exists'};
564 goto UPLOADCA_ERROR;
565 }
566 }
567
568 if (ref ($cgiparams{'FH'}) ne 'Fh') {
569 $errormessage = $Lang::tr{'there was no file upload'};
570 goto UPLOADCA_ERROR;
571 }
572 # Move uploaded ca to a temporary file
573 (my $fh, my $filename) = tempfile( );
574 if (copy ($cgiparams{'FH'}, $fh) != 1) {
575 $errormessage = $!;
576 goto UPLOADCA_ERROR;
577 }
578 my $temp = `/usr/bin/openssl x509 -text -in $filename`;
579 if ($temp !~ /CA:TRUE/i) {
580 $errormessage = $Lang::tr{'not a valid ca certificate'};
581 unlink ($filename);
582 goto UPLOADCA_ERROR;
583 } else {
584 move($filename, "${General::swroot}/ca/$cgiparams{'CA_NAME'}cert.pem");
585 if ($? ne 0) {
586 $errormessage = "$Lang::tr{'certificate file move failed'}: $!";
587 unlink ($filename);
588 goto UPLOADCA_ERROR;
589 }
590 }
591
ac1cfefa
MT
592 my $key = &General::findhasharraykey (\%cahash);
593 $cahash{$key}[0] = $cgiparams{'CA_NAME'};
ed84e8b8 594 $cahash{$key}[1] = &Header::cleanhtml(getsubjectfromcert ("${General::swroot}/ca/$cgiparams{'CA_NAME'}cert.pem"));
ac1cfefa 595 &General::writehasharray("${General::swroot}/vpn/caconfig", \%cahash);
b4f6d698 596
64dc6c92 597 system('/usr/local/bin/ipsecctrl', 'R');
ac1cfefa
MT
598 sleep $sleepDelay;
599
600 UPLOADCA_ERROR:
601
602###
603### Display ca certificate
604###
605} elsif ($cgiparams{'ACTION'} eq $Lang::tr{'show ca certificate'}) {
606 &General::readhasharray("${General::swroot}/vpn/caconfig", \%cahash);
607
608 if ( -f "${General::swroot}/ca/$cahash{$cgiparams{'KEY'}}[0]cert.pem") {
609 &Header::showhttpheaders();
7d44bfee 610 &Header::openpage($Lang::tr{'ipsec'}, 1, '');
ed84e8b8
MT
611 &Header::openbigbox('100%', 'left', '', '');
612 &Header::openbox('100%', 'left', "$Lang::tr{'ca certificate'}:");
ac1cfefa
MT
613 my $output = `/usr/bin/openssl x509 -text -in ${General::swroot}/ca/$cahash{$cgiparams{'KEY'}}[0]cert.pem`;
614 $output = &Header::cleanhtml($output,"y");
615 print "<pre>$output</pre>\n";
616 &Header::closebox();
617 print "<div align='center'><a href='/cgi-bin/vpnmain.cgi'>$Lang::tr{'back'}</a></div>";
618 &Header::closebigbox();
619 &Header::closepage();
620 exit(0);
621 } else {
622 $errormessage = $Lang::tr{'invalid key'};
623 }
624
625###
ed84e8b8 626### Export ca certificate to browser
ac1cfefa
MT
627###
628} elsif ($cgiparams{'ACTION'} eq $Lang::tr{'download ca certificate'}) {
629 &General::readhasharray("${General::swroot}/vpn/caconfig", \%cahash);
630
631 if ( -f "${General::swroot}/ca/$cahash{$cgiparams{'KEY'}}[0]cert.pem" ) {
ed84e8b8 632 print "Content-Type: application/force-download\n";
ac1cfefa 633 print "Content-Type: application/octet-stream\r\n";
ed84e8b8 634 print "Content-Disposition: attachment; filename=$cahash{$cgiparams{'KEY'}}[0]cert.pem\r\n\r\n";
ac1cfefa
MT
635 print `/usr/bin/openssl x509 -in ${General::swroot}/ca/$cahash{$cgiparams{'KEY'}}[0]cert.pem`;
636 exit(0);
637 } else {
638 $errormessage = $Lang::tr{'invalid key'};
639 }
640
641###
642### Remove ca certificate (step 2)
643###
644} elsif ($cgiparams{'ACTION'} eq $Lang::tr{'remove ca certificate'} && $cgiparams{'AREUSURE'} eq 'yes') {
645 &General::readhasharray("${General::swroot}/vpn/config", \%confighash);
646 &General::readhasharray("${General::swroot}/vpn/caconfig", \%cahash);
647
648 if ( -f "${General::swroot}/ca/$cahash{$cgiparams{'KEY'}}[0]cert.pem" ) {
649 foreach my $key (keys %confighash) {
650 my $test = `/usr/bin/openssl verify -CAfile ${General::swroot}/ca/$cahash{$cgiparams{'KEY'}}[0]cert.pem ${General::swroot}/certs/$confighash{$key}[1]cert.pem`;
651 if ($test =~ /: OK/) {
652 # Delete connection
ed84e8b8 653 system('/usr/local/bin/ipsecctrl', 'D', $key) if (&vpnenabled);
ac1cfefa
MT
654 unlink ("${General::swroot}/certs/$confighash{$key}[1]cert.pem");
655 unlink ("${General::swroot}/certs/$confighash{$key}[1].p12");
656 delete $confighash{$key};
657 &General::writehasharray("${General::swroot}/vpn/config", \%confighash);
658 &writeipsecfiles();
659 }
660 }
661 unlink ("${General::swroot}/ca/$cahash{$cgiparams{'KEY'}}[0]cert.pem");
662 delete $cahash{$cgiparams{'KEY'}};
663 &General::writehasharray("${General::swroot}/vpn/caconfig", \%cahash);
664 system('/usr/local/bin/ipsecctrl', 'R');
665 sleep $sleepDelay;
666 } else {
667 $errormessage = $Lang::tr{'invalid key'};
668 }
669###
670### Remove ca certificate (step 1)
671###
672} elsif ($cgiparams{'ACTION'} eq $Lang::tr{'remove ca certificate'}) {
673 &General::readhasharray("${General::swroot}/vpn/config", \%confighash);
674 &General::readhasharray("${General::swroot}/vpn/caconfig", \%cahash);
675
676 my $assignedcerts = 0;
677 if ( -f "${General::swroot}/ca/$cahash{$cgiparams{'KEY'}}[0]cert.pem" ) {
678 foreach my $key (keys %confighash) {
679 my $test = `/usr/bin/openssl verify -CAfile ${General::swroot}/ca/$cahash{$cgiparams{'KEY'}}[0]cert.pem ${General::swroot}/certs/$confighash{$key}[1]cert.pem`;
680 if ($test =~ /: OK/) {
681 $assignedcerts++;
682 }
683 }
684 if ($assignedcerts) {
685 &Header::showhttpheaders();
7d44bfee 686 &Header::openpage($Lang::tr{'ipsec'}, 1, '');
ed84e8b8
MT
687 &Header::openbigbox('100%', 'left', '', '');
688 &Header::openbox('100%', 'left', $Lang::tr{'are you sure'});
ac1cfefa 689 print <<END
ed84e8b8
MT
690 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
691 <table width='100%'>
692 <tr>
693 <td align='center'>
694 <input type='hidden' name='KEY' value='$cgiparams{'KEY'}' />
695 <input type='hidden' name='AREUSURE' value='yes' /></td>
696 </tr><tr>
697 <td align='center'>
698 <b><font color='${Header::colourred}'>$Lang::tr{'capswarning'}</font></b>
699 $Lang::tr{'connections are associated with this ca. deleting the ca will delete these connections as well.'}</td>
700 </tr><tr>
701 <td align='center'>
702 <input type='submit' name='ACTION' value='$Lang::tr{'remove ca certificate'}' />
703 <input type='submit' name='ACTION' value='$Lang::tr{'cancel'}' /></td>
704 </tr>
705 </table>
706 </form>
ac1cfefa
MT
707END
708 ;
709 &Header::closebox();
710 &Header::closebigbox();
711 &Header::closepage();
712 exit (0);
713 } else {
714 unlink ("${General::swroot}/ca/$cahash{$cgiparams{'KEY'}}[0]cert.pem");
715 delete $cahash{$cgiparams{'KEY'}};
716 &General::writehasharray("${General::swroot}/vpn/caconfig", \%cahash);
717 system('/usr/local/bin/ipsecctrl', 'R');
718 sleep $sleepDelay;
719 }
720 } else {
721 $errormessage = $Lang::tr{'invalid key'};
722 }
723
724###
725### Display root certificate
726###
727} elsif ($cgiparams{'ACTION'} eq $Lang::tr{'show root certificate'} ||
728 $cgiparams{'ACTION'} eq $Lang::tr{'show host certificate'}) {
729 my $output;
730 &Header::showhttpheaders();
7d44bfee 731 &Header::openpage($Lang::tr{'ipsec'}, 1, '');
ed84e8b8 732 &Header::openbigbox('100%', 'left', '', '');
ac1cfefa 733 if ($cgiparams{'ACTION'} eq $Lang::tr{'show root certificate'}) {
ed84e8b8 734 &Header::openbox('100%', 'left', "$Lang::tr{'root certificate'}:");
ac1cfefa
MT
735 $output = `/usr/bin/openssl x509 -text -in ${General::swroot}/ca/cacert.pem`;
736 } else {
ed84e8b8 737 &Header::openbox('100%', 'left', "$Lang::tr{'host certificate'}:");
ac1cfefa
MT
738 $output = `/usr/bin/openssl x509 -text -in ${General::swroot}/certs/hostcert.pem`;
739 }
740 $output = &Header::cleanhtml($output,"y");
741 print "<pre>$output</pre>\n";
742 &Header::closebox();
743 print "<div align='center'><a href='/cgi-bin/vpnmain.cgi'>$Lang::tr{'back'}</a></div>";
744 &Header::closebigbox();
745 &Header::closepage();
746 exit(0);
747
748###
ed84e8b8 749### Export root certificate to browser
ac1cfefa
MT
750###
751} elsif ($cgiparams{'ACTION'} eq $Lang::tr{'download root certificate'}) {
752 if ( -f "${General::swroot}/ca/cacert.pem" ) {
ed84e8b8
MT
753 print "Content-Type: application/force-download\n";
754 print "Content-Disposition: attachment; filename=cacert.pem\r\n\r\n";
ac1cfefa
MT
755 print `/usr/bin/openssl x509 -in ${General::swroot}/ca/cacert.pem`;
756 exit(0);
757 }
758###
ed84e8b8 759### Export host certificate to browser
ac1cfefa
MT
760###
761} elsif ($cgiparams{'ACTION'} eq $Lang::tr{'download host certificate'}) {
762 if ( -f "${General::swroot}/certs/hostcert.pem" ) {
ed84e8b8
MT
763 print "Content-Type: application/force-download\n";
764 print "Content-Disposition: attachment; filename=hostcert.pem\r\n\r\n";
ac1cfefa
MT
765 print `/usr/bin/openssl x509 -in ${General::swroot}/certs/hostcert.pem`;
766 exit(0);
767 }
768###
ed84e8b8 769### Form for generating/importing the caroot+host certificate
ac1cfefa
MT
770###
771} elsif ($cgiparams{'ACTION'} eq $Lang::tr{'generate root/host certificates'} ||
772 $cgiparams{'ACTION'} eq $Lang::tr{'upload p12 file'}) {
773
ac1cfefa
MT
774 if (-f "${General::swroot}/ca/cacert.pem") {
775 $errormessage = $Lang::tr{'valid root certificate already exists'};
ed84e8b8 776 goto ROOTCERT_SKIP;
ac1cfefa
MT
777 }
778
ed84e8b8
MT
779 &General::readhash("${General::swroot}/vpn/settings", \%vpnsettings);
780 # fill in initial values
781 if ($cgiparams{'ROOTCERT_HOSTNAME'} eq '') {
782 if (-e "${General::swroot}/red/active" && open(IPADDR, "${General::swroot}/red/local-ipaddress")) {
ac1cfefa
MT
783 my $ipaddr = <IPADDR>;
784 close IPADDR;
785 chomp ($ipaddr);
786 $cgiparams{'ROOTCERT_HOSTNAME'} = (gethostbyaddr(pack("C4", split(/\./, $ipaddr)), 2))[0];
787 if ($cgiparams{'ROOTCERT_HOSTNAME'} eq '') {
788 $cgiparams{'ROOTCERT_HOSTNAME'} = $ipaddr;
789 }
790 }
ed84e8b8 791 $cgiparams{'ROOTCERT_COUNTRY'} = $vpnsettings{'ROOTCERT_COUNTRY'} if (!$cgiparams{'ROOTCERT_COUNTRY'});
ac1cfefa 792 } elsif ($cgiparams{'ACTION'} eq $Lang::tr{'upload p12 file'}) {
ed84e8b8 793 &General::log("ipsec", "Importing from p12...");
ac1cfefa
MT
794
795 if (ref ($cgiparams{'FH'}) ne 'Fh') {
796 $errormessage = $Lang::tr{'there was no file upload'};
797 goto ROOTCERT_ERROR;
798 }
799
800 # Move uploaded certificate request to a temporary file
801 (my $fh, my $filename) = tempfile( );
802 if (copy ($cgiparams{'FH'}, $fh) != 1) {
803 $errormessage = $!;
804 goto ROOTCERT_ERROR;
805 }
806
ac1cfefa 807 # Extract the CA certificate from the file
ed84e8b8
MT
808 &General::log("ipsec", "Extracting caroot from p12...");
809 if (open(STDIN, "-|")) {
810 my $opt = " pkcs12 -cacerts -nokeys";
811 $opt .= " -in $filename";
812 $opt .= " -out /tmp/newcacert";
813 $errormessage = &callssl ($opt);
814 } else { #child
815 print "$cgiparams{'P12_PASS'}\n";
816 exit (0);
ac1cfefa
MT
817 }
818
ed84e8b8
MT
819 # Extract the Host certificate from the file
820 if (!$errormessage) {
821 &General::log("ipsec", "Extracting host cert from p12...");
822 if (open(STDIN, "-|")) {
823 my $opt = " pkcs12 -clcerts -nokeys";
824 $opt .= " -in $filename";
825 $opt .= " -out /tmp/newhostcert";
826 $errormessage = &callssl ($opt);
827 } else { #child
828 print "$cgiparams{'P12_PASS'}\n";
829 exit (0);
ac1cfefa
MT
830 }
831 }
832
833 # Extract the Host key from the file
ed84e8b8
MT
834 if (!$errormessage) {
835 &General::log("ipsec", "Extracting private key from p12...");
836 if (open(STDIN, "-|")) {
837 my $opt = " pkcs12 -nocerts -nodes";
838 $opt .= " -in $filename";
839 $opt .= " -out /tmp/newhostkey";
840 $errormessage = &callssl ($opt);
841 } else { #child
842 print "$cgiparams{'P12_PASS'}\n";
843 exit (0);
844 }
845 }
846
847 if (!$errormessage) {
848 &General::log("ipsec", "Moving cacert...");
849 move("/tmp/newcacert", "${General::swroot}/ca/cacert.pem");
850 $errormessage = "$Lang::tr{'certificate file move failed'}: $!" if ($? ne 0);
851 }
852
853 if (!$errormessage) {
854 &General::log("ipsec", "Moving host cert...");
855 move("/tmp/newhostcert", "${General::swroot}/certs/hostcert.pem");
856 $errormessage = "$Lang::tr{'certificate file move failed'}: $!" if ($? ne 0);
ac1cfefa
MT
857 }
858
ed84e8b8
MT
859 if (!$errormessage) {
860 &General::log("ipsec", "Moving private key...");
861 move("/tmp/newhostkey", "${General::swroot}/certs/hostkey.pem");
862 $errormessage = "$Lang::tr{'certificate file move failed'}: $!" if ($? ne 0);
ac1cfefa 863 }
ed84e8b8
MT
864
865 #cleanup temp files
866 unlink ($filename);
867 unlink ('/tmp/newcacert');
868 unlink ('/tmp/newhostcert');
869 unlink ('/tmp/newhostkey');
870 if ($errormessage) {
ac1cfefa
MT
871 unlink ("${General::swroot}/ca/cacert.pem");
872 unlink ("${General::swroot}/certs/hostcert.pem");
873 unlink ("${General::swroot}/certs/hostkey.pem");
874 goto ROOTCERT_ERROR;
ac1cfefa
MT
875 }
876
ed84e8b8
MT
877 # Create empty CRL cannot be done because we don't have
878 # the private key for this CAROOT
5fd30232 879 # IPFire can only import certificates
ed84e8b8
MT
880
881 &General::log("ipsec", "p12 import completed!");
882 &cleanssldatabase();
ac1cfefa
MT
883 goto ROOTCERT_SUCCESS;
884
885 } elsif ($cgiparams{'ROOTCERT_COUNTRY'} ne '') {
886
887 # Validate input since the form was submitted
888 if ($cgiparams{'ROOTCERT_ORGANIZATION'} eq ''){
889 $errormessage = $Lang::tr{'organization cant be empty'};
890 goto ROOTCERT_ERROR;
891 }
892 if (length($cgiparams{'ROOTCERT_ORGANIZATION'}) >60) {
893 $errormessage = $Lang::tr{'organization too long'};
894 goto ROOTCERT_ERROR;
895 }
896 if ($cgiparams{'ROOTCERT_ORGANIZATION'} !~ /^[a-zA-Z0-9 ,\.\-_]*$/) {
897 $errormessage = $Lang::tr{'invalid input for organization'};
898 goto ROOTCERT_ERROR;
899 }
900 if ($cgiparams{'ROOTCERT_HOSTNAME'} eq ''){
901 $errormessage = $Lang::tr{'hostname cant be empty'};
902 goto ROOTCERT_ERROR;
903 }
904 unless (&General::validfqdn($cgiparams{'ROOTCERT_HOSTNAME'}) || &General::validip($cgiparams{'ROOTCERT_HOSTNAME'})) {
905 $errormessage = $Lang::tr{'invalid input for hostname'};
906 goto ROOTCERT_ERROR;
907 }
908 if ($cgiparams{'ROOTCERT_EMAIL'} ne '' && (! &General::validemail($cgiparams{'ROOTCERT_EMAIL'}))) {
909 $errormessage = $Lang::tr{'invalid input for e-mail address'};
910 goto ROOTCERT_ERROR;
911 }
912 if (length($cgiparams{'ROOTCERT_EMAIL'}) > 40) {
913 $errormessage = $Lang::tr{'e-mail address too long'};
914 goto ROOTCERT_ERROR;
915 }
916 if ($cgiparams{'ROOTCERT_OU'} ne '' && $cgiparams{'ROOTCERT_OU'} !~ /^[a-zA-Z0-9 ,\.\-_]*$/) {
917 $errormessage = $Lang::tr{'invalid input for department'};
918 goto ROOTCERT_ERROR;
919 }
920 if ($cgiparams{'ROOTCERT_CITY'} ne '' && $cgiparams{'ROOTCERT_CITY'} !~ /^[a-zA-Z0-9 ,\.\-_]*$/) {
921 $errormessage = $Lang::tr{'invalid input for city'};
922 goto ROOTCERT_ERROR;
923 }
924 if ($cgiparams{'ROOTCERT_STATE'} ne '' && $cgiparams{'ROOTCERT_STATE'} !~ /^[a-zA-Z0-9 ,\.\-_]*$/) {
925 $errormessage = $Lang::tr{'invalid input for state or province'};
926 goto ROOTCERT_ERROR;
927 }
928 if ($cgiparams{'ROOTCERT_COUNTRY'} !~ /^[A-Z]*$/) {
929 $errormessage = $Lang::tr{'invalid input for country'};
930 goto ROOTCERT_ERROR;
931 }
ed84e8b8
MT
932 #the exact syntax is a list comma separated of
933 # email:any-validemail
934 # URI: a uniform resource indicator
935 # DNS: a DNS domain name
936 # RID: a registered OBJECT IDENTIFIER
937 # IP: an IP address
938 # example: email:franck@foo.com,IP:10.0.0.10,DNS:franck.foo.com
939
940 if ($cgiparams{'SUBJECTALTNAME'} ne '' && $cgiparams{'SUBJECTALTNAME'} !~ /^(email|URI|DNS|RID|IP):[a-zA-Z0-9 :\/,\.\-_@]*$/) {
941 $errormessage = $Lang::tr{'vpn altname syntax'};
942 goto VPNCONF_ERROR;
943 }
ac1cfefa
MT
944
945 # Copy the cgisettings to vpnsettings and save the configfile
946 $vpnsettings{'ROOTCERT_ORGANIZATION'} = $cgiparams{'ROOTCERT_ORGANIZATION'};
947 $vpnsettings{'ROOTCERT_HOSTNAME'} = $cgiparams{'ROOTCERT_HOSTNAME'};
948 $vpnsettings{'ROOTCERT_EMAIL'} = $cgiparams{'ROOTCERT_EMAIL'};
949 $vpnsettings{'ROOTCERT_OU'} = $cgiparams{'ROOTCERT_OU'};
950 $vpnsettings{'ROOTCERT_CITY'} = $cgiparams{'ROOTCERT_CITY'};
951 $vpnsettings{'ROOTCERT_STATE'} = $cgiparams{'ROOTCERT_STATE'};
952 $vpnsettings{'ROOTCERT_COUNTRY'} = $cgiparams{'ROOTCERT_COUNTRY'};
953 &General::writehash("${General::swroot}/vpn/settings", \%vpnsettings);
954
955 # Replace empty strings with a .
956 (my $ou = $cgiparams{'ROOTCERT_OU'}) =~ s/^\s*$/\./;
957 (my $city = $cgiparams{'ROOTCERT_CITY'}) =~ s/^\s*$/\./;
958 (my $state = $cgiparams{'ROOTCERT_STATE'}) =~ s/^\s*$/\./;
959
960 # Create the CA certificate
ed84e8b8
MT
961 if (!$errormessage) {
962 &General::log("ipsec", "Creating cacert...");
963 if (open(STDIN, "-|")) {
964 my $opt = " req -x509 -nodes -rand /proc/interrupts:/proc/net/rt_cache";
965 $opt .= " -days 999999";
966 $opt .= " -newkey rsa:2048";
967 $opt .= " -keyout ${General::swroot}/private/cakey.pem";
968 $opt .= " -out ${General::swroot}/ca/cacert.pem";
969
970 $errormessage = &callssl ($opt);
971 } else { #child
972 print "$cgiparams{'ROOTCERT_COUNTRY'}\n";
973 print "$state\n";
974 print "$city\n";
975 print "$cgiparams{'ROOTCERT_ORGANIZATION'}\n";
976 print "$ou\n";
977 print "$cgiparams{'ROOTCERT_ORGANIZATION'} CA\n";
978 print "$cgiparams{'ROOTCERT_EMAIL'}\n";
979 exit (0);
ac1cfefa
MT
980 }
981 }
982
983 # Create the Host certificate request
ed84e8b8
MT
984 if (!$errormessage) {
985 &General::log("ipsec", "Creating host cert...");
986 if (open(STDIN, "-|")) {
987 my $opt = " req -nodes -rand /proc/interrupts:/proc/net/rt_cache";
988 $opt .= " -newkey rsa:1024";
989 $opt .= " -keyout ${General::swroot}/certs/hostkey.pem";
990 $opt .= " -out ${General::swroot}/certs/hostreq.pem";
991 $errormessage = &callssl ($opt);
992 } else { #child
993 print "$cgiparams{'ROOTCERT_COUNTRY'}\n";
994 print "$state\n";
995 print "$city\n";
996 print "$cgiparams{'ROOTCERT_ORGANIZATION'}\n";
997 print "$ou\n";
998 print "$cgiparams{'ROOTCERT_HOSTNAME'}\n";
999 print "$cgiparams{'ROOTCERT_EMAIL'}\n";
1000 print ".\n";
1001 print ".\n";
1002 exit (0);
ac1cfefa
MT
1003 }
1004 }
ed84e8b8 1005
ac1cfefa 1006 # Sign the host certificate request
ed84e8b8
MT
1007 if (!$errormessage) {
1008 &General::log("ipsec", "Self signing host cert...");
1009
1010 #No easy way for specifying the contain of subjectAltName without writing a config file...
1011 my ($fh, $v3extname) = tempfile ('/tmp/XXXXXXXX');
1012 print $fh <<END
1013 basicConstraints=CA:FALSE
1014 nsComment="OpenSSL Generated Certificate"
1015 subjectKeyIdentifier=hash
1016 authorityKeyIdentifier=keyid,issuer:always
d06f6e7c 1017 extendedKeyUsage = serverAuth
ed84e8b8
MT
1018END
1019;
1020 print $fh "subjectAltName=$cgiparams{'SUBJECTALTNAME'}" if ($cgiparams{'SUBJECTALTNAME'});
1021 close ($fh);
1022
1023 my $opt = " ca -days 999999";
1024 $opt .= " -batch -notext";
1025 $opt .= " -in ${General::swroot}/certs/hostreq.pem";
1026 $opt .= " -out ${General::swroot}/certs/hostcert.pem";
1027 $opt .= " -extfile $v3extname";
1028 $errormessage = &callssl ($opt);
1029 unlink ("${General::swroot}/certs/hostreq.pem"); #no more needed
1030 unlink ($v3extname);
ac1cfefa
MT
1031 }
1032
1033 # Create an empty CRL
ed84e8b8
MT
1034 if (!$errormessage) {
1035 &General::log("ipsec", "Creating emptycrl...");
1036 my $opt = " ca -gencrl";
1037 $opt .= " -out ${General::swroot}/crls/cacrl.pem";
1038 $errormessage = &callssl ($opt);
1039 }
1040
1041 # Successfully build CA / CERT!
1042 if (!$errormessage) {
ac1cfefa 1043 &cleanssldatabase();
ed84e8b8 1044 goto ROOTCERT_SUCCESS;
ac1cfefa 1045 }
ed84e8b8
MT
1046
1047 #Cleanup
1048 unlink ("${General::swroot}/ca/cacert.pem");
1049 unlink ("${General::swroot}/certs/hostkey.pem");
1050 unlink ("${General::swroot}/certs/hostcert.pem");
1051 unlink ("${General::swroot}/crls/cacrl.pem");
1052 &cleanssldatabase();
ac1cfefa 1053 }
ed84e8b8 1054
ac1cfefa 1055 ROOTCERT_ERROR:
ed84e8b8 1056 &Header::showhttpheaders();
7d44bfee 1057 &Header::openpage($Lang::tr{'ipsec'}, 1, '');
ed84e8b8
MT
1058 &Header::openbigbox('100%', 'left', '', $errormessage);
1059 if ($errormessage) {
1060 &Header::openbox('100%', 'left', $Lang::tr{'error messages'});
1061 print "<class name='base'>$errormessage";
1062 print "&nbsp;</class>";
1063 &Header::closebox();
1064 }
1065 &Header::openbox('100%', 'left', "$Lang::tr{'generate root/host certificates'}:");
1066 print <<END
1067 <form method='post' enctype='multipart/form-data' action='$ENV{'SCRIPT_NAME'}'>
1068 <table width='100%' border='0' cellspacing='1' cellpadding='0'>
1069 <tr><td width='40%' class='base'>$Lang::tr{'organization name'}:</td>
1070 <td width='60%' class='base' nowrap='nowrap'><input type='text' name='ROOTCERT_ORGANIZATION' value='$cgiparams{'ROOTCERT_ORGANIZATION'}' size='32' /></td></tr>
15f635cc 1071 <tr><td class='base'>$Lang::tr{'ipfires hostname'}:</td>
ed84e8b8
MT
1072 <td class='base' nowrap='nowrap'><input type='text' name='ROOTCERT_HOSTNAME' value='$cgiparams{'ROOTCERT_HOSTNAME'}' size='32' /></td></tr>
1073 <tr><td class='base'>$Lang::tr{'your e-mail'}:&nbsp;<img src='/blob.gif' alt='*' /></td>
1074 <td class='base' nowrap='nowrap'><input type='text' name='ROOTCERT_EMAIL' value='$cgiparams{'ROOTCERT_EMAIL'}' size='32' /></td></tr>
1075 <tr><td class='base'>$Lang::tr{'your department'}:&nbsp;<img src='/blob.gif' alt='*' /></td>
1076 <td class='base' nowrap='nowrap'><input type='text' name='ROOTCERT_OU' value='$cgiparams{'ROOTCERT_OU'}' size='32' /></td></tr>
1077 <tr><td class='base'>$Lang::tr{'city'}:&nbsp;<img src='/blob.gif' alt='*' /></td>
1078 <td class='base' nowrap='nowrap'><input type='text' name='ROOTCERT_CITY' value='$cgiparams{'ROOTCERT_CITY'}' size='32' /></td></tr>
1079 <tr><td class='base'>$Lang::tr{'state or province'}:&nbsp;<img src='/blob.gif' alt='*' /></td>
1080 <td class='base' nowrap='nowrap'><input type='text' name='ROOTCERT_STATE' value='$cgiparams{'ROOTCERT_STATE'}' size='32' /></td></tr>
1081 <tr><td class='base'>$Lang::tr{'country'}:</td>
1082 <td class='base'><select name='ROOTCERT_COUNTRY'>
ac1cfefa 1083END
ed84e8b8
MT
1084 ;
1085 foreach my $country (sort keys %{Countries::countries}) {
1086 print "<option value='$Countries::countries{$country}'";
1087 if ( $Countries::countries{$country} eq $cgiparams{'ROOTCERT_COUNTRY'} ) {
1088 print " selected='selected'";
1089 }
1090 print ">$country</option>";
ac1cfefa 1091 }
ed84e8b8
MT
1092 print <<END
1093 </select></td></tr>
1094 <tr><td class='base'>$Lang::tr{'vpn subjectaltname'} (subjectAltName=email:*,URI:*,DNS:*,RID:*) <img src='/blob.gif' alt='*' /></td>
1095 <td class='base' nowrap='nowrap'><input type='text' name='SUBJECTALTNAME' value='$cgiparams{'SUBJECTALTNAME'}' size='32' /></td></tr>
1096 <tr><td>&nbsp;</td>
1097 <td><br /><input type='submit' name='ACTION' value='$Lang::tr{'generate root/host certificates'}' /><br /><br /></td></tr>
1098 <tr><td class='base' colspan='2' align='left'>
1099 <b><font color='${Header::colourred}'>$Lang::tr{'capswarning'}</font></b>:
1100 $Lang::tr{'generating the root and host certificates may take a long time. it can take up to several minutes on older hardware. please be patient'}
1101 </td></tr>
0afd8493 1102 <tr><td colspan='2'><hr></td></tr>
ed84e8b8
MT
1103 <tr><td class='base' nowrap='nowrap'>$Lang::tr{'upload p12 file'}:</td>
1104 <td nowrap='nowrap'><input type='file' name='FH' size='32' /></td></tr>
1105 <tr><td class='base'>$Lang::tr{'pkcs12 file password'}:&nbsp;<img src='/blob.gif' alt='*' /></td>
1106 <td class='base' nowrap='nowrap'><input type='password' name='P12_PASS' value='$cgiparams{'P12_PASS'}' size='32' /></td></tr>
1107 <tr><td>&nbsp;</td>
1108 <td><input type='submit' name='ACTION' value='$Lang::tr{'upload p12 file'}' /></td></tr>
1109 <tr><td class='base' colspan='2' align='left'>
1110 <img src='/blob.gif' alt='*' />&nbsp;$Lang::tr{'this field may be blank'}</td></tr>
1111 </table></form>
1112END
1113 ;
1114 &Header::closebox();
1115 &Header::closebigbox();
1116 &Header::closepage();
1117 exit(0);
ac1cfefa
MT
1118
1119 ROOTCERT_SUCCESS:
ed84e8b8 1120 if (&vpnenabled) {
ac1cfefa
MT
1121 system('/usr/local/bin/ipsecctrl', 'S');
1122 sleep $sleepDelay;
1123 }
ed84e8b8 1124 ROOTCERT_SKIP:
ac1cfefa 1125###
ed84e8b8 1126### Export PKCS12 file to browser
ac1cfefa
MT
1127###
1128} elsif ($cgiparams{'ACTION'} eq $Lang::tr{'download pkcs12 file'}) {
1129 &General::readhasharray("${General::swroot}/vpn/config", \%confighash);
ed84e8b8
MT
1130 print "Content-Type: application/force-download\n";
1131 print "Content-Disposition: attachment; filename=" . $confighash{$cgiparams{'KEY'}}[1] . ".p12\r\n";
ac1cfefa
MT
1132 print "Content-Type: application/octet-stream\r\n\r\n";
1133 print `/bin/cat ${General::swroot}/certs/$confighash{$cgiparams{'KEY'}}[1].p12`;
1134 exit (0);
1135
1136###
1137### Display certificate
1138###
1139} elsif ($cgiparams{'ACTION'} eq $Lang::tr{'show certificate'}) {
1140 &General::readhasharray("${General::swroot}/vpn/config", \%confighash);
1141
1142 if ( -f "${General::swroot}/certs/$confighash{$cgiparams{'KEY'}}[1]cert.pem") {
1143 &Header::showhttpheaders();
7d44bfee 1144 &Header::openpage($Lang::tr{'ipsec'}, 1, '');
ed84e8b8
MT
1145 &Header::openbigbox('100%', 'left', '', '');
1146 &Header::openbox('100%', 'left', "$Lang::tr{'cert'}:");
ac1cfefa
MT
1147 my $output = `/usr/bin/openssl x509 -text -in ${General::swroot}/certs/$confighash{$cgiparams{'KEY'}}[1]cert.pem`;
1148 $output = &Header::cleanhtml($output,"y");
1149 print "<pre>$output</pre>\n";
1150 &Header::closebox();
1151 print "<div align='center'><a href='/cgi-bin/vpnmain.cgi'>$Lang::tr{'back'}</a></div>";
1152 &Header::closebigbox();
1153 &Header::closepage();
1154 exit(0);
1155 }
1156
1157###
ed84e8b8 1158### Export Certificate to browser
ac1cfefa
MT
1159###
1160} elsif ($cgiparams{'ACTION'} eq $Lang::tr{'download certificate'}) {
1161 &General::readhasharray("${General::swroot}/vpn/config", \%confighash);
1162
1163 if ( -f "${General::swroot}/certs/$confighash{$cgiparams{'KEY'}}[1]cert.pem") {
ed84e8b8
MT
1164 print "Content-Type: application/force-download\n";
1165 print "Content-Disposition: attachment; filename=" . $confighash{$cgiparams{'KEY'}}[1] . "cert.pem\n\n";
ac1cfefa
MT
1166 print `/bin/cat ${General::swroot}/certs/$confighash{$cgiparams{'KEY'}}[1]cert.pem`;
1167 exit (0);
1168 }
1169
1170###
1171### Enable/Disable connection
1172###
1173} elsif ($cgiparams{'ACTION'} eq $Lang::tr{'toggle enable disable'}) {
1174
1175 &General::readhash("${General::swroot}/vpn/settings", \%vpnsettings);
1176 &General::readhasharray("${General::swroot}/vpn/config", \%confighash);
1177
1178 if ($confighash{$cgiparams{'KEY'}}) {
1179 if ($confighash{$cgiparams{'KEY'}}[0] eq 'off') {
1180 $confighash{$cgiparams{'KEY'}}[0] = 'on';
1181 &General::writehasharray("${General::swroot}/vpn/config", \%confighash);
1182 &writeipsecfiles();
ed84e8b8 1183 system('/usr/local/bin/ipsecctrl', 'S', $cgiparams{'KEY'}) if (&vpnenabled);
ac1cfefa 1184 } else {
5fd30232 1185 system('/usr/local/bin/ipsecctrl', 'D', $cgiparams{'KEY'}) if (&vpnenabled);
ac1cfefa 1186 $confighash{$cgiparams{'KEY'}}[0] = 'off';
ac1cfefa
MT
1187 &General::writehasharray("${General::swroot}/vpn/config", \%confighash);
1188 &writeipsecfiles();
1189 }
ed84e8b8 1190 sleep $sleepDelay;
ac1cfefa
MT
1191 } else {
1192 $errormessage = $Lang::tr{'invalid key'};
1193 }
1194
1195###
1196### Restart connection
1197###
1198} elsif ($cgiparams{'ACTION'} eq $Lang::tr{'restart'}) {
1199 &General::readhash("${General::swroot}/vpn/settings", \%vpnsettings);
1200 &General::readhasharray("${General::swroot}/vpn/config", \%confighash);
1201
1202 if ($confighash{$cgiparams{'KEY'}}) {
ed84e8b8 1203 if (&vpnenabled) {
ac1cfefa
MT
1204 system('/usr/local/bin/ipsecctrl', 'S', $cgiparams{'KEY'});
1205 sleep $sleepDelay;
1206 }
1207 } else {
1208 $errormessage = $Lang::tr{'invalid key'};
1209 }
1210
1211###
1212### Remove connection
1213###
1214} elsif ($cgiparams{'ACTION'} eq $Lang::tr{'remove'}) {
1215 &General::readhash("${General::swroot}/vpn/settings", \%vpnsettings);
1216 &General::readhasharray("${General::swroot}/vpn/config", \%confighash);
1217
1218 if ($confighash{$cgiparams{'KEY'}}) {
ed84e8b8 1219 system('/usr/local/bin/ipsecctrl', 'D', $cgiparams{'KEY'}) if (&vpnenabled);
ac1cfefa
MT
1220 unlink ("${General::swroot}/certs/$confighash{$cgiparams{'KEY'}}[1]cert.pem");
1221 unlink ("${General::swroot}/certs/$confighash{$cgiparams{'KEY'}}[1].p12");
1222 delete $confighash{$cgiparams{'KEY'}};
1223 &General::writehasharray("${General::swroot}/vpn/config", \%confighash);
1224 &writeipsecfiles();
1225 } else {
1226 $errormessage = $Lang::tr{'invalid key'};
1227 }
1228
1229###
1230### Choose between adding a host-net or net-net connection
1231###
1232} elsif ($cgiparams{'ACTION'} eq $Lang::tr{'add'} && $cgiparams{'TYPE'} eq '') {
ac1cfefa 1233 &Header::showhttpheaders();
7d44bfee 1234 &Header::openpage($Lang::tr{'ipsec'}, 1, '');
ed84e8b8
MT
1235 &Header::openbigbox('100%', 'left', '', '');
1236 &Header::openbox('100%', 'left', $Lang::tr{'connection type'});
ac1cfefa 1237 print <<END
ed84e8b8 1238 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
ac1cfefa 1239 <b>$Lang::tr{'connection type'}:</b><br />
ed84e8b8
MT
1240 <table>
1241 <tr><td><input type='radio' name='TYPE' value='host' checked='checked' /></td>
1242 <td class='base'>$Lang::tr{'host to net vpn'}</td>
1243 </tr><tr>
1244 <td><input type='radio' name='TYPE' value='net' /></td>
1245 <td class='base'>$Lang::tr{'net to net vpn'}</td>
1246 </tr><tr>
1247 <td align='center' colspan='2'><input type='submit' name='ACTION' value='$Lang::tr{'add'}' /></td>
1248 </tr>
1249 </table></form>
ac1cfefa
MT
1250END
1251 ;
1252 &Header::closebox();
1253 &Header::closebigbox();
1254 &Header::closepage();
1255 exit (0);
1256###
ed84e8b8 1257### Adding/Editing/Saving a connection
ac1cfefa
MT
1258###
1259} elsif (($cgiparams{'ACTION'} eq $Lang::tr{'add'}) ||
1260 ($cgiparams{'ACTION'} eq $Lang::tr{'edit'}) ||
1261 ($cgiparams{'ACTION'} eq $Lang::tr{'save'} && $cgiparams{'ADVANCED'} eq '')) {
1262
1263 &General::readhash("${General::swroot}/vpn/settings", \%vpnsettings);
1264 &General::readhasharray("${General::swroot}/vpn/caconfig", \%cahash);
1265 &General::readhasharray("${General::swroot}/vpn/config", \%confighash);
1266
1267 if ($cgiparams{'ACTION'} eq $Lang::tr{'edit'}) {
1268 if (! $confighash{$cgiparams{'KEY'}}[0]) {
1269 $errormessage = $Lang::tr{'invalid key'};
1270 goto VPNCONF_END;
1271 }
ed84e8b8
MT
1272 $cgiparams{'ENABLED'} = $confighash{$cgiparams{'KEY'}}[0];
1273 $cgiparams{'NAME'} = $confighash{$cgiparams{'KEY'}}[1];
1274 $cgiparams{'TYPE'} = $confighash{$cgiparams{'KEY'}}[3];
1275 $cgiparams{'AUTH'} = $confighash{$cgiparams{'KEY'}}[4];
1276 $cgiparams{'PSK'} = $confighash{$cgiparams{'KEY'}}[5];
5fd30232 1277 #$cgiparams{'free'} = $confighash{$cgiparams{'KEY'}}[6];
ed84e8b8
MT
1278 $cgiparams{'LOCAL_ID'} = $confighash{$cgiparams{'KEY'}}[7];
1279 $cgiparams{'LOCAL_SUBNET'} = $confighash{$cgiparams{'KEY'}}[8];
1280 $cgiparams{'REMOTE_ID'} = $confighash{$cgiparams{'KEY'}}[9];
1281 $cgiparams{'REMOTE'} = $confighash{$cgiparams{'KEY'}}[10];
1282 $cgiparams{'REMOTE_SUBNET'} = $confighash{$cgiparams{'KEY'}}[11];
1283 $cgiparams{'REMARK'} = $confighash{$cgiparams{'KEY'}}[25];
ed84e8b8 1284 $cgiparams{'DPD_ACTION'} = $confighash{$cgiparams{'KEY'}}[27];
e2e4ed01 1285 $cgiparams{'IKE_VERSION'} = $confighash{$cgiparams{'KEY'}}[29];
ed84e8b8
MT
1286 $cgiparams{'IKE_ENCRYPTION'} = $confighash{$cgiparams{'KEY'}}[18];
1287 $cgiparams{'IKE_INTEGRITY'} = $confighash{$cgiparams{'KEY'}}[19];
1288 $cgiparams{'IKE_GROUPTYPE'} = $confighash{$cgiparams{'KEY'}}[20];
1289 $cgiparams{'IKE_LIFETIME'} = $confighash{$cgiparams{'KEY'}}[16];
1290 $cgiparams{'ESP_ENCRYPTION'} = $confighash{$cgiparams{'KEY'}}[21];
1291 $cgiparams{'ESP_INTEGRITY'} = $confighash{$cgiparams{'KEY'}}[22];
1292 $cgiparams{'ESP_GROUPTYPE'} = $confighash{$cgiparams{'KEY'}}[23];
1293 $cgiparams{'ESP_KEYLIFE'} = $confighash{$cgiparams{'KEY'}}[17];
ed84e8b8
MT
1294 $cgiparams{'COMPRESSION'} = $confighash{$cgiparams{'KEY'}}[13];
1295 $cgiparams{'ONLY_PROPOSED'} = $confighash{$cgiparams{'KEY'}}[24];
1296 $cgiparams{'PFS'} = $confighash{$cgiparams{'KEY'}}[28];
1297 $cgiparams{'VHOST'} = $confighash{$cgiparams{'KEY'}}[14];
4e156911
AM
1298 $cgiparams{'DPD_TIMEOUT'} = $confighash{$cgiparams{'KEY'}}[30];
1299 $cgiparams{'DPD_DELAY'} = $confighash{$cgiparams{'KEY'}}[31];
ac1cfefa 1300
cbb3a8f9
MT
1301 if (!$cgiparams{'DPD_DELAY'}) {
1302 $cgiparams{'DPD_DELAY'} = 30;
1303 }
1304
1305 if (!$cgiparams{'DPD_TIMEOUT'}) {
1306 $cgiparams{'DPD_TIMEOUT'} = 120;
1307 }
1308
ac1cfefa
MT
1309 } elsif ($cgiparams{'ACTION'} eq $Lang::tr{'save'}) {
1310 $cgiparams{'REMARK'} = &Header::cleanhtml($cgiparams{'REMARK'});
1311 if ($cgiparams{'TYPE'} !~ /^(host|net)$/) {
1312 $errormessage = $Lang::tr{'connection type is invalid'};
1313 goto VPNCONF_ERROR;
1314 }
1315
1316 if ($cgiparams{'NAME'} !~ /^[a-zA-Z0-9]+$/) {
1317 $errormessage = $Lang::tr{'name must only contain characters'};
1318 goto VPNCONF_ERROR;
1319 }
1320
1321 if ($cgiparams{'NAME'} =~ /^(host|01|block|private|clear|packetdefault)$/) {
1322 $errormessage = $Lang::tr{'name is invalid'};
1323 goto VPNCONF_ERROR;
1324 }
1325
1326 if (length($cgiparams{'NAME'}) >60) {
1327 $errormessage = $Lang::tr{'name too long'};
1328 goto VPNCONF_ERROR;
1329 }
1330
ac1cfefa 1331 # Check if there is no other entry with this name
ed84e8b8 1332 if (! $cgiparams{'KEY'}) { #only for add
ac1cfefa
MT
1333 foreach my $key (keys %confighash) {
1334 if ($confighash{$key}[1] eq $cgiparams{'NAME'}) {
1335 $errormessage = $Lang::tr{'a connection with this name already exists'};
1336 goto VPNCONF_ERROR;
1337 }
1338 }
1339 }
1340
1341 if (($cgiparams{'TYPE'} eq 'net') && (! $cgiparams{'REMOTE'})) {
1342 $errormessage = $Lang::tr{'invalid input for remote host/ip'};
1343 goto VPNCONF_ERROR;
1344 }
1345
1346 if ($cgiparams{'REMOTE'}) {
528cb9a7 1347 if (($cgiparams{'REMOTE'} ne '%any') && (! &General::validip($cgiparams{'REMOTE'}))) {
ac1cfefa
MT
1348 if (! &General::validfqdn ($cgiparams{'REMOTE'})) {
1349 $errormessage = $Lang::tr{'invalid input for remote host/ip'};
1350 goto VPNCONF_ERROR;
1351 } else {
1352 if (&valid_dns_host($cgiparams{'REMOTE'})) {
1353 $warnmessage = "$Lang::tr{'check vpn lr'} $cgiparams{'REMOTE'}. $Lang::tr{'dns check failed'}";
1354 }
1355 }
1356 }
1357 }
1358
1359 unless (&General::validipandmask($cgiparams{'LOCAL_SUBNET'})) {
1360 $errormessage = $Lang::tr{'local subnet is invalid'};
1361 goto VPNCONF_ERROR;
1362 }
1363
ed84e8b8
MT
1364 # Allow only one roadwarrior/psk without remote IP-address
1365 if ($cgiparams{'REMOTE'} eq '' && $cgiparams{'AUTH'} eq 'psk') {
ac1cfefa 1366 foreach my $key (keys %confighash) {
ed84e8b8
MT
1367 if ( ($cgiparams{'KEY'} ne $key) &&
1368 ($confighash{$key}[4] eq 'psk') &&
1369 ($confighash{$key}[10] eq '') ) {
ac1cfefa
MT
1370 $errormessage = $Lang::tr{'you can only define one roadwarrior connection when using pre-shared key authentication'};
1371 goto VPNCONF_ERROR;
1372 }
1373 }
1374 }
1375 if (($cgiparams{'TYPE'} eq 'net') && (! &General::validipandmask($cgiparams{'REMOTE_SUBNET'}))) {
1376 $errormessage = $Lang::tr{'remote subnet is invalid'};
1377 goto VPNCONF_ERROR;
1378 }
1379
1380 if ($cgiparams{'ENABLED'} !~ /^(on|off)$/) {
1381 $errormessage = $Lang::tr{'invalid input'};
1382 goto VPNCONF_ERROR;
1383 }
1384 if ($cgiparams{'EDIT_ADVANCED'} !~ /^(on|off)$/) {
1385 $errormessage = $Lang::tr{'invalid input'};
1386 goto VPNCONF_ERROR;
1387 }
1388
ed84e8b8
MT
1389 # Allow nothing or a string (DN,FDQN,) beginning with @
1390 # with no comma but slashes between RID eg @O=FR/C=Paris/OU=myhome/CN=franck
83371d5f
MT
1391 if ( ($cgiparams{'LOCAL_ID'} !~ /^(|[\w.-]*@[\w. =*\/-]+|\d+\.\d+\.\d+\.\d+)$/) ||
1392 ($cgiparams{'REMOTE_ID'} !~ /^(|[\w.-]*@[\w. =*\/-]+|\d+\.\d+\.\d+\.\d+)$/) ||
ac1cfefa
MT
1393 (($cgiparams{'REMOTE_ID'} eq $cgiparams{'LOCAL_ID'}) && ($cgiparams{'LOCAL_ID'} ne ''))
1394 ) {
ed84e8b8
MT
1395 $errormessage = $Lang::tr{'invalid local-remote id'} . '<br />' .
1396 'DER_ASN1_DN: @c=FR/ou=Paris/ou=Home/cn=*<br />' .
5fd30232
MT
1397 'FQDN: @ipfire.org<br />' .
1398 'USER_FQDN: info@ipfire.org<br />' .
83371d5f 1399 'IPV4_ADDR: 123.123.123.123';
ac1cfefa
MT
1400 goto VPNCONF_ERROR;
1401 }
ed84e8b8
MT
1402 # If Auth is DN, verify existance of Remote ID.
1403 if ( $cgiparams{'REMOTE_ID'} eq '' && (
1404 $cgiparams{'AUTH'} eq 'auth-dn'|| # while creation
1405 $confighash{$cgiparams{'KEY'}}[2] eq '%auth-dn')){ # while editing
1406 $errormessage = $Lang::tr{'vpn missing remote id'};
1407 goto VPNCONF_ERROR;
1408 }
1409
4a29f854
AF
1410#temporary disabled (BUG 10294)
1411# if ($cgiparams{'TYPE'} eq 'net'){
1412# $errormessage=&General::checksubnets($cgiparams{'NAME'},$cgiparams{'REMOTE_SUBNET'});
1413# if ($errormessage ne ''){
1414# goto VPNCONF_ERROR;
1415# }
1416#
1417# }
ed84e8b8 1418 if ($cgiparams{'AUTH'} eq 'psk') {
ac1cfefa
MT
1419 if (! length($cgiparams{'PSK'}) ) {
1420 $errormessage = $Lang::tr{'pre-shared key is too short'};
1421 goto VPNCONF_ERROR;
1422 }
ed84e8b8
MT
1423 if ($cgiparams{'PSK'} =~ /'/) {
1424 $cgiparams{'PSK'} =~ tr/'/ /;
ac1cfefa
MT
1425 $errormessage = $Lang::tr{'invalid characters found in pre-shared key'};
1426 goto VPNCONF_ERROR;
1427 }
1428 } elsif ($cgiparams{'AUTH'} eq 'certreq') {
1429 if ($cgiparams{'KEY'}) {
1430 $errormessage = $Lang::tr{'cant change certificates'};
1431 goto VPNCONF_ERROR;
1432 }
1433 if (ref ($cgiparams{'FH'}) ne 'Fh') {
1434 $errormessage = $Lang::tr{'there was no file upload'};
1435 goto VPNCONF_ERROR;
1436 }
1437
1438 # Move uploaded certificate request to a temporary file
1439 (my $fh, my $filename) = tempfile( );
1440 if (copy ($cgiparams{'FH'}, $fh) != 1) {
1441 $errormessage = $!;
1442 goto VPNCONF_ERROR;
1443 }
1444
ed84e8b8
MT
1445 # Sign the certificate request
1446 &General::log("ipsec", "Signing your cert $cgiparams{'NAME'}...");
1447 my $opt = " ca -days 999999";
1448 $opt .= " -batch -notext";
1449 $opt .= " -in $filename";
1450 $opt .= " -out ${General::swroot}/certs/$cgiparams{'NAME'}cert.pem";
1451
1452 if ( $errormessage = &callssl ($opt) ) {
ac1cfefa
MT
1453 unlink ($filename);
1454 unlink ("${General::swroot}/certs/$cgiparams{'NAME'}cert.pem");
1455 &cleanssldatabase();
1456 goto VPNCONF_ERROR;
1457 } else {
ed84e8b8
MT
1458 unlink ($filename);
1459 &cleanssldatabase();
ac1cfefa
MT
1460 }
1461
ed84e8b8 1462 $cgiparams{'CERT_NAME'} = getCNfromcert ("${General::swroot}/certs/$cgiparams{'NAME'}cert.pem");
ac1cfefa
MT
1463 if ($cgiparams{'CERT_NAME'} eq '') {
1464 $errormessage = $Lang::tr{'could not retrieve common name from certificate'};
1465 goto VPNCONF_ERROR;
1466 }
ed84e8b8
MT
1467 } elsif ($cgiparams{'AUTH'} eq 'pkcs12') {
1468 &General::log("ipsec", "Importing from p12...");
1469
1470 if (ref ($cgiparams{'FH'}) ne 'Fh') {
1471 $errormessage = $Lang::tr{'there was no file upload'};
1472 goto ROOTCERT_ERROR;
1473 }
1474
1475 # Move uploaded certificate request to a temporary file
1476 (my $fh, my $filename) = tempfile( );
1477 if (copy ($cgiparams{'FH'}, $fh) != 1) {
1478 $errormessage = $!;
1479 goto ROOTCERT_ERROR;
1480 }
1481
1482 # Extract the CA certificate from the file
1483 &General::log("ipsec", "Extracting caroot from p12...");
1484 if (open(STDIN, "-|")) {
1485 my $opt = " pkcs12 -cacerts -nokeys";
1486 $opt .= " -in $filename";
1487 $opt .= " -out /tmp/newcacert";
1488 $errormessage = &callssl ($opt);
1489 } else { #child
1490 print "$cgiparams{'P12_PASS'}\n";
1491 exit (0);
1492 }
1493
1494 # Extract the Host certificate from the file
1495 if (!$errormessage) {
1496 &General::log("ipsec", "Extracting host cert from p12...");
1497 if (open(STDIN, "-|")) {
1498 my $opt = " pkcs12 -clcerts -nokeys";
1499 $opt .= " -in $filename";
1500 $opt .= " -out /tmp/newhostcert";
1501 $errormessage = &callssl ($opt);
1502 } else { #child
1503 print "$cgiparams{'P12_PASS'}\n";
1504 exit (0);
1505 }
1506 }
1507
1508 if (!$errormessage) {
1509 &General::log("ipsec", "Moving cacert...");
1510 #If CA have new subject, add it to our list of CA
1511 my $casubject = &Header::cleanhtml(getsubjectfromcert ('/tmp/newcacert'));
1512 my @names;
1513 foreach my $x (keys %cahash) {
1514 $casubject='' if ($cahash{$x}[1] eq $casubject);
1515 unshift (@names,$cahash{$x}[0]);
1516 }
1517 if ($casubject) { # a new one!
1518 my $temp = `/usr/bin/openssl x509 -text -in /tmp/newcacert`;
1519 if ($temp !~ /CA:TRUE/i) {
1520 $errormessage = $Lang::tr{'not a valid ca certificate'};
1521 } else {
1522 #compute a name for it
1523 my $idx=0;
1524 while (grep(/Imported-$idx/, @names) ) {$idx++};
1525 $cgiparams{'CA_NAME'}="Imported-$idx";
1526 $cgiparams{'CERT_NAME'}=&Header::cleanhtml(getCNfromcert ('/tmp/newhostcert'));
1527 move("/tmp/newcacert", "${General::swroot}/ca/$cgiparams{'CA_NAME'}cert.pem");
1528 $errormessage = "$Lang::tr{'certificate file move failed'}: $!" if ($? ne 0);
1529 if (!$errormessage) {
1530 my $key = &General::findhasharraykey (\%cahash);
1531 $cahash{$key}[0] = $cgiparams{'CA_NAME'};
1532 $cahash{$key}[1] = $casubject;
1533 &General::writehasharray("${General::swroot}/vpn/caconfig", \%cahash);
1534 system('/usr/local/bin/ipsecctrl', 'R');
1535 }
1536 }
1537 }
1538 }
1539 if (!$errormessage) {
1540 &General::log("ipsec", "Moving host cert...");
1541 move("/tmp/newhostcert", "${General::swroot}/certs/$cgiparams{'NAME'}cert.pem");
1542 $errormessage = "$Lang::tr{'certificate file move failed'}: $!" if ($? ne 0);
1543 }
1544
1545 #cleanup temp files
1546 unlink ($filename);
1547 unlink ('/tmp/newcacert');
1548 unlink ('/tmp/newhostcert');
1549 if ($errormessage) {
1550 unlink ("${General::swroot}/ca/$cgiparams{'CA_NAME'}cert.pem");
1551 unlink ("${General::swroot}/certs/$cgiparams{'NAME'}cert.pem");
1552 goto VPNCONF_ERROR;
1553 }
1554 &General::log("ipsec", "p12 import completed!");
ac1cfefa
MT
1555 } elsif ($cgiparams{'AUTH'} eq 'certfile') {
1556 if ($cgiparams{'KEY'}) {
1557 $errormessage = $Lang::tr{'cant change certificates'};
1558 goto VPNCONF_ERROR;
1559 }
1560 if (ref ($cgiparams{'FH'}) ne 'Fh') {
1561 $errormessage = $Lang::tr{'there was no file upload'};
1562 goto VPNCONF_ERROR;
1563 }
1564 # Move uploaded certificate to a temporary file
1565 (my $fh, my $filename) = tempfile( );
1566 if (copy ($cgiparams{'FH'}, $fh) != 1) {
1567 $errormessage = $!;
1568 goto VPNCONF_ERROR;
1569 }
1570
1571 # Verify the certificate has a valid CA and move it
ed84e8b8
MT
1572 &General::log("ipsec", "Validating imported cert against our known CA...");
1573 my $validca = 1; #assume ok
ac1cfefa 1574 my $test = `/usr/bin/openssl verify -CAfile ${General::swroot}/ca/cacert.pem $filename`;
ed84e8b8
MT
1575 if ($test !~ /: OK/) {
1576 my $validca = 0;
ac1cfefa
MT
1577 foreach my $key (keys %cahash) {
1578 $test = `/usr/bin/openssl verify -CAfile ${General::swroot}/ca/$cahash{$key}[0]cert.pem $filename`;
1579 if ($test =~ /: OK/) {
1580 $validca = 1;
ed84e8b8 1581 last;
ac1cfefa
MT
1582 }
1583 }
1584 }
1585 if (! $validca) {
1586 $errormessage = $Lang::tr{'certificate does not have a valid ca associated with it'};
1587 unlink ($filename);
1588 goto VPNCONF_ERROR;
1589 } else {
1590 move($filename, "${General::swroot}/certs/$cgiparams{'NAME'}cert.pem");
1591 if ($? ne 0) {
1592 $errormessage = "$Lang::tr{'certificate file move failed'}: $!";
1593 unlink ($filename);
1594 goto VPNCONF_ERROR;
1595 }
1596 }
1597
ed84e8b8 1598 $cgiparams{'CERT_NAME'} = getCNfromcert ("${General::swroot}/certs/$cgiparams{'NAME'}cert.pem");
ac1cfefa
MT
1599 if ($cgiparams{'CERT_NAME'} eq '') {
1600 unlink ("${General::swroot}/certs/$cgiparams{'NAME'}cert.pem");
1601 $errormessage = $Lang::tr{'could not retrieve common name from certificate'};
1602 goto VPNCONF_ERROR;
1603 }
1604 } elsif ($cgiparams{'AUTH'} eq 'certgen') {
1605 if ($cgiparams{'KEY'}) {
1606 $errormessage = $Lang::tr{'cant change certificates'};
1607 goto VPNCONF_ERROR;
1608 }
1609 # Validate input since the form was submitted
1610 if (length($cgiparams{'CERT_NAME'}) >60) {
1611 $errormessage = $Lang::tr{'name too long'};
1612 goto VPNCONF_ERROR;
1613 }
1614 if ($cgiparams{'CERT_NAME'} !~ /^[a-zA-Z0-9 ,\.\-_]+$/) {
1615 $errormessage = $Lang::tr{'invalid input for name'};
1616 goto VPNCONF_ERROR;
1617 }
1618 if ($cgiparams{'CERT_EMAIL'} ne '' && (! &General::validemail($cgiparams{'CERT_EMAIL'}))) {
1619 $errormessage = $Lang::tr{'invalid input for e-mail address'};
1620 goto VPNCONF_ERROR;
1621 }
1622 if (length($cgiparams{'CERT_EMAIL'}) > 40) {
1623 $errormessage = $Lang::tr{'e-mail address too long'};
1624 goto VPNCONF_ERROR;
1625 }
1626 if ($cgiparams{'CERT_OU'} ne '' && $cgiparams{'CERT_OU'} !~ /^[a-zA-Z0-9 ,\.\-_]*$/) {
1627 $errormessage = $Lang::tr{'invalid input for department'};
1628 goto VPNCONF_ERROR;
1629 }
1630 if (length($cgiparams{'CERT_ORGANIZATION'}) >60) {
1631 $errormessage = $Lang::tr{'organization too long'};
1632 goto VPNCONF_ERROR;
1633 }
1634 if ($cgiparams{'CERT_ORGANIZATION'} !~ /^[a-zA-Z0-9 ,\.\-_]+$/) {
1635 $errormessage = $Lang::tr{'invalid input for organization'};
1636 goto VPNCONF_ERROR;
1637 }
1638 if ($cgiparams{'CERT_CITY'} ne '' && $cgiparams{'CERT_CITY'} !~ /^[a-zA-Z0-9 ,\.\-_]*$/) {
1639 $errormessage = $Lang::tr{'invalid input for city'};
1640 goto VPNCONF_ERROR;
1641 }
1642 if ($cgiparams{'CERT_STATE'} ne '' && $cgiparams{'CERT_STATE'} !~ /^[a-zA-Z0-9 ,\.\-_]*$/) {
1643 $errormessage = $Lang::tr{'invalid input for state or province'};
1644 goto VPNCONF_ERROR;
1645 }
1646 if ($cgiparams{'CERT_COUNTRY'} !~ /^[A-Z]*$/) {
1647 $errormessage = $Lang::tr{'invalid input for country'};
1648 goto VPNCONF_ERROR;
1649 }
ed84e8b8
MT
1650 #the exact syntax is a list comma separated of
1651 # email:any-validemail
1652 # URI: a uniform resource indicator
1653 # DNS: a DNS domain name
1654 # RID: a registered OBJECT IDENTIFIER
1655 # IP: an IP address
1656 # example: email:franck@foo.com,IP:10.0.0.10,DNS:franck.foo.com
1657
1658 if ($cgiparams{'SUBJECTALTNAME'} ne '' && $cgiparams{'SUBJECTALTNAME'} !~ /^(email|URI|DNS|RID|IP):[a-zA-Z0-9 :\/,\.\-_@]*$/) {
1659 $errormessage = $Lang::tr{'vpn altname syntax'};
1660 goto VPNCONF_ERROR;
1661 }
1662
ac1cfefa
MT
1663 if (length($cgiparams{'CERT_PASS1'}) < 5) {
1664 $errormessage = $Lang::tr{'password too short'};
1665 goto VPNCONF_ERROR;
1666 }
1667 if ($cgiparams{'CERT_PASS1'} ne $cgiparams{'CERT_PASS2'}) {
1668 $errormessage = $Lang::tr{'passwords do not match'};
1669 goto VPNCONF_ERROR;
1670 }
1671
1672 # Replace empty strings with a .
1673 (my $ou = $cgiparams{'CERT_OU'}) =~ s/^\s*$/\./;
1674 (my $city = $cgiparams{'CERT_CITY'}) =~ s/^\s*$/\./;
1675 (my $state = $cgiparams{'CERT_STATE'}) =~ s/^\s*$/\./;
1676
1677 # Create the Host certificate request
ed84e8b8
MT
1678 &General::log("ipsec", "Creating a cert...");
1679
1680 if (open(STDIN, "-|")) {
1681 my $opt = " req -nodes -rand /proc/interrupts:/proc/net/rt_cache";
1682 $opt .= " -newkey rsa:1024";
1683 $opt .= " -keyout ${General::swroot}/certs/$cgiparams{'NAME'}key.pem";
1684 $opt .= " -out ${General::swroot}/certs/$cgiparams{'NAME'}req.pem";
1685
1686 if ( $errormessage = &callssl ($opt) ) {
ac1cfefa
MT
1687 unlink ("${General::swroot}/certs/$cgiparams{'NAME'}key.pem");
1688 unlink ("${General::swroot}/certs/$cgiparams{'NAME'}req.pem");
1689 goto VPNCONF_ERROR;
ed84e8b8
MT
1690 }
1691 } else { #child
1692 print "$cgiparams{'CERT_COUNTRY'}\n";
1693 print "$state\n";
1694 print "$city\n";
1695 print "$cgiparams{'CERT_ORGANIZATION'}\n";
1696 print "$ou\n";
1697 print "$cgiparams{'CERT_NAME'}\n";
1698 print "$cgiparams{'CERT_EMAIL'}\n";
1699 print ".\n";
1700 print ".\n";
1701 exit (0);
ac1cfefa 1702 }
ed84e8b8 1703
ac1cfefa 1704 # Sign the host certificate request
ed84e8b8
MT
1705 &General::log("ipsec", "Signing the cert $cgiparams{'NAME'}...");
1706
1707 #No easy way for specifying the contain of subjectAltName without writing a config file...
1708 my ($fh, $v3extname) = tempfile ('/tmp/XXXXXXXX');
1709 print $fh <<END
1710 basicConstraints=CA:FALSE
1711 nsComment="OpenSSL Generated Certificate"
1712 subjectKeyIdentifier=hash
1713 authorityKeyIdentifier=keyid,issuer:always
1714END
1715;
1716 print $fh "subjectAltName=$cgiparams{'SUBJECTALTNAME'}" if ($cgiparams{'SUBJECTALTNAME'});
1717 close ($fh);
1718
1719 my $opt = " ca -days 999999 -batch -notext";
1720 $opt .= " -in ${General::swroot}/certs/$cgiparams{'NAME'}req.pem";
1721 $opt .= " -out ${General::swroot}/certs/$cgiparams{'NAME'}cert.pem";
1722 $opt .= " -extfile $v3extname";
1723
1724 if ( $errormessage = &callssl ($opt) ) {
1725 unlink ($v3extname);
ac1cfefa
MT
1726 unlink ("${General::swroot}/certs/$cgiparams{'NAME'}key.pem");
1727 unlink ("${General::swroot}/certs/$cgiparams{'NAME'}req.pem");
1728 unlink ("${General::swroot}/certs/$cgiparams{'NAME'}cert.pem");
1729 &cleanssldatabase();
1730 goto VPNCONF_ERROR;
1731 } else {
ed84e8b8 1732 unlink ($v3extname);
ac1cfefa
MT
1733 unlink ("${General::swroot}/certs/$cgiparams{'NAME'}req.pem");
1734 &cleanssldatabase();
1735 }
1736
1737 # Create the pkcs12 file
ed84e8b8
MT
1738 &General::log("ipsec", "Packing a pkcs12 file...");
1739 $opt = " pkcs12 -export";
1740 $opt .= " -inkey ${General::swroot}/certs/$cgiparams{'NAME'}key.pem";
1741 $opt .= " -in ${General::swroot}/certs/$cgiparams{'NAME'}cert.pem";
1742 $opt .= " -name \"$cgiparams{'NAME'}\"";
1743 $opt .= " -passout pass:$cgiparams{'CERT_PASS1'}";
1744 $opt .= " -certfile ${General::swroot}/ca/cacert.pem";
1745 $opt .= " -caname \"$vpnsettings{'ROOTCERT_ORGANIZATION'} CA\"";
1746 $opt .= " -out ${General::swroot}/certs/$cgiparams{'NAME'}.p12";
1747
1748 if ( $errormessage = &callssl ($opt) ) {
ac1cfefa
MT
1749 unlink ("${General::swroot}/certs/$cgiparams{'NAME'}key.pem");
1750 unlink ("${General::swroot}/certs/$cgiparams{'NAME'}cert.pem");
1751 unlink ("${General::swroot}/certs/$cgiparams{'NAME'}.p12");
1752 goto VPNCONF_ERROR;
1753 } else {
1754 unlink ("${General::swroot}/certs/$cgiparams{'NAME'}key.pem");
1755 }
1756 } elsif ($cgiparams{'AUTH'} eq 'cert') {
1757 ;# Nothing, just editing
ed84e8b8
MT
1758 } elsif ($cgiparams{'AUTH'} eq 'auth-dn') {
1759 $cgiparams{'CERT_NAME'} = '%auth-dn'; # a special value saying 'no cert file'
ac1cfefa
MT
1760 } else {
1761 $errormessage = $Lang::tr{'invalid input for authentication method'};
1762 goto VPNCONF_ERROR;
1763 }
1764
ed84e8b8
MT
1765 # 1)Error message here is not accurate.
1766 # 2)Test is superfluous, openswan can reference same cert multiple times
1767 # 3)Present since initial version (1.3.2.11), it isn't a bug correction
1768 # Check if there is no other entry with this certificate name
1769 #if ((! $cgiparams{'KEY'}) && ($cgiparams{'AUTH'} ne 'psk') && ($cgiparams{'AUTH'} ne 'auth-dn')) {
1770 # foreach my $key (keys %confighash) {
1771 # if ($confighash{$key}[2] eq $cgiparams{'CERT_NAME'}) {
1772 # $errormessage = $Lang::tr{'a connection with this common name already exists'};
1773 # goto VPNCONF_ERROR;
1774 # }
1775 # }
1776 #}
ac1cfefa 1777 # Save the config
ed84e8b8 1778
ac1cfefa
MT
1779 my $key = $cgiparams{'KEY'};
1780 if (! $key) {
1781 $key = &General::findhasharraykey (\%confighash);
4e156911 1782 foreach my $i (0 .. 31) { $confighash{$key}[$i] = "";}
ac1cfefa
MT
1783 }
1784 $confighash{$key}[0] = $cgiparams{'ENABLED'};
1785 $confighash{$key}[1] = $cgiparams{'NAME'};
1786 if ((! $cgiparams{'KEY'}) && $cgiparams{'AUTH'} ne 'psk') {
1787 $confighash{$key}[2] = $cgiparams{'CERT_NAME'};
1788 }
1789 $confighash{$key}[3] = $cgiparams{'TYPE'};
1790 if ($cgiparams{'AUTH'} eq 'psk') {
1791 $confighash{$key}[4] = 'psk';
1792 $confighash{$key}[5] = $cgiparams{'PSK'};
1793 } else {
1794 $confighash{$key}[4] = 'cert';
1795 }
1796 if ($cgiparams{'TYPE'} eq 'net') {
ac1cfefa
MT
1797 $confighash{$key}[11] = $cgiparams{'REMOTE_SUBNET'};
1798 }
1799 $confighash{$key}[7] = $cgiparams{'LOCAL_ID'};
1800 $confighash{$key}[8] = $cgiparams{'LOCAL_SUBNET'};
1801 $confighash{$key}[9] = $cgiparams{'REMOTE_ID'};
1802 $confighash{$key}[10] = $cgiparams{'REMOTE'};
1803 $confighash{$key}[25] = $cgiparams{'REMARK'};
ae2782ba 1804 $confighash{$key}[26] = ""; # Formerly INTERFACE
ac1cfefa 1805 $confighash{$key}[27] = $cgiparams{'DPD_ACTION'};
e2e4ed01 1806 $confighash{$key}[29] = $cgiparams{'IKE_VERSION'};
ac1cfefa 1807
ed84e8b8
MT
1808 #dont forget advanced value
1809 $confighash{$key}[18] = $cgiparams{'IKE_ENCRYPTION'};
1810 $confighash{$key}[19] = $cgiparams{'IKE_INTEGRITY'};
1811 $confighash{$key}[20] = $cgiparams{'IKE_GROUPTYPE'};
1812 $confighash{$key}[16] = $cgiparams{'IKE_LIFETIME'};
1813 $confighash{$key}[21] = $cgiparams{'ESP_ENCRYPTION'};
1814 $confighash{$key}[22] = $cgiparams{'ESP_INTEGRITY'};
1815 $confighash{$key}[23] = $cgiparams{'ESP_GROUPTYPE'};
1816 $confighash{$key}[17] = $cgiparams{'ESP_KEYLIFE'};
451a2f68 1817 $confighash{$key}[12] = 'off'; # $cgiparams{'AGGRMODE'};
ed84e8b8
MT
1818 $confighash{$key}[13] = $cgiparams{'COMPRESSION'};
1819 $confighash{$key}[24] = $cgiparams{'ONLY_PROPOSED'};
1820 $confighash{$key}[28] = $cgiparams{'PFS'};
1821 $confighash{$key}[14] = $cgiparams{'VHOST'};
4e156911
AM
1822 $confighash{$key}[30] = $cgiparams{'DPD_TIMEOUT'};
1823 $confighash{$key}[31] = $cgiparams{'DPD_DELAY'};
ac1cfefa
MT
1824
1825 #free unused fields!
5fd30232 1826 $confighash{$key}[6] = 'off';
ed84e8b8 1827 $confighash{$key}[15] = 'off';
ac1cfefa
MT
1828
1829 &General::writehasharray("${General::swroot}/vpn/config", \%confighash);
1830 &writeipsecfiles();
ed84e8b8 1831 if (&vpnenabled) {
ac1cfefa
MT
1832 system('/usr/local/bin/ipsecctrl', 'S', $key);
1833 sleep $sleepDelay;
1834 }
1835 if ($cgiparams{'EDIT_ADVANCED'} eq 'on') {
1836 $cgiparams{'KEY'} = $key;
1837 $cgiparams{'ACTION'} = $Lang::tr{'advanced'};
1838 }
1839 goto VPNCONF_END;
1840 } else { # add new connection
1841 $cgiparams{'ENABLED'} = 'on';
ac1cfefa
MT
1842 if ( ! -f "${General::swroot}/private/cakey.pem" ) {
1843 $cgiparams{'AUTH'} = 'psk';
1844 } elsif ( ! -f "${General::swroot}/ca/cacert.pem") {
1845 $cgiparams{'AUTH'} = 'certfile';
1846 } else {
1847 $cgiparams{'AUTH'} = 'certgen';
1848 }
1849 $cgiparams{'LOCAL_SUBNET'} ="$netsettings{'GREEN_NETADDRESS'}/$netsettings{'GREEN_NETMASK'}";
ed84e8b8
MT
1850 $cgiparams{'CERT_EMAIL'} = $vpnsettings{'ROOTCERT_EMAIL'};
1851 $cgiparams{'CERT_OU'} = $vpnsettings{'ROOTCERT_OU'};
ac1cfefa
MT
1852 $cgiparams{'CERT_ORGANIZATION'} = $vpnsettings{'ROOTCERT_ORGANIZATION'};
1853 $cgiparams{'CERT_CITY'} = $vpnsettings{'ROOTCERT_CITY'};
1854 $cgiparams{'CERT_STATE'} = $vpnsettings{'ROOTCERT_STATE'};
1855 $cgiparams{'CERT_COUNTRY'} = $vpnsettings{'ROOTCERT_COUNTRY'};
1856
1857 # choose appropriate dpd action
1858 if ($cgiparams{'TYPE'} eq 'host') {
afd5d8f7 1859 $cgiparams{'DPD_ACTION'} = 'clear';
ac1cfefa 1860 } else {
afd5d8f7 1861 $cgiparams{'DPD_ACTION'} = 'restart';
ac1cfefa
MT
1862 }
1863
cbb3a8f9
MT
1864 if (!$cgiparams{'DPD_DELAY'}) {
1865 $cgiparams{'DPD_DELAY'} = 30;
1866 }
1867
1868 if (!$cgiparams{'DPD_TIMEOUT'}) {
1869 $cgiparams{'DPD_TIMEOUT'} = 120;
1870 }
1871
ae2782ba
MT
1872 # Default IKE Version to v2
1873 if (!$cgiparams{'IKE_VERSION'}) {
1874 $cgiparams{'IKE_VERSION'} = 'ikev2';
e2e4ed01
AF
1875 }
1876
ac1cfefa
MT
1877 # ID are empty
1878 $cgiparams{'LOCAL_ID'} = '';
1879 $cgiparams{'REMOTE_ID'} = '';
ed84e8b8
MT
1880
1881 #use default advanced value
01b5bc91
MT
1882 $cgiparams{'IKE_ENCRYPTION'} = 'aes256|aes192|aes128|3des'; #[18];
1883 $cgiparams{'IKE_INTEGRITY'} = 'sha2_256|sha|md5'; #[19];
aea35c5a 1884 $cgiparams{'IKE_GROUPTYPE'} = '4096|3072|2048|1536|1024'; #[20];
0cf124ab 1885 $cgiparams{'IKE_LIFETIME'} = '3'; #[16];
01b5bc91
MT
1886 $cgiparams{'ESP_ENCRYPTION'} = 'aes256|aes192|aes128|3des'; #[21];
1887 $cgiparams{'ESP_INTEGRITY'} = 'sha2_256|sha1|md5'; #[22];
ed84e8b8 1888 $cgiparams{'ESP_GROUPTYPE'} = ''; #[23];
0cf124ab 1889 $cgiparams{'ESP_KEYLIFE'} = '1'; #[17];
ae2782ba 1890 $cgiparams{'COMPRESSION'} = 'on'; #[13];
ed84e8b8
MT
1891 $cgiparams{'ONLY_PROPOSED'} = 'off'; #[24];
1892 $cgiparams{'PFS'} = 'on'; #[28];
1893 $cgiparams{'VHOST'} = 'on'; #[14];
ac1cfefa
MT
1894 }
1895
1896 VPNCONF_ERROR:
1897 $checked{'ENABLED'}{'off'} = '';
1898 $checked{'ENABLED'}{'on'} = '';
1899 $checked{'ENABLED'}{$cgiparams{'ENABLED'}} = "checked='checked'";
ac1cfefa
MT
1900
1901 $checked{'EDIT_ADVANCED'}{'off'} = '';
1902 $checked{'EDIT_ADVANCED'}{'on'} = '';
1903 $checked{'EDIT_ADVANCED'}{$cgiparams{'EDIT_ADVANCED'}} = "checked='checked'";
1904
ac1cfefa
MT
1905 $checked{'AUTH'}{'psk'} = '';
1906 $checked{'AUTH'}{'certreq'} = '';
1907 $checked{'AUTH'}{'certgen'} = '';
1908 $checked{'AUTH'}{'certfile'} = '';
ed84e8b8
MT
1909 $checked{'AUTH'}{'pkcs12'} = '';
1910 $checked{'AUTH'}{'auth-dn'} = '';
ac1cfefa
MT
1911 $checked{'AUTH'}{$cgiparams{'AUTH'}} = "checked='checked'";
1912
ed84e8b8 1913 &Header::showhttpheaders();
7d44bfee 1914 &Header::openpage($Lang::tr{'ipsec'}, 1, '');
ed84e8b8
MT
1915 &Header::openbigbox('100%', 'left', '', $errormessage);
1916 if ($errormessage) {
1917 &Header::openbox('100%', 'left', $Lang::tr{'error messages'});
1918 print "<class name='base'>$errormessage";
1919 print "&nbsp;</class>";
1920 &Header::closebox();
1921 }
ac1cfefa 1922
ed84e8b8
MT
1923 if ($warnmessage) {
1924 &Header::openbox('100%', 'left', "$Lang::tr{'warning messages'}:");
1925 print "<class name='base'>$warnmessage";
1926 print "&nbsp;</class>";
1927 &Header::closebox();
1928 }
ac1cfefa 1929
ed84e8b8
MT
1930 print "<form method='post' enctype='multipart/form-data' action='$ENV{'SCRIPT_NAME'}'>";
1931 print<<END
1932 <input type='hidden' name='TYPE' value='$cgiparams{'TYPE'}' />
4ad0b5b6 1933 <input type='hidden' name='IKE_VERSION' value='$cgiparams{'IKE_VERSION'}' />
ed84e8b8
MT
1934 <input type='hidden' name='IKE_ENCRYPTION' value='$cgiparams{'IKE_ENCRYPTION'}' />
1935 <input type='hidden' name='IKE_INTEGRITY' value='$cgiparams{'IKE_INTEGRITY'}' />
1936 <input type='hidden' name='IKE_GROUPTYPE' value='$cgiparams{'IKE_GROUPTYPE'}' />
1937 <input type='hidden' name='IKE_LIFETIME' value='$cgiparams{'IKE_LIFETIME'}' />
1938 <input type='hidden' name='ESP_ENCRYPTION' value='$cgiparams{'ESP_ENCRYPTION'}' />
1939 <input type='hidden' name='ESP_INTEGRITY' value='$cgiparams{'ESP_INTEGRITY'}' />
1940 <input type='hidden' name='ESP_GROUPTYPE' value='$cgiparams{'ESP_GROUPTYPE'}' />
1941 <input type='hidden' name='ESP_KEYLIFE' value='$cgiparams{'ESP_KEYLIFE'}' />
ed84e8b8
MT
1942 <input type='hidden' name='COMPRESSION' value='$cgiparams{'COMPRESSION'}' />
1943 <input type='hidden' name='ONLY_PROPOSED' value='$cgiparams{'ONLY_PROPOSED'}' />
1944 <input type='hidden' name='PFS' value='$cgiparams{'PFS'}' />
1945 <input type='hidden' name='VHOST' value='$cgiparams{'VHOST'}' />
cbb3a8f9
MT
1946 <input type='hidden' name='DPD_ACTION' value='$cgiparams{'DPD_ACTION'}' />
1947 <input type='hidden' name='DPD_DELAY' value='$cgiparams{'DPD_DELAY'}' />
1948 <input type='hidden' name='DPD_TIMEOUT' value='$cgiparams{'DPD_TIMEOUT'}' />
ed84e8b8
MT
1949END
1950 ;
1951 if ($cgiparams{'KEY'}) {
1952 print "<input type='hidden' name='KEY' value='$cgiparams{'KEY'}' />";
d2d87f2c 1953 print "<input type='hidden' name='NAME' value='$cgiparams{'NAME'}' />";
ed84e8b8
MT
1954 print "<input type='hidden' name='AUTH' value='$cgiparams{'AUTH'}' />";
1955 }
ac1cfefa 1956
d2d87f2c 1957 &Header::openbox('100%', 'left', "$Lang::tr{'connection'}: $cgiparams{'NAME'}");
ed84e8b8 1958 print "<table width='100%'>";
d2d87f2c
MT
1959 if (!$cgiparams{'KEY'}) {
1960 print <<EOF;
1961 <tr>
1962 <td width='20%'>$Lang::tr{'name'}:</td>
1963 <td width='30%'>
1964 <input type='text' name='NAME' value='$cgiparams{'NAME'}' size='25' />
1965 </td>
1966 <td colspan="2"></td>
1967 </tr>
1968EOF
ed84e8b8 1969 }
ac1cfefa 1970
5fd30232
MT
1971 my $disabled;
1972 my $blob;
ed84e8b8 1973 if ($cgiparams{'TYPE'} eq 'host') {
5fd30232
MT
1974 $disabled = "disabled='disabled'";
1975 $blob = "<img src='/blob.gif' alt='*' />";
1976 };
1977
5fd30232 1978 print <<END
ae2782ba 1979 <tr>
d2d87f2c
MT
1980 <td width='20%'>$Lang::tr{'enabled'}</td>
1981 <td width='30%'>
1982 <input type='checkbox' name='ENABLED' $checked{'ENABLED'}{'on'} />
1983 </td>
1984 <td class='boldbase' nowrap='nowrap' width='20%'>$Lang::tr{'local subnet'}</td>
1985 <td width='30%'>
1986 <input type='text' name='LOCAL_SUBNET' value='$cgiparams{'LOCAL_SUBNET'}' size="25" />
1987 </td>
1988 </tr>
1989 <tr>
1990 <td class='boldbase' width='20%'>$Lang::tr{'remote host/ip'}:&nbsp;$blob</td>
1991 <td width='30%'>
1992 <input type='text' name='REMOTE' value='$cgiparams{'REMOTE'}' size="25" />
ae2782ba 1993 </td>
d2d87f2c
MT
1994 <td class='boldbase' nowrap='nowrap' width='20%'>$Lang::tr{'remote subnet'}</td>
1995 <td width='30%'>
1996 <input $disabled type='text' name='REMOTE_SUBNET' value='$cgiparams{'REMOTE_SUBNET'}' size="25" />
ae2782ba
MT
1997 </td>
1998 </tr>
1999 <tr>
d2d87f2c
MT
2000 <td class='boldbase' width='20%'>$Lang::tr{'vpn local id'}:</td>
2001 <td width='30%'>
2002 <input type='text' name='LOCAL_ID' value='$cgiparams{'LOCAL_ID'}' size="25" />
2003 </td>
2004 <td class='boldbase' width='20%'>$Lang::tr{'vpn remote id'}:</td>
2005 <td width='30%'>
2006 <input type='text' name='REMOTE_ID' value='$cgiparams{'REMOTE_ID'}' size="25" />
ae2782ba
MT
2007 </td>
2008 </tr>
d2d87f2c 2009 <tr><td colspan="4"><br /></td></tr>
ae2782ba 2010 <tr>
d2d87f2c
MT
2011 <td class='boldbase' width='20%'>$Lang::tr{'remark title'}&nbsp;<img src='/blob.gif' alt='*' /></td>
2012 <td colspan='3'>
2013 <input type='text' name='REMARK' value='$cgiparams{'REMARK'}' maxlength='50' size="73" />
2014 </td>
5fd30232 2015 </tr>
ac1cfefa 2016END
ed84e8b8
MT
2017 ;
2018 if (!$cgiparams{'KEY'}) {
2019 print "<tr><td colspan='3'><input type='checkbox' name='EDIT_ADVANCED' $checked{'EDIT_ADVANCED'}{'on'} /> $Lang::tr{'edit advanced settings when done'}</td></tr>";
2020 }
2021 print "</table>";
2022 &Header::closebox();
ac1cfefa 2023
ed84e8b8
MT
2024 if ($cgiparams{'KEY'} && $cgiparams{'AUTH'} eq 'psk') {
2025 &Header::openbox('100%', 'left', $Lang::tr{'authentication'});
2026 print <<END
2027 <table width='100%' cellpadding='0' cellspacing='5' border='0'>
2028 <tr><td class='base' width='50%'>$Lang::tr{'use a pre-shared key'}</td>
a2ee8140 2029 <td class='base' width='50%'><input type='password' name='PSK' size='30' value='$cgiparams{'PSK'}' /></td>
ed84e8b8
MT
2030 </tr>
2031 </table>
ac1cfefa 2032END
ed84e8b8
MT
2033 ;
2034 &Header::closebox();
2035 } elsif (! $cgiparams{'KEY'}) {
ed84e8b8
MT
2036 my $cakeydisabled = ( ! -f "${General::swroot}/private/cakey.pem" ) ? "disabled='disabled'" : '';
2037 $cgiparams{'CERT_NAME'} = $Lang::tr{'vpn no full pki'} if ($cakeydisabled);
2038 my $cacrtdisabled = ( ! -f "${General::swroot}/ca/cacert.pem" ) ? "disabled='disabled'" : '';
2039
2040 &Header::openbox('100%', 'left', $Lang::tr{'authentication'});
2041 print <<END
2042 <table width='100%' cellpadding='0' cellspacing='5' border='0'>
b2531cb0 2043 <tr><td width='5%'><input type='radio' name='AUTH' value='psk' $checked{'AUTH'}{'psk'} /></td>
ed84e8b8 2044 <td class='base' width='55%'>$Lang::tr{'use a pre-shared key'}</td>
b2531cb0 2045 <td class='base' width='40%'><input type='password' name='PSK' size='30' value='$cgiparams{'PSK'}' /></td></tr>
ed84e8b8
MT
2046 <tr><td colspan='3' bgcolor='#000000'></td></tr>
2047 <tr><td><input type='radio' name='AUTH' value='certreq' $checked{'AUTH'}{'certreq'} $cakeydisabled /></td>
2048 <td class='base'><hr />$Lang::tr{'upload a certificate request'}</td>
2049 <td class='base' rowspan='3' valign='middle'><input type='file' name='FH' size='30' $cacrtdisabled /></td></tr>
2050 <tr><td><input type='radio' name='AUTH' value='certfile' $checked{'AUTH'}{'certfile'} $cacrtdisabled /></td>
2051 <td class='base'>$Lang::tr{'upload a certificate'}</td></tr>
2052 <tr><td><input type='radio' name='AUTH' value='pkcs12' $cacrtdisabled /></td>
2053 <td class='base'>$Lang::tr{'upload p12 file'} $Lang::tr{'pkcs12 file password'}:<input type='password' name='P12_PASS'/></td></tr>
2054 <tr><td><input type='radio' name='AUTH' value='auth-dn' $checked{'AUTH'}{'auth-dn'} $cacrtdisabled /></td>
2055 <td class='base'><hr />$Lang::tr{'vpn auth-dn'}</td></tr>
2056 <tr><td colspan='3' bgcolor='#000000'></td></tr>
2057 <tr><td><input type='radio' name='AUTH' value='certgen' $checked{'AUTH'}{'certgen'} $cakeydisabled /></td>
2058 <td class='base'><hr />$Lang::tr{'generate a certificate'}</td><td>&nbsp;</td></tr>
2059 <tr><td>&nbsp;</td>
2060 <td class='base'>$Lang::tr{'users fullname or system hostname'}:</td>
2061 <td class='base' nowrap='nowrap'><input type='text' name='CERT_NAME' value='$cgiparams{'CERT_NAME'}' size='32' $cakeydisabled /></td></tr>
2062 <tr><td>&nbsp;</td>
2063 <td class='base'>$Lang::tr{'users email'}:&nbsp;<img src='/blob.gif' alt='*' /></td>
2064 <td class='base' nowrap='nowrap'><input type='text' name='CERT_EMAIL' value='$cgiparams{'CERT_EMAIL'}' size='32' $cakeydisabled /></td></tr>
2065 <tr><td>&nbsp;</td>
2066 <td class='base'>$Lang::tr{'users department'}:&nbsp;<img src='/blob.gif' alt='*' /></td>
2067 <td class='base' nowrap='nowrap'><input type='text' name='CERT_OU' value='$cgiparams{'CERT_OU'}' size='32' $cakeydisabled /></td></tr>
2068 <tr><td>&nbsp;</td>
2069 <td class='base'>$Lang::tr{'organization name'}:&nbsp;<img src='/blob.gif' alt='*' /></td>
2070 <td class='base' nowrap='nowrap'><input type='text' name='CERT_ORGANIZATION' value='$cgiparams{'CERT_ORGANIZATION'}' size='32' $cakeydisabled /></td></tr>
2071 <tr><td>&nbsp;</td>
2072 <td class='base'>$Lang::tr{'city'}:&nbsp;<img src='/blob.gif' alt='*' /></td>
2073 <td class='base' nowrap='nowrap'><input type='text' name='CERT_CITY' value='$cgiparams{'CERT_CITY'}' size='32' $cakeydisabled /></td></tr>
2074 <tr><td>&nbsp;</td>
2075 <td class='base'>$Lang::tr{'state or province'}:&nbsp;<img src='/blob.gif' alt='*' /></td>
2076 <td class='base' nowrap='nowrap'><input type='text' name='CERT_STATE' value='$cgiparams{'CERT_STATE'}' size='32' $cakeydisabled /></td></tr>
2077 <tr><td>&nbsp;</td>
2078 <td class='base'>$Lang::tr{'country'}:</td>
2079 <td class='base'><select name='CERT_COUNTRY' $cakeydisabled>
ac1cfefa 2080END
ed84e8b8
MT
2081 ;
2082 foreach my $country (sort keys %{Countries::countries}) {
2083 print "\t\t\t<option value='$Countries::countries{$country}'";
2084 if ( $Countries::countries{$country} eq $cgiparams{'CERT_COUNTRY'} ) {
2085 print " selected='selected'";
ac1cfefa 2086 }
ed84e8b8 2087 print ">$country</option>\n";
ac1cfefa 2088 }
ed84e8b8
MT
2089 print <<END
2090 </select></td></tr>
ac1cfefa 2091
ed84e8b8
MT
2092 <tr><td>&nbsp;</td><td class='base'>$Lang::tr{'vpn subjectaltname'} (subjectAltName=email:*,URI:*,DNS:*,RID:*)<img src='/blob.gif' alt='*' /></td>
2093 <td class='base' nowrap='nowrap'><input type='text' name='SUBJECTALTNAME' value='$cgiparams{'SUBJECTALTNAME'}' size='32' $cakeydisabled /></td></tr>
2094 <tr><td>&nbsp;</td>
2095 <td class='base'>$Lang::tr{'pkcs12 file password'}:</td>
2096 <td class='base' nowrap='nowrap'><input type='password' name='CERT_PASS1' value='$cgiparams{'CERT_PASS1'}' size='32' $cakeydisabled /></td></tr>
2097 <tr><td>&nbsp;</td><td class='base'>$Lang::tr{'pkcs12 file password'}:($Lang::tr{'confirmation'})</td>
2098 <td class='base' nowrap='nowrap'><input type='password' name='CERT_PASS2' value='$cgiparams{'CERT_PASS2'}' size='32' $cakeydisabled /></td></tr>
2099 </table>
2100END
2101 ;
2102 &Header::closebox();
2103 }
2104
2105 print "<div align='center'><input type='submit' name='ACTION' value='$Lang::tr{'save'}' />";
2106 if ($cgiparams{'KEY'}) {
2107 print "<input type='submit' name='ACTION' value='$Lang::tr{'advanced'}' />";
ac1cfefa 2108 }
ed84e8b8
MT
2109 print "<input type='submit' name='ACTION' value='$Lang::tr{'cancel'}' /></div></form>";
2110 &Header::closebigbox();
2111 &Header::closepage();
2112 exit (0);
2113
ac1cfefa
MT
2114 VPNCONF_END:
2115}
2116
2117###
2118### Advanced settings
2119###
2120if(($cgiparams{'ACTION'} eq $Lang::tr{'advanced'}) ||
2121 ($cgiparams{'ACTION'} eq $Lang::tr{'save'} && $cgiparams{'ADVANCED'} eq 'yes')) {
2122 &General::readhash("${General::swroot}/vpn/settings", \%vpnsettings);
2123 &General::readhasharray("${General::swroot}/vpn/config", \%confighash);
2124 if (! $confighash{$cgiparams{'KEY'}}) {
2125 $errormessage = $Lang::tr{'invalid key'};
2126 goto ADVANCED_END;
2127 }
2128
2129 if ($cgiparams{'ACTION'} eq $Lang::tr{'save'}) {
ed84e8b8
MT
2130 # I didn't read any incompatibilities here....
2131 #if ($cgiparams{'VHOST'} eq 'on' && $cgiparams{'COMPRESSION'} eq 'on') {
2132 # $errormessage = $Lang::tr{'cannot enable both nat traversal and compression'};
2133 # goto ADVANCED_ERROR;
2134 #}
ac1cfefa
MT
2135 my @temp = split('\|', $cgiparams{'IKE_ENCRYPTION'});
2136 if ($#temp < 0) {
2137 $errormessage = $Lang::tr{'invalid input'};
2138 goto ADVANCED_ERROR;
2139 }
2140 foreach my $val (@temp) {
d72a8204 2141 if ($val !~ /^(aes256|aes192|aes128|3des|camellia256|camellia192|camellia128)$/) {
ac1cfefa
MT
2142 $errormessage = $Lang::tr{'invalid input'};
2143 goto ADVANCED_ERROR;
2144 }
2145 }
2146 @temp = split('\|', $cgiparams{'IKE_INTEGRITY'});
2147 if ($#temp < 0) {
2148 $errormessage = $Lang::tr{'invalid input'};
2149 goto ADVANCED_ERROR;
2150 }
2151 foreach my $val (@temp) {
01b5bc91 2152 if ($val !~ /^(sha2_512|sha2_384|sha2_256|sha|md5|aesxcbc)$/) {
ac1cfefa
MT
2153 $errormessage = $Lang::tr{'invalid input'};
2154 goto ADVANCED_ERROR;
2155 }
2156 }
2157 @temp = split('\|', $cgiparams{'IKE_GROUPTYPE'});
2158 if ($#temp < 0) {
2159 $errormessage = $Lang::tr{'invalid input'};
2160 goto ADVANCED_ERROR;
2161 }
2162 foreach my $val (@temp) {
22fc183e 2163 if ($val !~ /^(e521|e384|e256|e224|e192|e512bp|e384bp|e256bp|e224bp|1024|1536|2048|2048s256|2048s224|2048s160|3072|4096|6144|8192)$/) {
ac1cfefa
MT
2164 $errormessage = $Lang::tr{'invalid input'};
2165 goto ADVANCED_ERROR;
2166 }
2167 }
2168 if ($cgiparams{'IKE_LIFETIME'} !~ /^\d+$/) {
2169 $errormessage = $Lang::tr{'invalid input for ike lifetime'};
2170 goto ADVANCED_ERROR;
2171 }
2172 if ($cgiparams{'IKE_LIFETIME'} < 1 || $cgiparams{'IKE_LIFETIME'} > 8) {
2173 $errormessage = $Lang::tr{'ike lifetime should be between 1 and 8 hours'};
2174 goto ADVANCED_ERROR;
2175 }
2176 @temp = split('\|', $cgiparams{'ESP_ENCRYPTION'});
2177 if ($#temp < 0) {
2178 $errormessage = $Lang::tr{'invalid input'};
2179 goto ADVANCED_ERROR;
2180 }
2181 foreach my $val (@temp) {
d72a8204 2182 if ($val !~ /^(aes256|aes192|aes128|3des|camellia256|camellia192|camellia128)$/) {
ac1cfefa
MT
2183 $errormessage = $Lang::tr{'invalid input'};
2184 goto ADVANCED_ERROR;
2185 }
2186 }
2187 @temp = split('\|', $cgiparams{'ESP_INTEGRITY'});
2188 if ($#temp < 0) {
2189 $errormessage = $Lang::tr{'invalid input'};
2190 goto ADVANCED_ERROR;
2191 }
2192 foreach my $val (@temp) {
01b5bc91 2193 if ($val !~ /^(sha2_512|sha2_384|sha2_256|sha1|md5|aesxcbc)$/) {
ac1cfefa
MT
2194 $errormessage = $Lang::tr{'invalid input'};
2195 goto ADVANCED_ERROR;
2196 }
2197 }
2198 if ($cgiparams{'ESP_GROUPTYPE'} ne '' &&
651d442e 2199 $cgiparams{'ESP_GROUPTYPE'} !~ /^ecp(192|224|256|384|512)(bp)?$/ &&
22fc183e 2200 $cgiparams{'ESP_GROUPTYPE'} !~ /^modp(1024|1536|2048|2048s(256|224|160)|3072|4096|6144|8192)$/) {
ac1cfefa
MT
2201 $errormessage = $Lang::tr{'invalid input'};
2202 goto ADVANCED_ERROR;
2203 }
2204
2205 if ($cgiparams{'ESP_KEYLIFE'} !~ /^\d+$/) {
2206 $errormessage = $Lang::tr{'invalid input for esp keylife'};
2207 goto ADVANCED_ERROR;
2208 }
2209 if ($cgiparams{'ESP_KEYLIFE'} < 1 || $cgiparams{'ESP_KEYLIFE'} > 24) {
2210 $errormessage = $Lang::tr{'esp keylife should be between 1 and 24 hours'};
2211 goto ADVANCED_ERROR;
2212 }
ed84e8b8
MT
2213
2214 if (
ed84e8b8
MT
2215 ($cgiparams{'COMPRESSION'} !~ /^(|on|off)$/) ||
2216 ($cgiparams{'ONLY_PROPOSED'} !~ /^(|on|off)$/) ||
2217 ($cgiparams{'PFS'} !~ /^(|on|off)$/) ||
2218 ($cgiparams{'VHOST'} !~ /^(|on|off)$/)
2219 ){
ac1cfefa
MT
2220 $errormessage = $Lang::tr{'invalid input'};
2221 goto ADVANCED_ERROR;
2222 }
ed84e8b8 2223
cbb3a8f9
MT
2224 if ($cgiparams{'DPD_DELAY'} !~ /^\d+$/) {
2225 $errormessage = $Lang::tr{'invalid input for dpd delay'};
2226 goto ADVANCED_ERROR;
2227 }
2228
2229 if ($cgiparams{'DPD_TIMEOUT'} !~ /^\d+$/) {
2230 $errormessage = $Lang::tr{'invalid input for dpd timeout'};
2231 goto ADVANCED_ERROR;
2232 }
2233
4ad0b5b6 2234 $confighash{$cgiparams{'KEY'}}[29] = $cgiparams{'IKE_VERSION'};
ac1cfefa
MT
2235 $confighash{$cgiparams{'KEY'}}[18] = $cgiparams{'IKE_ENCRYPTION'};
2236 $confighash{$cgiparams{'KEY'}}[19] = $cgiparams{'IKE_INTEGRITY'};
2237 $confighash{$cgiparams{'KEY'}}[20] = $cgiparams{'IKE_GROUPTYPE'};
2238 $confighash{$cgiparams{'KEY'}}[16] = $cgiparams{'IKE_LIFETIME'};
2239 $confighash{$cgiparams{'KEY'}}[21] = $cgiparams{'ESP_ENCRYPTION'};
2240 $confighash{$cgiparams{'KEY'}}[22] = $cgiparams{'ESP_INTEGRITY'};
2241 $confighash{$cgiparams{'KEY'}}[23] = $cgiparams{'ESP_GROUPTYPE'};
2242 $confighash{$cgiparams{'KEY'}}[17] = $cgiparams{'ESP_KEYLIFE'};
451a2f68 2243 $confighash{$cgiparams{'KEY'}}[12] = 'off'; #$cgiparams{'AGGRMODE'};
ed84e8b8 2244 $confighash{$cgiparams{'KEY'}}[13] = $cgiparams{'COMPRESSION'};
ac1cfefa 2245 $confighash{$cgiparams{'KEY'}}[24] = $cgiparams{'ONLY_PROPOSED'};
ed84e8b8
MT
2246 $confighash{$cgiparams{'KEY'}}[28] = $cgiparams{'PFS'};
2247 $confighash{$cgiparams{'KEY'}}[14] = $cgiparams{'VHOST'};
afd5d8f7 2248 $confighash{$cgiparams{'KEY'}}[27] = $cgiparams{'DPD_ACTION'};
4e156911
AM
2249 $confighash{$cgiparams{'KEY'}}[30] = $cgiparams{'DPD_TIMEOUT'};
2250 $confighash{$cgiparams{'KEY'}}[31] = $cgiparams{'DPD_DELAY'};
ac1cfefa
MT
2251 &General::writehasharray("${General::swroot}/vpn/config", \%confighash);
2252 &writeipsecfiles();
ed84e8b8 2253 if (&vpnenabled) {
ac1cfefa
MT
2254 system('/usr/local/bin/ipsecctrl', 'S', $cgiparams{'KEY'});
2255 sleep $sleepDelay;
2256 }
2257 goto ADVANCED_END;
2258 } else {
4ad0b5b6 2259 $cgiparams{'IKE_VERSION'} = $confighash{$cgiparams{'KEY'}}[29];
ac1cfefa
MT
2260 $cgiparams{'IKE_ENCRYPTION'} = $confighash{$cgiparams{'KEY'}}[18];
2261 $cgiparams{'IKE_INTEGRITY'} = $confighash{$cgiparams{'KEY'}}[19];
2262 $cgiparams{'IKE_GROUPTYPE'} = $confighash{$cgiparams{'KEY'}}[20];
2263 $cgiparams{'IKE_LIFETIME'} = $confighash{$cgiparams{'KEY'}}[16];
2264 $cgiparams{'ESP_ENCRYPTION'} = $confighash{$cgiparams{'KEY'}}[21];
2265 $cgiparams{'ESP_INTEGRITY'} = $confighash{$cgiparams{'KEY'}}[22];
2266 $cgiparams{'ESP_GROUPTYPE'} = $confighash{$cgiparams{'KEY'}}[23];
2267 $cgiparams{'ESP_KEYLIFE'} = $confighash{$cgiparams{'KEY'}}[17];
ed84e8b8 2268 $cgiparams{'COMPRESSION'} = $confighash{$cgiparams{'KEY'}}[13];
ac1cfefa 2269 $cgiparams{'ONLY_PROPOSED'} = $confighash{$cgiparams{'KEY'}}[24];
ed84e8b8
MT
2270 $cgiparams{'PFS'} = $confighash{$cgiparams{'KEY'}}[28];
2271 $cgiparams{'VHOST'} = $confighash{$cgiparams{'KEY'}}[14];
afd5d8f7 2272 $cgiparams{'DPD_ACTION'} = $confighash{$cgiparams{'KEY'}}[27];
4e156911
AM
2273 $cgiparams{'DPD_TIMEOUT'} = $confighash{$cgiparams{'KEY'}}[30];
2274 $cgiparams{'DPD_DELAY'} = $confighash{$cgiparams{'KEY'}}[31];
ed84e8b8 2275
cbb3a8f9
MT
2276 if (!$cgiparams{'DPD_DELAY'}) {
2277 $cgiparams{'DPD_DELAY'} = 30;
2278 }
2279
2280 if (!$cgiparams{'DPD_TIMEOUT'}) {
2281 $cgiparams{'DPD_TIMEOUT'} = 120;
2282 }
2283
ac1cfefa 2284 if ($confighash{$cgiparams{'KEY'}}[3] eq 'net' || $confighash{$cgiparams{'KEY'}}[10]) {
ed84e8b8 2285 $cgiparams{'VHOST'} = 'off';
ac1cfefa
MT
2286 }
2287 }
2288
2289 ADVANCED_ERROR:
ac1cfefa 2290 $checked{'IKE_ENCRYPTION'}{'aes256'} = '';
01b5bc91 2291 $checked{'IKE_ENCRYPTION'}{'aes192'} = '';
ac1cfefa
MT
2292 $checked{'IKE_ENCRYPTION'}{'aes128'} = '';
2293 $checked{'IKE_ENCRYPTION'}{'3des'} = '';
d72a8204
MT
2294 $checked{'IKE_ENCRYPTION'}{'camellia256'} = '';
2295 $checked{'IKE_ENCRYPTION'}{'camellia192'} = '';
2296 $checked{'IKE_ENCRYPTION'}{'camellia128'} = '';
ac1cfefa
MT
2297 my @temp = split('\|', $cgiparams{'IKE_ENCRYPTION'});
2298 foreach my $key (@temp) {$checked{'IKE_ENCRYPTION'}{$key} = "selected='selected'"; }
2299 $checked{'IKE_INTEGRITY'}{'sha2_512'} = '';
01b5bc91 2300 $checked{'IKE_INTEGRITY'}{'sha2_384'} = '';
ac1cfefa
MT
2301 $checked{'IKE_INTEGRITY'}{'sha2_256'} = '';
2302 $checked{'IKE_INTEGRITY'}{'sha'} = '';
2303 $checked{'IKE_INTEGRITY'}{'md5'} = '';
01b5bc91 2304 $checked{'IKE_INTEGRITY'}{'aesxcbc'} = '';
ac1cfefa
MT
2305 @temp = split('\|', $cgiparams{'IKE_INTEGRITY'});
2306 foreach my $key (@temp) {$checked{'IKE_INTEGRITY'}{$key} = "selected='selected'"; }
2307 $checked{'IKE_GROUPTYPE'}{'768'} = '';
2308 $checked{'IKE_GROUPTYPE'}{'1024'} = '';
2309 $checked{'IKE_GROUPTYPE'}{'1536'} = '';
2310 $checked{'IKE_GROUPTYPE'}{'2048'} = '';
2311 $checked{'IKE_GROUPTYPE'}{'3072'} = '';
2312 $checked{'IKE_GROUPTYPE'}{'4096'} = '';
2313 $checked{'IKE_GROUPTYPE'}{'6144'} = '';
2314 $checked{'IKE_GROUPTYPE'}{'8192'} = '';
2315 @temp = split('\|', $cgiparams{'IKE_GROUPTYPE'});
2316 foreach my $key (@temp) {$checked{'IKE_GROUPTYPE'}{$key} = "selected='selected'"; }
63249c67
AF
2317
2318 # 768 is not supported by strongswan
2319 $checked{'IKE_GROUPTYPE'}{'768'} = '';
2320
ac1cfefa 2321 $checked{'ESP_ENCRYPTION'}{'aes256'} = '';
01b5bc91 2322 $checked{'ESP_ENCRYPTION'}{'aes192'} = '';
ac1cfefa
MT
2323 $checked{'ESP_ENCRYPTION'}{'aes128'} = '';
2324 $checked{'ESP_ENCRYPTION'}{'3des'} = '';
d72a8204
MT
2325 $checked{'ESP_ENCRYPTION'}{'camellia256'} = '';
2326 $checked{'ESP_ENCRYPTION'}{'camellia192'} = '';
2327 $checked{'ESP_ENCRYPTION'}{'camellia128'} = '';
ac1cfefa
MT
2328 @temp = split('\|', $cgiparams{'ESP_ENCRYPTION'});
2329 foreach my $key (@temp) {$checked{'ESP_ENCRYPTION'}{$key} = "selected='selected'"; }
2330 $checked{'ESP_INTEGRITY'}{'sha2_512'} = '';
01b5bc91 2331 $checked{'ESP_INTEGRITY'}{'sha2_384'} = '';
ac1cfefa
MT
2332 $checked{'ESP_INTEGRITY'}{'sha2_256'} = '';
2333 $checked{'ESP_INTEGRITY'}{'sha1'} = '';
2334 $checked{'ESP_INTEGRITY'}{'md5'} = '';
01b5bc91 2335 $checked{'ESP_INTEGRITY'}{'aesxcbc'} = '';
ac1cfefa
MT
2336 @temp = split('\|', $cgiparams{'ESP_INTEGRITY'});
2337 foreach my $key (@temp) {$checked{'ESP_INTEGRITY'}{$key} = "selected='selected'"; }
ac1cfefa 2338 $checked{'ESP_GROUPTYPE'}{$cgiparams{'ESP_GROUPTYPE'}} = "selected='selected'";
ed84e8b8 2339
ed84e8b8
MT
2340 $checked{'COMPRESSION'} = $cgiparams{'COMPRESSION'} eq 'on' ? "checked='checked'" : '' ;
2341 $checked{'ONLY_PROPOSED'} = $cgiparams{'ONLY_PROPOSED'} eq 'on' ? "checked='checked'" : '' ;
2342 $checked{'PFS'} = $cgiparams{'PFS'} eq 'on' ? "checked='checked'" : '' ;
2343 $checked{'VHOST'} = $cgiparams{'VHOST'} eq 'on' ? "checked='checked'" : '' ;
ac1cfefa 2344
4ad0b5b6
MT
2345 $selected{'IKE_VERSION'}{'ikev1'} = '';
2346 $selected{'IKE_VERSION'}{'ikev2'} = '';
2347 $selected{'IKE_VERSION'}{$cgiparams{'IKE_VERSION'}} = "selected='selected'";
2348
cbb3a8f9
MT
2349 $selected{'DPD_ACTION'}{'clear'} = '';
2350 $selected{'DPD_ACTION'}{'hold'} = '';
2351 $selected{'DPD_ACTION'}{'restart'} = '';
afd5d8f7 2352 $selected{'DPD_ACTION'}{'none'} = '';
cbb3a8f9
MT
2353 $selected{'DPD_ACTION'}{$cgiparams{'DPD_ACTION'}} = "selected='selected'";
2354
ac1cfefa 2355 &Header::showhttpheaders();
7d44bfee 2356 &Header::openpage($Lang::tr{'ipsec'}, 1, '');
ed84e8b8 2357 &Header::openbigbox('100%', 'left', '', $errormessage);
ac1cfefa
MT
2358
2359 if ($errormessage) {
ed84e8b8 2360 &Header::openbox('100%', 'left', $Lang::tr{'error messages'});
ac1cfefa
MT
2361 print "<class name='base'>$errormessage";
2362 print "&nbsp;</class>";
2363 &Header::closebox();
2364 }
2365
2366 if ($warnmessage) {
ed84e8b8 2367 &Header::openbox('100%', 'left', $Lang::tr{'warning messages'});
ac1cfefa
MT
2368 print "<class name='base'>$warnmessage";
2369 print "&nbsp;</class>";
2370 &Header::closebox();
2371 }
2372
ed84e8b8
MT
2373 &Header::openbox('100%', 'left', "$Lang::tr{'advanced'}:");
2374 print <<EOF
2375 <form method='post' enctype='multipart/form-data' action='$ENV{'SCRIPT_NAME'}'>
2376 <input type='hidden' name='ADVANCED' value='yes' />
2377 <input type='hidden' name='KEY' value='$cgiparams{'KEY'}' />
ac1cfefa 2378
ed84e8b8 2379 <table width='100%'>
63e3da59
MT
2380 <thead>
2381 <tr>
cbb3a8f9 2382 <th width="15%"></th>
63e3da59
MT
2383 <th>IKE</th>
2384 <th>ESP</th>
2385 </tr>
2386 </thead>
2387 <tbody>
4ad0b5b6
MT
2388 <tr>
2389 <td>$Lang::tr{'vpn keyexchange'}:</td>
2390 <td>
2391 <select name='IKE_VERSION'>
2392 <option value='ikev2' $selected{'IKE_VERSION'}{'ikev2'}>IKEv2</option>
2393 <option value='ikev1' $selected{'IKE_VERSION'}{'ikev1'}>IKEv1</option>
2394 </select>
2395 </td>
2396 <td></td>
2397 </tr>
63e3da59 2398 <tr>
cbb3a8f9 2399 <td class='boldbase' width="15%">$Lang::tr{'encryption'}</td>
63e3da59
MT
2400 <td class='boldbase'>
2401 <select name='IKE_ENCRYPTION' multiple='multiple' size='6' style='width: 100%'>
2402 <option value='aes256' $checked{'IKE_ENCRYPTION'}{'aes256'}>AES (256 bit)</option>
2403 <option value='aes192' $checked{'IKE_ENCRYPTION'}{'aes192'}>AES (192 bit)</option>
2404 <option value='aes128' $checked{'IKE_ENCRYPTION'}{'aes128'}>AES (128 bit)</option>
2405 <option value='3des' $checked{'IKE_ENCRYPTION'}{'3des'}>3DES</option>
2406 <option value='camellia256' $checked{'IKE_ENCRYPTION'}{'camellia256'}>Camellia (256 bit)</option>
2407 <option value='camellia192' $checked{'IKE_ENCRYPTION'}{'camellia192'}>Camellia (192 bit)</option>
2408 <option value='camellia128' $checked{'IKE_ENCRYPTION'}{'camellia128'}>Camellia (128 bit)</option>
2409 </select>
2410 </td>
2411 <td class='boldbase'>
2412 <select name='ESP_ENCRYPTION' multiple='multiple' size='6' style='width: 100%'>
2413 <option value='aes256' $checked{'ESP_ENCRYPTION'}{'aes256'}>AES (256 bit)</option>
2414 <option value='aes192' $checked{'ESP_ENCRYPTION'}{'aes192'}>AES (192 bit)</option>
2415 <option value='aes128' $checked{'ESP_ENCRYPTION'}{'aes128'}>AES (128 bit)</option>
2416 <option value='3des' $checked{'ESP_ENCRYPTION'}{'3des'}>3DES</option>
2417 <option value='camellia256' $checked{'ESP_ENCRYPTION'}{'camellia256'}>Camellia (256 bit)</option>
2418 <option value='camellia192' $checked{'ESP_ENCRYPTION'}{'camellia192'}>Camellia (192 bit)</option>
2419 <option value='camellia128' $checked{'ESP_ENCRYPTION'}{'camellia128'}>Camellia (128 bit)</option>
2420 </select>
2421 </td>
2422 </tr>
ed84e8b8 2423
63e3da59 2424 <tr>
cbb3a8f9 2425 <td class='boldbase' width="15%">$Lang::tr{'integrity'}</td>
63e3da59
MT
2426 <td class='boldbase'>
2427 <select name='IKE_INTEGRITY' multiple='multiple' size='6' style='width: 100%'>
2428 <option value='sha2_512' $checked{'IKE_INTEGRITY'}{'sha2_512'}>SHA2 512 bit</option>
2429 <option value='sha2_384' $checked{'IKE_INTEGRITY'}{'sha2_384'}>SHA2 384 bit</option>
2430 <option value='sha2_256' $checked{'IKE_INTEGRITY'}{'sha2_256'}>SHA2 256 bit</option>
2431 <option value='sha' $checked{'IKE_INTEGRITY'}{'sha'}>SHA1</option>
2432 <option value='md5' $checked{'IKE_INTEGRITY'}{'md5'}>MD5</option>
2433 <option value='aesxcbc' $checked{'IKE_INTEGRITY'}{'aesxcbc'}>AES XCBC</option>
2434 </select>
2435 </td>
2436 <td class='boldbase'>
2437 <select name='ESP_INTEGRITY' multiple='multiple' size='6' style='width: 100%'>
2438 <option value='sha2_512' $checked{'ESP_INTEGRITY'}{'sha2_512'}>SHA2 512 bit</option>
2439 <option value='sha2_384' $checked{'ESP_INTEGRITY'}{'sha2_384'}>SHA2 384 bit</option>
2440 <option value='sha2_256' $checked{'ESP_INTEGRITY'}{'sha2_256'}>SHA2 256 bit</option>
2441 <option value='sha1' $checked{'ESP_INTEGRITY'}{'sha1'}>SHA1</option>
2442 <option value='md5' $checked{'ESP_INTEGRITY'}{'md5'}>MD5</option>
2443 <option value='aesxcbc' $checked{'ESP_INTEGRITY'}{'aesxcbc'}>AES XCBC</option>
2444 </select>
2445 </td>
2446 </tr>
2447 <tr>
cbb3a8f9 2448 <td class='boldbase' width="15%">$Lang::tr{'lifetime'}</td>
63e3da59
MT
2449 <td class='boldbase'>
2450 <input type='text' name='IKE_LIFETIME' value='$cgiparams{'IKE_LIFETIME'}' size='5' /> $Lang::tr{'hours'}
2451 </td>
2452 <td class='boldbase'>
2453 <input type='text' name='ESP_KEYLIFE' value='$cgiparams{'ESP_KEYLIFE'}' size='5' /> $Lang::tr{'hours'}
2454 </td>
2455 </tr>
2456 <tr>
cbb3a8f9 2457 <td class='boldbase' width="15%">$Lang::tr{'grouptype'}</td>
63e3da59
MT
2458 <td class='boldbase'>
2459 <select name='IKE_GROUPTYPE' multiple='multiple' size='6' style='width: 100%'>
2460 <option value='e521' $checked{'IKE_GROUPTYPE'}{'e521'}>ECP-521 (NIST)</option>
2461 <option value='e384' $checked{'IKE_GROUPTYPE'}{'e384'}>ECP-384 (NIST)</option>
2462 <option value='e256' $checked{'IKE_GROUPTYPE'}{'e256'}>ECP-256 (NIST)</option>
2463 <option value='e224' $checked{'IKE_GROUPTYPE'}{'e224'}>ECP-224 (NIST)</option>
2464 <option value='e192' $checked{'IKE_GROUPTYPE'}{'e192'}>ECP-192 (NIST)</option>
2465 <option value='e512bp' $checked{'IKE_GROUPTYPE'}{'e512bp'}>ECP-512 (Brainpool)</option>
2466 <option value='e384bp' $checked{'IKE_GROUPTYPE'}{'e384bp'}>ECP-384 (Brainpool)</option>
2467 <option value='e256bp' $checked{'IKE_GROUPTYPE'}{'e256bp'}>ECP-256 (Brainpool)</option>
2468 <option value='e224bp' $checked{'IKE_GROUPTYPE'}{'e224bp'}>ECP-224 (Brainpool)</option>
2469 <option value='8192' $checked{'IKE_GROUPTYPE'}{'8192'}>MODP-8192</option>
2470 <option value='6144' $checked{'IKE_GROUPTYPE'}{'6144'}>MODP-6144</option>
2471 <option value='4096' $checked{'IKE_GROUPTYPE'}{'4096'}>MODP-4096</option>
2472 <option value='3072' $checked{'IKE_GROUPTYPE'}{'3072'}>MODP-3072</option>
2473 <option value='2048s256' $checked{'IKE_GROUPTYPE'}{'2048s256'}>MODP-2048/256</option>
2474 <option value='2048s224' $checked{'IKE_GROUPTYPE'}{'2048s224'}>MODP-2048/224</option>
2475 <option value='2048s160' $checked{'IKE_GROUPTYPE'}{'2048s160'}>MODP-2048/160</option>
2476 <option value='2048' $checked{'IKE_GROUPTYPE'}{'2048'}>MODP-2048</option>
2477 <option value='1536' $checked{'IKE_GROUPTYPE'}{'1536'}>MODP-1536</option>
2478 <option value='1024' $checked{'IKE_GROUPTYPE'}{'1024'}>MODP-1024</option>
2479 </select>
2480 </td>
2481 <td></td>
2482 </tr>
2483 </tbody>
2484 </table>
2485
cbb3a8f9
MT
2486 <br><br>
2487
2488 <h2>$Lang::tr{'dead peer detection'}</h2>
2489
2490 <table width="100%">
2491 <tr>
2492 <td width="15%">$Lang::tr{'dpd action'}:</td>
2493 <td>
2494 <select name='DPD_ACTION'>
afd5d8f7 2495 <option value='none' $selected{'DPD_ACTION'}{'none'}>- $Lang::tr{'disabled'} -</option>
cbb3a8f9
MT
2496 <option value='clear' $selected{'DPD_ACTION'}{'clear'}>clear</option>
2497 <option value='hold' $selected{'DPD_ACTION'}{'hold'}>hold</option>
2498 <option value='restart' $selected{'DPD_ACTION'}{'restart'}>restart</option>
2499 </select>
2500 </td>
2501 </tr>
2502 <tr>
2503 <td width="15%">$Lang::tr{'dpd timeout'}:</td>
2504 <td>
2505 <input type='text' name='DPD_TIMEOUT' size='5' value='$cgiparams{'DPD_TIMEOUT'}' />
2506 </td>
2507 </tr>
2508 <tr>
2509 <td width="15%">$Lang::tr{'dpd delay'}:</td>
2510 <td>
2511 <input type='text' name='DPD_DELAY' size='5' value='$cgiparams{'DPD_DELAY'}' />
2512 </td>
2513 </tr>
2514 </table>
2515
63e3da59
MT
2516 <hr>
2517
2518 <table width="100%">
2519 <tr>
cbb3a8f9 2520 <td>
63e3da59
MT
2521 <label>
2522 <input type='checkbox' name='ONLY_PROPOSED' $checked{'ONLY_PROPOSED'} />
cbb88df1 2523 IKE+ESP: $Lang::tr{'use only proposed settings'}
63e3da59
MT
2524 </label>
2525 </td>
2526 </tr>
2527 <tr>
cbb3a8f9 2528 <td>
63e3da59
MT
2529 <label>
2530 <input type='checkbox' name='PFS' $checked{'PFS'} />
2531 $Lang::tr{'pfs yes no'}
2532 </label>
2533 </td>
2534 </tr>
2535 <tr>
cbb3a8f9 2536 <td>
63e3da59
MT
2537 <label>
2538 <input type='checkbox' name='COMPRESSION' $checked{'COMPRESSION'} />
2539 $Lang::tr{'vpn payload compression'}
2540 </label>
2541 </td>
ed84e8b8
MT
2542 </tr>
2543EOF
2544 ;
ac1cfefa 2545 if ($confighash{$cgiparams{'KEY'}}[3] eq 'net') {
ed84e8b8 2546 print "<tr><td><input type='hidden' name='VHOST' value='off' /></td></tr>";
ac1cfefa 2547 } elsif ($confighash{$cgiparams{'KEY'}}[10]) {
63e3da59
MT
2548 print "<tr><td><label><input type='checkbox' name='VHOST' $checked{'VHOST'} disabled='disabled' />";
2549 print " $Lang::tr{'vpn vhost'}</label></td></tr>";
ac1cfefa 2550 } else {
63e3da59
MT
2551 print "<tr><td><label><input type='checkbox' name='VHOST' $checked{'VHOST'} />";
2552 print " $Lang::tr{'vpn vhost'}</label></td></tr>";
ac1cfefa 2553 }
ed84e8b8 2554
63e3da59
MT
2555 print <<EOF;
2556 <tr>
4e156911 2557 <td align='right' colspan='2'>
63e3da59
MT
2558 <input type='submit' name='ACTION' value='$Lang::tr{'save'}' />
2559 <input type='submit' name='ACTION' value='$Lang::tr{'cancel'}' />
2560 </td>
2561 </tr>
2562 </table></form>
2563EOF
2564
ac1cfefa 2565 &Header::closebox();
ac1cfefa
MT
2566 &Header::closebigbox();
2567 &Header::closepage();
2568 exit(0);
2569
2570 ADVANCED_END:
2571}
2572
2573###
2574### Default status page
2575###
2576 %cgiparams = ();
2577 %cahash = ();
2578 %confighash = ();
2579 &General::readhash("${General::swroot}/vpn/settings", \%cgiparams);
2580 &General::readhasharray("${General::swroot}/vpn/caconfig", \%cahash);
2581 &General::readhasharray("${General::swroot}/vpn/config", \%confighash);
ed84e8b8 2582 $cgiparams{'CA_NAME'} = '';
ac1cfefa 2583
73c7eff8 2584 my @status = `/usr/local/bin/ipsecctrl I 2>/dev/null`;
ac1cfefa
MT
2585
2586 # suggest a default name for this side
2587 if ($cgiparams{'VPN_IP'} eq '' && -e "${General::swroot}/red/active") {
2588 if (open(IPADDR, "${General::swroot}/red/local-ipaddress")) {
2589 my $ipaddr = <IPADDR>;
2590 close IPADDR;
2591 chomp ($ipaddr);
2592 $cgiparams{'VPN_IP'} = (gethostbyaddr(pack("C4", split(/\./, $ipaddr)), 2))[0];
2593 if ($cgiparams{'VPN_IP'} eq '') {
2594 $cgiparams{'VPN_IP'} = $ipaddr;
2595 }
2596 }
2597 }
2598 # no IP found, use %defaultroute
2599 $cgiparams{'VPN_IP'} ='%defaultroute' if ($cgiparams{'VPN_IP'} eq '');
2600
2601 $cgiparams{'VPN_DELAYED_START'} = 0 if (! defined ($cgiparams{'VPN_DELAYED_START'}));
ae2782ba 2602 $checked{'ENABLED'} = $cgiparams{'ENABLED'} eq 'on' ? "checked='checked'" : '';
ac1cfefa
MT
2603
2604 &Header::showhttpheaders();
7d44bfee 2605 &Header::openpage($Lang::tr{'ipsec'}, 1, '');
ed84e8b8 2606 &Header::openbigbox('100%', 'left', '', $errormessage);
ac1cfefa
MT
2607
2608 if ($errormessage) {
ed84e8b8 2609 &Header::openbox('100%', 'left', $Lang::tr{'error messages'});
ac1cfefa
MT
2610 print "<class name='base'>$errormessage\n";
2611 print "&nbsp;</class>\n";
2612 &Header::closebox();
2613 }
2614
ed84e8b8 2615 &Header::openbox('100%', 'left', $Lang::tr{'global settings'});
ac1cfefa 2616 print <<END
ed84e8b8 2617 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
ac1cfefa
MT
2618 <table width='100%'>
2619 <tr>
5fd30232 2620 <td width='20%' class='base' nowrap='nowrap'>$Lang::tr{'vpn red name'}:</td>
ed84e8b8
MT
2621 <td width='20%'><input type='text' name='VPN_IP' value='$cgiparams{'VPN_IP'}' /></td>
2622 <td width='20%' class='base'>$Lang::tr{'enabled'}<input type='checkbox' name='ENABLED' $checked{'ENABLED'} /></td>
ac1cfefa 2623 </tr>
ac1cfefa
MT
2624END
2625 ;
ac1cfefa 2626print <<END
ed84e8b8
MT
2627 <tr>
2628 <td class='base' nowrap='nowrap'>$Lang::tr{'vpn delayed start'}:&nbsp;<img src='/blob.gif' alt='*' /><img src='/blob.gif' alt='*' /></td>
2629 <td ><input type='text' name='VPN_DELAYED_START' value='$cgiparams{'VPN_DELAYED_START'}' /></td>
ed84e8b8 2630 </tr>
9d85ac3b
CS
2631 <tr>
2632 <td class='base' nowrap='nowrap'>$Lang::tr{'host to net vpn'}:&nbsp;<img src='/blob.gif' alt='*' /></td>
2633 <td ><input type='text' name='RW_NET' value='$cgiparams{'RW_NET'}' /></td>
2634 </tr>
0afd8493
AM
2635</table>
2636<br>
ac1cfefa
MT
2637<hr />
2638<table width='100%'>
2639<tr>
2640 <td class='base' valign='top'><img src='/blob.gif' alt='*' /></td>
0afd8493 2641 <td width='70%' class='base' valign='top'>$Lang::tr{'this field may be blank'}</td><td width='30%' align='right' class='base'><input type='submit' name='ACTION' value='$Lang::tr{'save'}' /></td>
ed84e8b8
MT
2642</tr>
2643<tr>
2644 <td class='base' valign='top' nowrap='nowrap'><img src='/blob.gif' alt='*' /><img src='/blob.gif' alt='*' />&nbsp;</td>
2645 <td class='base'> <font class='base'>$Lang::tr{'vpn delayed start help'}</font></td>
0afd8493 2646 <td></td>
ac1cfefa
MT
2647</tr>
2648</table>
2649END
2650;
2651 print "</form>";
2652 &Header::closebox();
2653
ed84e8b8 2654 &Header::openbox('100%', 'left', $Lang::tr{'connection status and controlc'});
ac1cfefa 2655 print <<END
e9850821 2656 <table width='100%' cellspacing='1' cellpadding='0' class='tbl'>
ac1cfefa 2657 <tr>
e9850821
AM
2658 <th width='10%' class='boldbase' align='center'><b>$Lang::tr{'name'}</b></th>
2659 <th width='22%' class='boldbase' align='center'><b>$Lang::tr{'type'}</b></th>
2660 <th width='23%' class='boldbase' align='center'><b>$Lang::tr{'common name'}</b></th>
2661 <th width='30%' class='boldbase' align='center'><b>$Lang::tr{'remark'}</b></th>
2662 <th width='10%' class='boldbase' align='center'><b>$Lang::tr{'status'}</b></th>
2663 <th class='boldbase' align='center' colspan='6'><b>$Lang::tr{'action'}</b></th>
ac1cfefa
MT
2664 </tr>
2665END
2666 ;
2667 my $id = 0;
2668 my $gif;
eff2dbf8 2669 foreach my $key (sort { ncmp ($confighash{$a}[1],$confighash{$b}[1]) } keys %confighash) {
ac1cfefa
MT
2670 if ($confighash{$key}[0] eq 'on') { $gif = 'on.gif'; } else { $gif = 'off.gif'; }
2671
2672 if ($id % 2) {
e9850821
AM
2673 print "<tr>";
2674 $col="bgcolor='$color{'color20'}'";
ac1cfefa 2675 } else {
e9850821
AM
2676 print "<tr>";
2677 $col="bgcolor='$color{'color22'}'";
ac1cfefa 2678 }
e9850821
AM
2679 print "<td align='center' nowrap='nowrap' $col>$confighash{$key}[1]</td>";
2680 print "<td align='center' nowrap='nowrap' $col>" . $Lang::tr{"$confighash{$key}[3]"} . " (" . $Lang::tr{"$confighash{$key}[4]"} . ") $confighash{$key}[29]</td>";
ed84e8b8 2681 if ($confighash{$key}[2] eq '%auth-dn') {
e9850821 2682 print "<td align='left' nowrap='nowrap' $col>$confighash{$key}[9]</td>";
ed84e8b8 2683 } elsif ($confighash{$key}[4] eq 'cert') {
e9850821 2684 print "<td align='left' nowrap='nowrap' $col>$confighash{$key}[2]</td>";
ac1cfefa 2685 } else {
e9850821 2686 print "<td align='left' $col>&nbsp;</td>";
ac1cfefa 2687 }
e9850821 2688 print "<td align='center' $col>$confighash{$key}[25]</td>";
0afd8493 2689 my $col1="bgcolor='${Header::colourred}'";
5fd30232 2690 # get real state
0afd8493 2691 my $active = "<b><font color='#FFFFFF'>$Lang::tr{'capsclosed'}</font></b>";
5fd30232 2692 foreach my $line (@status) {
a3323b6f 2693 if (($line =~ /\"$confighash{$key}[1]\".*IPsec SA established/) ||
264c0195 2694 ($line =~ /$confighash{$key}[1]\{.*INSTALLED/))
4b4b8959 2695 {
0afd8493
AM
2696 $col1="bgcolor='${Header::colourgreen}'";
2697 $active = "<b><font color='#FFFFFF'>$Lang::tr{'capsopen'}</font></b>";
ac1cfefa
MT
2698 }
2699 }
5fd30232 2700 # move to blueif really down
0afd8493
AM
2701 if ($confighash{$key}[0] eq 'off' && $col1 =~ /${Header::colourred}/ ) {
2702 $col1="bgcolor='${Header::colourblue}'";
2703 $active = "<b><font color='#FFFFFF'>$Lang::tr{'capsclosed'}</font></b>";
5fd30232 2704 }
ac1cfefa 2705 print <<END
0afd8493 2706 <td align='center' $col1>$active</td>
e9850821 2707 <td align='center' $col>
ed84e8b8
MT
2708 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
2709 <input type='image' name='$Lang::tr{'restart'}' src='/images/reload.gif' alt='$Lang::tr{'restart'}' title='$Lang::tr{'restart'}' />
ac1cfefa
MT
2710 <input type='hidden' name='ACTION' value='$Lang::tr{'restart'}' />
2711 <input type='hidden' name='KEY' value='$key' />
ed84e8b8
MT
2712 </form>
2713 </td>
ac1cfefa
MT
2714END
2715 ;
ed84e8b8 2716 if (($confighash{$key}[4] eq 'cert') && ($confighash{$key}[2] ne '%auth-dn')) {
ac1cfefa 2717 print <<END
e9850821 2718 <td align='center' $col>
ed84e8b8
MT
2719 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
2720 <input type='image' name='$Lang::tr{'show certificate'}' src='/images/info.gif' alt='$Lang::tr{'show certificate'}' title='$Lang::tr{'show certificate'}' />
ac1cfefa
MT
2721 <input type='hidden' name='ACTION' value='$Lang::tr{'show certificate'}' />
2722 <input type='hidden' name='KEY' value='$key' />
ed84e8b8
MT
2723 </form>
2724 </td>
ac1cfefa
MT
2725END
2726 ; } else {
e9850821 2727 print "<td width='2%' $col>&nbsp;</td>";
ac1cfefa
MT
2728 }
2729 if ($confighash{$key}[4] eq 'cert' && -f "${General::swroot}/certs/$confighash{$key}[1].p12") {
2730 print <<END
e9850821 2731 <td align='center' $col>
ed84e8b8
MT
2732 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
2733 <input type='image' name='$Lang::tr{'download pkcs12 file'}' src='/images/floppy.gif' alt='$Lang::tr{'download pkcs12 file'}' title='$Lang::tr{'download pkcs12 file'}' />
ac1cfefa
MT
2734 <input type='hidden' name='ACTION' value='$Lang::tr{'download pkcs12 file'}' />
2735 <input type='hidden' name='KEY' value='$key' />
ed84e8b8
MT
2736 </form>
2737 </td>
ac1cfefa 2738END
ed84e8b8 2739 ; } elsif (($confighash{$key}[4] eq 'cert') && ($confighash{$key}[2] ne '%auth-dn')) {
ac1cfefa 2740 print <<END
e9850821 2741 <td align='center' $col>
ed84e8b8
MT
2742 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
2743 <input type='image' name='$Lang::tr{'download certificate'}' src='/images/floppy.gif' alt='$Lang::tr{'download certificate'}' title='$Lang::tr{'download certificate'}' />
ac1cfefa
MT
2744 <input type='hidden' name='ACTION' value='$Lang::tr{'download certificate'}' />
2745 <input type='hidden' name='KEY' value='$key' />
ed84e8b8
MT
2746 </form>
2747 </td>
ac1cfefa
MT
2748END
2749 ; } else {
e9850821 2750 print "<td width='2%' $col>&nbsp;</td>";
ac1cfefa
MT
2751 }
2752 print <<END
e9850821 2753 <td align='center' $col>
ed84e8b8
MT
2754 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
2755 <input type='image' name='$Lang::tr{'toggle enable disable'}' src='/images/$gif' alt='$Lang::tr{'toggle enable disable'}' title='$Lang::tr{'toggle enable disable'}' />
ac1cfefa
MT
2756 <input type='hidden' name='ACTION' value='$Lang::tr{'toggle enable disable'}' />
2757 <input type='hidden' name='KEY' value='$key' />
ed84e8b8
MT
2758 </form>
2759 </td>
ac1cfefa 2760
e9850821 2761 <td align='center' $col>
ed84e8b8 2762 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
ac1cfefa 2763 <input type='hidden' name='ACTION' value='$Lang::tr{'edit'}' />
ed84e8b8 2764 <input type='image' name='$Lang::tr{'edit'}' src='/images/edit.gif' alt='$Lang::tr{'edit'}' title='$Lang::tr{'edit'}' />
ac1cfefa 2765 <input type='hidden' name='KEY' value='$key' />
ed84e8b8
MT
2766 </form>
2767 </td>
e9850821 2768 <td align='center' $col>
ed84e8b8 2769 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
ac1cfefa 2770 <input type='hidden' name='ACTION' value='$Lang::tr{'remove'}' />
ed84e8b8 2771 <input type='image' name='$Lang::tr{'remove'}' src='/images/delete.gif' alt='$Lang::tr{'remove'}' title='$Lang::tr{'remove'}' />
ac1cfefa 2772 <input type='hidden' name='KEY' value='$key' />
ed84e8b8
MT
2773 </form>
2774 </td>
ac1cfefa
MT
2775 </tr>
2776END
2777 ;
2778 $id++;
2779 }
ed84e8b8 2780 print "</table>";
ac1cfefa
MT
2781
2782 # If the config file contains entries, print Key to action icons
2783 if ( $id ) {
2784 print <<END
2785 <table>
2786 <tr>
2787 <td class='boldbase'>&nbsp; <b>$Lang::tr{'legend'}:</b></td>
2788 <td>&nbsp; <img src='/images/on.gif' alt='$Lang::tr{'click to disable'}' /></td>
2789 <td class='base'>$Lang::tr{'click to disable'}</td>
2790 <td>&nbsp; &nbsp; <img src='/images/info.gif' alt='$Lang::tr{'show certificate'}' /></td>
2791 <td class='base'>$Lang::tr{'show certificate'}</td>
2792 <td>&nbsp; &nbsp; <img src='/images/edit.gif' alt='$Lang::tr{'edit'}' /></td>
2793 <td class='base'>$Lang::tr{'edit'}</td>
2794 <td>&nbsp; &nbsp; <img src='/images/delete.gif' alt='$Lang::tr{'remove'}' /></td>
2795 <td class='base'>$Lang::tr{'remove'}</td>
2796 </tr>
2797 <tr>
2798 <td>&nbsp; </td>
2799 <td>&nbsp; <img src='/images/off.gif' alt='?OFF' /></td>
2800 <td class='base'>$Lang::tr{'click to enable'}</td>
2801 <td>&nbsp; &nbsp; <img src='/images/floppy.gif' alt='?FLOPPY' /></td>
2802 <td class='base'>$Lang::tr{'download certificate'}</td>
2803 <td>&nbsp; &nbsp; <img src='/images/reload.gif' alt='?RELOAD'/></td>
2804 <td class='base'>$Lang::tr{'restart'}</td>
2805 </tr>
2806 </table>
2807END
2808 ;
2809 }
2810
2811 print <<END
2812 <table width='100%'>
0afd8493 2813 <tr><td align='right' colspan='9'>
ed84e8b8
MT
2814 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
2815 <input type='submit' name='ACTION' value='$Lang::tr{'add'}' />
2816 </form>
2817 </td></tr>
ac1cfefa
MT
2818 </table>
2819END
2820 ;
2821 &Header::closebox();
2822
0afd8493 2823 &Header::openbox('100%', 'left', "$Lang::tr{'certificate authorities'}");
ac1cfefa 2824 print <<EOF
e9850821 2825 <table width='100%' cellspacing='1' cellpadding='0' class='tbl'>
ac1cfefa 2826 <tr>
e9850821
AM
2827 <th width='25%' class='boldbase' align='center'><b>$Lang::tr{'name'}</b></th>
2828 <th width='65%' class='boldbase' align='center'><b>$Lang::tr{'subject'}</b></th>
2829 <th width='10%' class='boldbase' colspan='3' align='center'><b>$Lang::tr{'action'}</b></th>
ac1cfefa
MT
2830 </tr>
2831EOF
2832 ;
e9850821
AM
2833 my $col1="bgcolor='$color{'color22'}'";
2834 my $col2="bgcolor='$color{'color20'}'";
ac1cfefa 2835 if (-f "${General::swroot}/ca/cacert.pem") {
ed84e8b8 2836 my $casubject = &Header::cleanhtml(getsubjectfromcert ("${General::swroot}/ca/cacert.pem"));
ac1cfefa 2837 print <<END
e9850821
AM
2838 <tr>
2839 <td class='base' $col1>$Lang::tr{'root certificate'}</td>
2840 <td class='base' $col1>$casubject</td>
2841 <td width='3%' align='center' $col1>
ed84e8b8 2842 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
ac1cfefa 2843 <input type='hidden' name='ACTION' value='$Lang::tr{'show root certificate'}' />
ed84e8b8
MT
2844 <input type='image' name='$Lang::tr{'edit'}' src='/images/info.gif' alt='$Lang::tr{'show root certificate'}' title='$Lang::tr{'show root certificate'}' />
2845 </form>
2846 </td>
e9850821 2847 <td width='3%' align='center' $col1>
ed84e8b8
MT
2848 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
2849 <input type='image' name='$Lang::tr{'download root certificate'}' src='/images/floppy.gif' alt='$Lang::tr{'download root certificate'}' title='$Lang::tr{'download root certificate'}' />
ac1cfefa 2850 <input type='hidden' name='ACTION' value='$Lang::tr{'download root certificate'}' />
ed84e8b8
MT
2851 </form>
2852 </td>
e9850821 2853 <td width='4%' $col1>&nbsp;</td></tr>
ac1cfefa
MT
2854END
2855 ;
2856 } else {
2857 # display rootcert generation buttons
2858 print <<END
e9850821
AM
2859 <tr>
2860 <td class='base' $col1>$Lang::tr{'root certificate'}:</td>
2861 <td class='base' $col1>$Lang::tr{'not present'}</td>
2862 <td colspan='3' $col1>&nbsp;</td></tr>
ac1cfefa
MT
2863END
2864 ;
2865 }
2866
2867 if (-f "${General::swroot}/certs/hostcert.pem") {
ed84e8b8 2868 my $hostsubject = &Header::cleanhtml(getsubjectfromcert ("${General::swroot}/certs/hostcert.pem"));
ac1cfefa
MT
2869
2870 print <<END
e9850821
AM
2871 <tr>
2872 <td class='base' $col2>$Lang::tr{'host certificate'}</td>
2873 <td class='base' $col2>$hostsubject</td>
2874 <td width='3%' align='center' $col2>
ed84e8b8 2875 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
ac1cfefa 2876 <input type='hidden' name='ACTION' value='$Lang::tr{'show host certificate'}' />
ed84e8b8
MT
2877 <input type='image' name='$Lang::tr{'show host certificate'}' src='/images/info.gif' alt='$Lang::tr{'show host certificate'}' title='$Lang::tr{'show host certificate'}' />
2878 </form>
2879 </td>
e9850821 2880 <td width='3%' align='center' $col2>
ed84e8b8 2881 <form method='post' action='$ENV{'SCRIPT_NAME'}'>
e602416f
SS
2882 <input type='image' name="$Lang::tr{'download host certificate'}" src='/images/floppy.gif' alt="$Lang::tr{'download host certificate'}" title="$Lang::tr{'download host certificate'}" />
2883 <input type='hidden' name='ACTION' value="$Lang::tr{'download host certificate'}" />
ed84e8b8
MT
2884 </form>
2885 </td>
e9850821 2886 <td width='4%' $col2>&nbsp;</td></tr>
ac1cfefa
MT
2887END
2888 ;
2889 } else {
2890 # Nothing
2891 print <<END
e9850821
AM
2892 <tr>
2893 <td width='25%' class='base' $col2>$Lang::tr{'host certificate'}:</td>
2894 <td class='base' $col2>$Lang::tr{'not present'}</td>
2895 <td colspan='3' $col2>&nbsp;</td></tr>
ac1cfefa
MT
2896END
2897 ;
2898 }
5fd30232 2899
e9850821
AM
2900 my $rowcolor = 0;
2901 if (keys %cahash > 0) {
2902 foreach my $key (keys %cahash) {
2903 if ($rowcolor++ % 2) {
2904 print "<tr>";
2905 $col="bgcolor='$color{'color20'}'";
2906 } else {
2907 print "<tr>";
2908 $col="bgcolor='$color{'color22'}'";
2909 }
2910 print "<td class='base' $col>$cahash{$key}[0]</td>\n";
2911 print "<td class='base' $col>$cahash{$key}[1]</td>\n";
ac1cfefa 2912 print <<END
e9850821 2913 <td align='center' $col>
ed84e8b8
MT
2914 <form method='post' name='cafrm${key}a' action='$ENV{'SCRIPT_NAME'}'>
2915 <input type='image' name='$Lang::tr{'show ca certificate'}' src='/images/info.gif' alt='$Lang::tr{'show ca certificate'}' title='$Lang::tr{'show ca certificate'}' />
ac1cfefa
MT
2916 <input type='hidden' name='ACTION' value='$Lang::tr{'show ca certificate'}' />
2917 <input type='hidden' name='KEY' value='$key' />
ed84e8b8
MT
2918 </form>
2919 </td>
e9850821 2920 <td align='center' $col>
ed84e8b8
MT
2921 <form method='post' name='cafrm${key}b' action='$ENV{'SCRIPT_NAME'}'>
2922 <input type='image' name='$Lang::tr{'download ca certificate'}' src='/images/floppy.gif' alt='$Lang::tr{'download ca certificate'}' title='$Lang::tr{'download ca certificate'}' />
ac1cfefa
MT
2923 <input type='hidden' name='ACTION' value='$Lang::tr{'download ca certificate'}' />
2924 <input type='hidden' name='KEY' value='$key' />
ed84e8b8
MT
2925 </form>
2926 </td>
e9850821 2927 <td align='center' $col>
ed84e8b8 2928 <form method='post' name='cafrm${key}c' action='$ENV{'SCRIPT_NAME'}'>
ac1cfefa 2929 <input type='hidden' name='ACTION' value='$Lang::tr{'remove ca certificate'}' />
ed84e8b8 2930 <input type='image' name='$Lang::tr{'remove ca certificate'}' src='/images/delete.gif' alt='$Lang::tr{'remove ca certificate'}' title='$Lang::tr{'remove ca certificate'}' />
ac1cfefa 2931 <input type='hidden' name='KEY' value='$key' />
ed84e8b8
MT
2932 </form>
2933 </td>
2934 </tr>
ac1cfefa
MT
2935END
2936 ;
2937 }
2938 }
ac1cfefa
MT
2939 print "</table>";
2940
2941 # If the file contains entries, print Key to action icons
2942 if ( -f "${General::swroot}/ca/cacert.pem") {
ed84e8b8
MT
2943 print <<END
2944 <table><tr>
ac1cfefa
MT
2945 <td class='boldbase'>&nbsp; <b>$Lang::tr{'legend'}:</b></td>
2946 <td>&nbsp; &nbsp; <img src='/images/info.gif' alt='$Lang::tr{'show certificate'}' /></td>
2947 <td class='base'>$Lang::tr{'show certificate'}</td>
2948 <td>&nbsp; &nbsp; <img src='/images/floppy.gif' alt='$Lang::tr{'download certificate'}' /></td>
2949 <td class='base'>$Lang::tr{'download certificate'}</td>
ed84e8b8 2950 </tr></table>
ac1cfefa 2951END
ed84e8b8 2952 ;
ac1cfefa 2953 }
ed84e8b8 2954 my $createCA = -f "${General::swroot}/ca/cacert.pem" ? '' : "<tr><td colspan='3'></td><td><input type='submit' name='ACTION' value='$Lang::tr{'generate root/host certificates'}' /></td></tr>";
ac1cfefa 2955 print <<END
0afd8493 2956 <br>
ed84e8b8
MT
2957 <hr />
2958 <form method='post' enctype='multipart/form-data' action='$ENV{'SCRIPT_NAME'}'>
ac1cfefa 2959 <table width='100%' border='0' cellspacing='1' cellpadding='0'>
ed84e8b8
MT
2960 $createCA
2961 <tr>
2962 <td class='base' nowrap='nowrap'>$Lang::tr{'ca name'}:</td>
2963 <td nowrap='nowrap'><input type='text' name='CA_NAME' value='$cgiparams{'CA_NAME'}' size='15' /> </td>
2964 <td nowrap='nowrap'><input type='file' name='FH' size='30' /></td>
2965 <td nowrap='nowrap'><input type='submit' name='ACTION' value='$Lang::tr{'upload ca certificate'}' /></td>
2966 </tr>
2967 <tr>
2968 <td colspan='3'>$Lang::tr{'resetting the vpn configuration will remove the root ca, the host certificate and all certificate based connections'}:</td>
0afd8493 2969 <td align='right'><input type='submit' name='ACTION' value='$Lang::tr{'remove x509'}' /></td>
ed84e8b8
MT
2970 </tr>
2971 </table>
2972 </form>
ac1cfefa
MT
2973END
2974 ;
2975 &Header::closebox();
ac1cfefa
MT
2976 &Header::closebigbox();
2977 &Header::closepage();