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