system_camanager.php 32.1 KB
Newer Older
Ad Schellevis's avatar
Ad Schellevis committed
1
<?php
2

3
/*
4
    Copyright (C) 2014-2015 Deciso B.V.
Ad Schellevis's avatar
Ad Schellevis committed
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
    Copyright (C) 2008 Shrew Soft Inc.
    All rights reserved.

    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions are met:

    1. Redistributions of source code must retain the above copyright notice,
       this list of conditions and the following disclaimer.

    2. Redistributions in binary form must reproduce the above copyright
       notice, this list of conditions and the following disclaimer in the
       documentation and/or other materials provided with the distribution.

    THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
    INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
    AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
    AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
    OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
    SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
    INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
    CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
    ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
    POSSIBILITY OF SUCH DAMAGE.
*/

30
require_once('guiconfig.inc');
31
require_once("system.inc");
Ad Schellevis's avatar
Ad Schellevis committed
32

33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
function ca_import(& $ca, $str, $key="", $serial=0) {
	global $config;

	$ca['crt'] = base64_encode($str);
	if (!empty($key))
		$ca['prv'] = base64_encode($key);
	if (!empty($serial))
		$ca['serial'] = $serial;
	$subject = cert_get_subject($str, false);
	$issuer = cert_get_issuer($str, false);

	// Find my issuer unless self-signed
	if($issuer <> $subject) {
		$issuer_crt =& lookup_ca_by_subject($issuer);
		if($issuer_crt)
			$ca['caref'] = $issuer_crt['refid'];
	}

	/* Correct if child certificate was loaded first */
	if (is_array($config['ca']))
		foreach ($config['ca'] as & $oca)
		{
			$issuer = cert_get_issuer($oca['crt']);
			if($ca['refid']<>$oca['refid'] && $issuer==$subject)
				$oca['caref'] = $ca['refid'];
		}
	if (is_array($config['cert']))
		foreach ($config['cert'] as & $cert)
		{
			$issuer = cert_get_issuer($cert['crt']);
			if($issuer==$subject)
				$cert['caref'] = $ca['refid'];
		}
	return true;
}

69 70
function ca_inter_create(&$ca, $keylen, $lifetime, $dn, $caref, $digest_alg = 'sha256')
{
71
	// Create Intermediate Certificate Authority
72 73
	$signing_ca = &lookup_ca($caref);
	if (!$signing_ca) {
74
		return false;
75
	}
76 77 78

	$signing_ca_res_crt = openssl_x509_read(base64_decode($signing_ca['crt']));
	$signing_ca_res_key = openssl_pkey_get_private(array(0 => base64_decode($signing_ca['prv']) , 1 => ""));
79 80 81
	if (!$signing_ca_res_crt || !$signing_ca_res_key) {
		return false;
	}
82 83 84
	$signing_ca_serial = ++$signing_ca['serial'];

	$args = array(
85 86 87 88 89 90 91
		'config' => '/usr/local/etc/ssl/opnsense.cnf',
		'private_key_type' => OPENSSL_KEYTYPE_RSA,
		'private_key_bits' => (int)$keylen,
		'x509_extensions' => 'v3_ca',
		'digest_alg' => $digest_alg,
		'encrypt_key' => false
	);
92 93 94

	// generate a new key pair
	$res_key = openssl_pkey_new($args);
95 96 97
	if (!$res_key) {
		return false;
	}
98 99 100

	// generate a certificate signing request
	$res_csr = openssl_csr_new($dn, $res_key, $args);
101 102 103
	if (!$res_csr) {
		return false;
	}
104 105 106

	// Sign the certificate
	$res_crt = openssl_csr_sign($res_csr, $signing_ca_res_crt, $signing_ca_res_key, $lifetime, $args, $signing_ca_serial);
107 108 109
	if (!$res_crt) {
		return false;
	}
110 111 112

	// export our certificate data
	if (!openssl_pkey_export($res_key, $str_key) ||
113
	    !openssl_x509_export($res_crt, $str_crt)) {
114
		return false;
115
	}
116 117 118 119 120 121 122 123 124

	// return our ca information
	$ca['crt'] = base64_encode($str_crt);
	$ca['prv'] = base64_encode($str_key);
	$ca['serial'] = 0;

	return true;
}

Ad Schellevis's avatar
Ad Schellevis committed
125
$ca_methods = array(
126 127 128
    "existing" => gettext("Import an existing Certificate Authority"),
    "internal" => gettext("Create an internal Certificate Authority"),
    "intermediate" => gettext("Create an intermediate Certificate Authority"));
Ad Schellevis's avatar
Ad Schellevis committed
129 130 131 132 133 134

$ca_keylens = array( "512", "1024", "2048", "4096");
$openssl_digest_algs = array("sha1", "sha224", "sha256", "sha384", "sha512");

$pgtitle = array(gettext("System"), gettext("Certificate Authority Manager"));

135
if (isset($_GET['id']) && is_numericint($_GET['id'])) {
136 137 138 139 140
    $id = $_GET['id'];
}
if (isset($_POST['id']) && is_numericint($_POST['id'])) {
    $id = $_POST['id'];
}
Ad Schellevis's avatar
Ad Schellevis committed
141

142
if (!isset($config['ca']) || !is_array($config['ca'])) {
143 144
    $config['ca'] = array();
}
Ad Schellevis's avatar
Ad Schellevis committed
145 146 147

$a_ca =& $config['ca'];

148 149 150
if (!is_array($config['cert'])) {
    $config['cert'] = array();
}
Ad Schellevis's avatar
Ad Schellevis committed
151 152 153

$a_cert =& $config['cert'];

154
if (!isset($config['crl']) || !is_array($config['crl'])) {
155 156
    $config['crl'] = array();
}
Ad Schellevis's avatar
Ad Schellevis committed
157 158 159

$a_crl =& $config['crl'];

160 161 162 163
$act=null;
if (isset($_GET['act'])) {
    $act = $_GET['act'];
} elseif (isset($_POST['act'])) {
164 165
    $act = $_POST['act'];
}
Ad Schellevis's avatar
Ad Schellevis committed
166 167

if ($act == "del") {
168 169 170 171 172 173 174
    if (!isset($a_ca[$id])) {
        redirectHeader("system_camanager.php");
        exit;
    }

    $index = count($a_cert) - 1;
    for (; $index >=0; $index--) {
175
        if (isset($a_cert[$index]['caref']) && isset($a_ca[$id]['refid']) && $a_cert[$index]['caref'] == $a_ca[$id]['refid']) {
176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192
            unset($a_cert[$index]);
        }
    }

    $index = count($a_crl) - 1;
    for (; $index >=0; $index--) {
        if ($a_crl[$index]['caref'] == $a_ca[$id]['refid']) {
            unset($a_crl[$index]);
        }
    }

    $name = $a_ca[$id]['descr'];
    unset($a_ca[$id]);
    write_config();
    $savemsg = sprintf(gettext("Certificate Authority %s and its CRLs (if any) successfully deleted"), $name) . "<br />";
    redirectHeader("system_camanager.php");
    exit;
Ad Schellevis's avatar
Ad Schellevis committed
193 194 195
}

if ($act == "edit") {
196
    if (!isset($a_ca[$id])) {
197 198 199 200 201 202 203 204 205 206
        redirectHeader("system_camanager.php");
        exit;
    }
    $pconfig['descr']  = $a_ca[$id]['descr'];
    $pconfig['refid']  = $a_ca[$id]['refid'];
    $pconfig['cert']   = base64_decode($a_ca[$id]['crt']);
    $pconfig['serial'] = $a_ca[$id]['serial'];
    if (!empty($a_ca[$id]['prv'])) {
        $pconfig['key'] = base64_decode($a_ca[$id]['prv']);
    }
Ad Schellevis's avatar
Ad Schellevis committed
207 208 209
}

if ($act == "new") {
210
    if (isset($_GET['method'])) {
211 212 213 214
        $pconfig['method'] = $_GET['method'];
    } else {
        $pconfig['method'] = null ;
    }
215 216 217 218
    $pconfig['keylen'] = "2048";
    $pconfig['digest_alg'] = "sha256";
    $pconfig['lifetime'] = "365";
    $pconfig['dn_commonname'] = "internal-ca";
Ad Schellevis's avatar
Ad Schellevis committed
219 220 221
}

if ($act == "exp") {
222 223 224 225 226 227 228 229 230 231 232 233 234 235
    if (!$a_ca[$id]) {
        redirectHeader("system_camanager.php");
        exit;
    }

    $exp_name = urlencode("{$a_ca[$id]['descr']}.crt");
    $exp_data = base64_decode($a_ca[$id]['crt']);
    $exp_size = strlen($exp_data);

    header("Content-Type: application/octet-stream");
    header("Content-Disposition: attachment; filename={$exp_name}");
    header("Content-Length: $exp_size");
    echo $exp_data;
    exit;
Ad Schellevis's avatar
Ad Schellevis committed
236 237 238
}

if ($act == "expkey") {
239 240 241 242 243 244 245 246 247 248 249 250 251 252
    if (!$a_ca[$id]) {
        redirectHeader("system_camanager.php");
        exit;
    }

    $exp_name = urlencode("{$a_ca[$id]['descr']}.key");
    $exp_data = base64_decode($a_ca[$id]['prv']);
    $exp_size = strlen($exp_data);

    header("Content-Type: application/octet-stream");
    header("Content-Disposition: attachment; filename={$exp_name}");
    header("Content-Length: $exp_size");
    echo $exp_data;
    exit;
Ad Schellevis's avatar
Ad Schellevis committed
253 254 255
}

if ($_POST) {
256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351
    unset($input_errors);
    $input_errors = array();
    $pconfig = $_POST;

    /* input validation */
    if ($pconfig['method'] == "existing") {
        $reqdfields = explode(" ", "descr cert");
        $reqdfieldsn = array(
                gettext("Descriptive name"),
                gettext("Certificate data"));
        if ($_POST['cert'] && (!strstr($_POST['cert'], "BEGIN CERTIFICATE") || !strstr($_POST['cert'], "END CERTIFICATE"))) {
            $input_errors[] = gettext("This certificate does not appear to be valid.");
        }
        if ($_POST['key'] && strstr($_POST['key'], "ENCRYPTED")) {
            $input_errors[] = gettext("Encrypted private keys are not yet supported.");
        }
    }
    if ($pconfig['method'] == "internal") {
        $reqdfields = explode(
            " ",
            "descr keylen lifetime dn_country dn_state dn_city ".
            "dn_organization dn_email dn_commonname"
        );
        $reqdfieldsn = array(
                gettext("Descriptive name"),
                gettext("Key length"),
                gettext("Lifetime"),
                gettext("Distinguished name Country Code"),
                gettext("Distinguished name State or Province"),
                gettext("Distinguished name City"),
                gettext("Distinguished name Organization"),
                gettext("Distinguished name Email Address"),
                gettext("Distinguished name Common Name"));
    }
    if ($pconfig['method'] == "intermediate") {
        $reqdfields = explode(
            " ",
            "descr caref keylen lifetime dn_country dn_state dn_city ".
            "dn_organization dn_email dn_commonname"
        );
        $reqdfieldsn = array(
                gettext("Descriptive name"),
                gettext("Signing Certificate Authority"),
                gettext("Key length"),
                gettext("Lifetime"),
                gettext("Distinguished name Country Code"),
                gettext("Distinguished name State or Province"),
                gettext("Distinguished name City"),
                gettext("Distinguished name Organization"),
                gettext("Distinguished name Email Address"),
                gettext("Distinguished name Common Name"));
    }

    do_input_validation($_POST, $reqdfields, $reqdfieldsn, $input_errors);
    if ($pconfig['method'] != "existing") {
        /* Make sure we do not have invalid characters in the fields for the certificate */
        for ($i = 0; $i < count($reqdfields); $i++) {
            if ($reqdfields[$i] == 'dn_email') {
                if (preg_match("/[\!\#\$\%\^\(\)\~\?\>\<\&\/\\\,\"\']/", $_POST["dn_email"])) {
                    array_push($input_errors, "The field 'Distinguished name Email Address' contains invalid characters.");
                }
            } elseif ($reqdfields[$i] == 'dn_commonname') {
                if (preg_match("/[\!\@\#\$\%\^\(\)\~\?\>\<\&\/\\\,\"\']/", $_POST["dn_commonname"])) {
                    array_push($input_errors, "The field 'Distinguished name Common Name' contains invalid characters.");
                }
            } elseif (($reqdfields[$i] != "descr") && preg_match("/[\!\@\#\$\%\^\(\)\~\?\>\<\&\/\\\,\.\"\']/", $_POST["$reqdfields[$i]"])) {
                array_push($input_errors, "The field '" . $reqdfieldsn[$i] . "' contains invalid characters.");
            }
        }
        if (!in_array($_POST["keylen"], $ca_keylens)) {
            array_push($input_errors, gettext("Please select a valid Key Length."));
        }
        if (!in_array($_POST["digest_alg"], $openssl_digest_algs)) {
            array_push($input_errors, gettext("Please select a valid Digest Algorithm."));
        }
    }

    /* if this is an AJAX caller then handle via JSON */
    if (isAjax() && is_array($input_errors)) {
        input_errors2Ajax($input_errors);
        exit;
    }

    /* save modifications */
    if (!$input_errors) {
        $ca = array();
        if (!isset($pconfig['refid']) || empty($pconfig['refid'])) {
            $ca['refid'] = uniqid();
        } else {
            $ca['refid'] = $pconfig['refid'];
        }

        if (isset($id) && $a_ca[$id]) {
            $ca = $a_ca[$id];
        }

352 353 354 355 356
        if (isset($pconfig['descr'])) {
            $ca['descr'] = $pconfig['descr'];
        } else {
            $ca['descr'] = null;
        }
357

358
        if (isset($_POST['edit']) && $_POST['edit'] == "edit") {
359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378
            $ca['descr']  = $pconfig['descr'];
            $ca['refid']  = $pconfig['refid'];
            $ca['serial'] = $pconfig['serial'];
            $ca['crt']    = base64_encode($pconfig['cert']);
            if (!empty($pconfig['key'])) {
                $ca['prv']    = base64_encode($pconfig['key']);
            }
        } else {
            $old_err_level = error_reporting(0); /* otherwise openssl_ functions throw warings directly to a page screwing menu tab */
            if ($pconfig['method'] == "existing") {
                ca_import($ca, $pconfig['cert'], $pconfig['key'], $pconfig['serial']);
            } elseif ($pconfig['method'] == "internal") {
                $dn = array(
                    'countryName' => $pconfig['dn_country'],
                    'stateOrProvinceName' => $pconfig['dn_state'],
                    'localityName' => $pconfig['dn_city'],
                    'organizationName' => $pconfig['dn_organization'],
                    'emailAddress' => $pconfig['dn_email'],
                    'commonName' => $pconfig['dn_commonname']);
                if (!ca_create($ca, $pconfig['keylen'], $pconfig['lifetime'], $dn, $pconfig['digest_alg'])) {
379
                    $input_errors = array();
380 381 382 383 384 385 386 387 388 389 390 391 392
                    while ($ssl_err = openssl_error_string()) {
                        array_push($input_errors, "openssl library returns: " . $ssl_err);
                    }
                }
            } elseif ($pconfig['method'] == "intermediate") {
                $dn = array(
                    'countryName' => $pconfig['dn_country'],
                    'stateOrProvinceName' => $pconfig['dn_state'],
                    'localityName' => $pconfig['dn_city'],
                    'organizationName' => $pconfig['dn_organization'],
                    'emailAddress' => $pconfig['dn_email'],
                    'commonName' => $pconfig['dn_commonname']);
                if (!ca_inter_create($ca, $pconfig['keylen'], $pconfig['lifetime'], $dn, $pconfig['caref'], $pconfig['digest_alg'])) {
393
                    $input_errors = array();
394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409
                    while ($ssl_err = openssl_error_string()) {
                        array_push($input_errors, "openssl library returns: " . $ssl_err);
                    }
                }
            }
            error_reporting($old_err_level);
        }

        if (isset($id) && $a_ca[$id]) {
            $a_ca[$id] = $ca;
        } else {
            $a_ca[] = $ca;
        }

        if (!$input_errors) {
            write_config();
410
            unset($input_errors);
411
        }
Ad Schellevis's avatar
Ad Schellevis committed
412

413
//		redirectHeader("system_camanager.php");
414
    }
Ad Schellevis's avatar
Ad Schellevis committed
415 416
}
include("head.inc");
Ad Schellevis's avatar
Ad Schellevis committed
417 418

$main_buttons = array(
419
    array('label'=>gettext("add or import ca"), 'href'=>'system_camanager.php?act=new'),
Ad Schellevis's avatar
Ad Schellevis committed
420 421 422
);


Ad Schellevis's avatar
Ad Schellevis committed
423 424
?>

425
<body>
426

Ad Schellevis's avatar
Ad Schellevis committed
427
<?php include("fbegin.inc"); ?>
428

Ad Schellevis's avatar
Ad Schellevis committed
429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454
<script type="text/javascript">
//<![CDATA[
function method_change() {

	method = document.iform.method.selectedIndex;

	switch (method) {
		case 0:
			document.getElementById("existing").style.display="";
			document.getElementById("internal").style.display="none";
			document.getElementById("intermediate").style.display="none";
			break;
		case 1:
			document.getElementById("existing").style.display="none";
			document.getElementById("internal").style.display="";
			document.getElementById("intermediate").style.display="none";
			break;
		case 2:
			document.getElementById("existing").style.display="none";
			document.getElementById("internal").style.display="";
			document.getElementById("intermediate").style.display="";
			break;
	}
}
//]]>
</script>
455 456

<!-- row -->
457

458 459
<section class="page-content-main">
	<div class="container-fluid">
460

461
        <div class="row">
462

463
            <?php
464
            if (isset($input_errors) && count($input_errors) > 0) {
465 466
                print_input_errors($input_errors);
            }
467
            if (isset($savemsg)) {
468 469
                print_info_box($savemsg);
            }
470
            ?>
471

472
            <section class="col-xs-12">
473

474
                <? include('system_certificates_tabs.inc'); ?>
475

476
                <div class="content-box tab-content table-responsive" style="overflow: auto;">
477

478
				<?php if ($act == "new" || $act == "edit" || $act == gettext("Save") || isset($input_errors)) :
479
?>
480 481 482

				<form action="system_camanager.php" method="post" name="iform" id="iform" class="table table-striped">

483 484
					<?php if ($act == "edit") :
?>
485
					    <input type="hidden" name="edit" value="edit" id="edit" />
486 487
                            <input type="hidden" name="id" value="<?php echo htmlspecialchars($id); ?>" id="id" />
                            <input type="hidden" name="refid" value="<?php echo $pconfig['refid']; ?>" id="refid" />
488 489
					<?php
endif; ?>
490 491 492 493 494

					<table width="100%" border="0" cellpadding="6" cellspacing="0" summary="main area" class="table table-striped">
						<tr>
							<td width="22%" valign="top" class="vncellreq"><?=gettext("Descriptive name");?></td>
							<td width="78%" class="vtable">
495
								<input name="descr" type="text" class="formfld unknown" id="descr" size="20" value="<?php if (isset($pconfig['descr'])) echo htmlspecialchars($pconfig['descr']);?>"/>
496 497 498
							</td>
						</tr>

499 500
						<?php if (!isset($id) || $act == "edit") :
?>
501 502 503
						<tr>
							<td width="22%" valign="top" class="vncellreq"><?=gettext("Method");?></td>
							<td width="78%" class="vtable">
504
								<select name='method' id='method' class="selectpicker" data-style="btn-default" onchange='method_change()'>
505
								<?php
506 507
                                foreach ($ca_methods as $method => $desc) :
                                    $selected = "";
508
                                    if (isset($pconfig['method']) && $pconfig['method'] == $method) {
509 510 511 512 513 514 515 516
                                        $selected = " selected=\"selected\"";
                                    }
                                ?>
                                <option value="<?=$method;
?>"<?=$selected;
?>><?=$desc;?></option>
								<?php
                                endforeach; ?>
517 518 519
								</select>
							</td>
						</tr>
520 521
						<?php
endif; ?>
522 523 524 525 526 527 528 529 530 531

					</table>

					<table width="100%" border="0" cellpadding="6" cellspacing="0" id="existing" summary="existing" class="table table-striped">
						<thead>
							<tr>
								<th colspan="2" valign="top" class="listtopic"><?=gettext("Existing Certificate Authority");?></th>
							</tr>
						</thead>

532
                            <tbody>
533 534 535
						<tr>
							<td width="22%" valign="top" class="vncellreq"><?=gettext("Certificate data");?></td>
							<td width="78%" class="vtable">
536
								<textarea name="cert" id="cert" cols="65" rows="7" class="formfld_cert"><?php if (isset($pconfig['cert'])) echo htmlspecialchars($pconfig['cert']);?></textarea>
537 538 539 540 541
								<br />
								<?=gettext("Paste a certificate in X.509 PEM format here.");?>
							</td>
						</tr>
						<tr>
542 543
							<td width="22%" valign="top" class="vncellreq"><?=gettext("Certificate Private Key");
?><br /><?=gettext("(optional)");?></td>
544
							<td width="78%" class="vtable">
545
								<textarea name="key" id="key" cols="65" rows="7" class="formfld_cert"><?php if (isset($pconfig['key'])) echo htmlspecialchars($pconfig['key']);?></textarea>
546 547 548 549 550
								<br />
								<?=gettext("Paste the private key for the above certificate here. This is optional in most cases, but required if you need to generate a Certificate Revocation List (CRL).");?>
							</td>
						</tr>

551 552
					<?php if (!isset($id) || $act == "edit") :
?>
553 554 555
						<tr>
							<td width="22%" valign="top" class="vncellreq"><?=gettext("Serial for next certificate");?></td>
							<td width="78%" class="vtable">
556
								<input name="serial" type="text" class="formfld unknown" id="serial" size="20" value="<?php if(isset($pconfig['serial'])) echo htmlspecialchars($pconfig['serial']);?>"/>
557 558 559
								<br /><?=gettext("Enter a decimal number to be used as the serial number for the next certificate to be created using this CA.");?>
							</td>
						</tr>
560 561
					<?php
endif; ?>
562

563
                            </tbody>
564 565 566 567 568 569 570 571 572 573 574 575 576 577

					</table>

					<table width="100%" border="0" cellpadding="6" cellspacing="0" id="internal" summary="internal" class="table table-striped">
						<thead>
							<tr>
								<th colspan="2" valign="top" class="listtopic"><?=gettext("Internal Certificate Authority");?></th>
							</tr>
						</thead>

						<tbody>
						<tr id='intermediate'>
							<td width="22%" valign="top" class="vncellreq"><?=gettext("Signing Certificate Authority");?></td>
							<td width="78%" class="vtable">
578
                                    <select name='caref' id='caref' class="selectpicker" onchange='internalca_change()'>
579
                                    <?php
580 581 582 583 584
                                    foreach ($a_ca as $ca) :
                                        if (!$ca['prv']) {
                                            continue;
                                        }
                                        $selected = "";
585
                                        if (isset($pconfig['caref']) && isset($ca['refid']) && $pconfig['caref'] == $ca['refid']) {
586 587
                                            $selected = " selected=\"selected\"";
                                        }
588
                                    ?>
589 590
                                    <option value="<?=$ca['refid'];
?>"<?=$selected;
591
?>><?=htmlspecialchars($ca['descr']);?></option>
592 593
                                    <?php
                                    endforeach; ?>
594
                                    </select>
595 596 597 598 599
							</td>
						</tr>
						<tr>
							<td width="22%" valign="top" class="vncellreq"><?=gettext("Key length");?></td>
							<td width="78%" class="vtable">
600
								<select name='keylen' id='keylen' class="selectpicker">
601
								<?php
602 603
                                foreach ($ca_keylens as $len) :
                                    $selected = "";
604
                                    if (isset($pconfig['keylen']) && $pconfig['keylen'] == $len) {
605 606 607 608 609 610 611 612
                                        $selected = " selected=\"selected\"";
                                    }
                                ?>
                                <option value="<?=$len;
?>"<?=$selected;
?>><?=$len;?></option>
								<?php
                                endforeach; ?>
613 614 615 616 617 618 619
								</select>
								<?=gettext("bits");?>
							</td>
						</tr>
						<tr>
							<td width="22%" valign="top" class="vncellreq"><?=gettext("Digest Algorithm");?></td>
							<td width="78%" class="vtable">
620
								<select name='digest_alg' id='digest_alg' class="selectpicker">
621
								<?php
622 623
                                foreach ($openssl_digest_algs as $digest_alg) :
                                    $selected = "";
624
                                    if (isset($pconfig['digest_alg']) && $pconfig['digest_alg'] == $digest_alg) {
625 626 627 628 629 630 631 632
                                        $selected = " selected=\"selected\"";
                                    }
                                ?>
                                <option value="<?=$digest_alg;
?>"<?=$selected;
?>><?=strtoupper($digest_alg);?></option>
								<?php
                                endforeach; ?>
633 634 635 636 637 638 639
								</select>
								<br /><?= gettext("NOTE: It is recommended to use an algorithm stronger than SHA1 when possible.") ?>
							</td>
						</tr>
						<tr>
							<td width="22%" valign="top" class="vncellreq"><?=gettext("Lifetime");?></td>
							<td width="78%" class="vtable">
640
								<input name="lifetime" type="text" class="formfld unknown" id="lifetime" size="5" value="<?php if (isset($pconfig['lifetime'])) echo htmlspecialchars($pconfig['lifetime']);?>"/>
641 642 643 644 645 646 647 648 649 650
								<?=gettext("days");?>
							</td>
						</tr>
						<tr>
							<td width="22%" valign="top" class="vncellreq"><?=gettext("Distinguished name");?></td>
							<td width="78%" class="vtable">
								<table border="0" cellspacing="0" cellpadding="2" summary="name">
									<tr>
										<td align="right"><?=gettext("Country Code");?> : &nbsp;</td>
										<td align="left">
651
											<select name='dn_country' class="selectpicker">
652
											<?php
653 654 655
                                            $dn_cc = get_country_codes();
                                            foreach ($dn_cc as $cc => $cn) {
                                                $selected = '';
656
                                                if (isset($pconfig['dn_country']) && $pconfig['dn_country'] == $cc) {
657
                                                    $selected = ' selected="selected"';
658
                                                }
659
                                                print "<option value=\"$cc\"$selected>$cc ($cn)</option>";
660 661
                                            }
                                            ?>
662 663 664 665 666 667
											</select>
										</td>
									</tr>
									<tr>
										<td align="right"><?=gettext("State or Province");?> : &nbsp;</td>
										<td align="left">
668
											<input name="dn_state" type="text" class="formfld unknown" size="40" value="<?php if (isset($pconfig['dn_state'])) echo htmlspecialchars($pconfig['dn_state']);?>"/>
669 670 671
											&nbsp;
											<em><?=gettext("ex:");?></em>
											&nbsp;
672
											<?=gettext("Sachsen");?>
673 674 675 676 677
										</td>
									</tr>
									<tr>
										<td align="right"><?=gettext("City");?> : &nbsp;</td>
										<td align="left">
678
											<input name="dn_city" type="text" class="formfld unknown" size="40" value="<?php if (isset($pconfig['dn_city'])) echo htmlspecialchars($pconfig['dn_city']);?>"/>
679 680 681
											&nbsp;
											<em><?=gettext("ex:");?></em>
											&nbsp;
682
											<?=gettext("Leipzig");?>
683 684 685 686 687
										</td>
									</tr>
									<tr>
										<td align="right"><?=gettext("Organization");?> : &nbsp;</td>
										<td align="left">
688
											<input name="dn_organization" type="text" class="formfld unknown" size="40" value="<?php if (isset($pconfig['dn_organization'])) echo htmlspecialchars($pconfig['dn_organization']);?>"/>
689 690 691
											&nbsp;
											<em><?=gettext("ex:");?></em>
											&nbsp;
692
											<?=gettext("My Company Inc");?>
693 694 695 696 697
										</td>
									</tr>
									<tr>
										<td align="right"><?=gettext("Email Address");?> : &nbsp;</td>
										<td align="left">
698
											<input name="dn_email" type="text" class="formfld unknown" size="25" value="<?php if (isset($pconfig['dn_email'])) echo htmlspecialchars($pconfig['dn_email']);?>"/>
699 700 701 702 703 704 705 706 707
											&nbsp;
											<em><?=gettext("ex:");?></em>
											&nbsp;
											<?=gettext("admin@mycompany.com");?>
										</td>
									</tr>
									<tr>
										<td align="right"><?=gettext("Common Name");?> : &nbsp;</td>
										<td align="left">
708
											<input name="dn_commonname" type="text" class="formfld unknown" size="25" value="<?php if (isset($pconfig['dn_commonname'])) echo htmlspecialchars($pconfig['dn_commonname']);?>"/>
709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726
											&nbsp;
											<em><?=gettext("ex:");?></em>
											&nbsp;
											<?=gettext("internal-ca");?>
										</td>
									</tr>
								</table>
							</td>
						</tr>

						</tbody>
					</table>

					<table width="100%" border="0" cellpadding="6" cellspacing="0" summary="save" class="table">
						<tr>
							<td width="22%" valign="top">&nbsp;</td>
							<td width="78%">
								<input id="submit" name="save" type="submit" class="btn btn-primary" value="<?=gettext("Save"); ?>" />
727 728
								<?php if (isset($id) && $a_ca[$id]) :
?>
729
								<input name="id" type="hidden" value="<?=htmlspecialchars($id);?>" />
730 731
								<?php
endif;?>
732 733 734 735 736
							</td>
						</tr>
					</table>
				</form>

737 738 739
				<?php
else :
?>
740 741 742 743 744 745 746 747 748 749 750 751 752 753 754

				<table width="100%" border="0" cellpadding="0" cellspacing="0" summary="" class="table table-striped">
					<thead>
						<tr>
							<th width="18%" class="listhdrr"><?=gettext("Name");?></th>
							<th width="10%" class="listhdrr"><?=gettext("Internal");?></th>
							<th width="10%" class="listhdrr"><?=gettext("Issuer");?></th>
							<th width="10%" class="listhdrr"><?=gettext("Certificates");?></th>
							<th width="40%" class="listhdrr"><?=gettext("Distinguished Name");?></th>
							<th width="12%" class="list"></th>
						</tr>
					</thead>

					<tbody>
					<?php
755 756 757 758 759 760 761 762 763 764 765 766 767 768
                        $i = 0;
                    foreach ($a_ca as $ca) :
                        $name = htmlspecialchars($ca['descr']);
                        $subj = cert_get_subject($ca['crt']);
                        $issuer = cert_get_issuer($ca['crt']);
                        list($startdate, $enddate) = cert_get_dates($ca['crt']);
                        if ($subj == $issuer) {
                            $issuer_name = "<em>" . gettext("self-signed") . "</em>";
                        } else {
                            $issuer_name = "<em>" . gettext("external") . "</em>";
                        }
                        $subj = htmlspecialchars($subj);
                        $issuer = htmlspecialchars($issuer);
                        $certcount = 0;
769

770 771 772 773 774 775 776 777 778 779 780 781 782 783 784
                        if (isset($ca['caref'])) {
                            $issuer_ca = lookup_ca($ca['caref']);
                            if ($issuer_ca) {
                                $issuer_name = $issuer_ca['descr'];
                            }
                            foreach ($a_cert as $cert) {
                                if ($cert['caref'] == $ca['refid']) {
                                    $certcount++;
                                }
                            }
                            foreach ($a_ca as $cert) {
                                if ($cert['caref'] == $ca['refid']) {
                                    $certcount++;
                                }
                            }
785
                        }
786 787 788 789 790 791 792 793 794 795 796 797

                        // TODO : Need gray certificate icon

                        if ($ca['prv']) {
                            $caimg = "/themes/{$g['theme']}/images/icons/icon_frmfld_cert.png";
                            $internal = "YES";

                        } else {
                            $caimg = "/themes/{$g['theme']}/images/icons/icon_frmfld_cert.png";
                            $internal = "NO";
                        }
                    ?>
798
					<tr>
799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835
                    <td class="listlr">
                        <?=$name;?>
                    </td>
                    <td class="listr"><?=$internal;?>&nbsp;</td>
                    <td class="listr"><?=$issuer_name;?>&nbsp;</td>
                    <td class="listr"><?=$certcount;?>&nbsp;</td>
                    <td class="listr"><?=$subj;?><br />
                        <table width="100%" style="font-size: 9px" summary="valid">
                            <tr>
                                <td width="10%">&nbsp;</td>
                                <td width="20%"><?=gettext("Valid From")?>:</td>
                                <td width="70%"><?= $startdate ?></td>
                            </tr>
                            <tr>
                                <td>&nbsp;</td>
                                <td><?=gettext("Valid Until")?>:</td>
                                <td><?= $enddate ?></td>
                            </tr>
                        </table>
                    </td>
                    <td valign="middle" class="list nowrap">
                        <a href="system_camanager.php?act=edit&amp;id=<?=$i;
?>" data-toggle="tooltip" data-placement="left" title="<?=gettext("edit CA");
?>" alt="<?=gettext("edit CA");?>" class="btn btn-default btn-xs"><span class="glyphicon glyphicon-pencil"></span></a>
                        <a href="system_camanager.php?act=exp&amp;id=<?=$i;
?>" data-toggle="tooltip" data-placement="left" title="<?=gettext("export CA cert");
?>" alt="<?=gettext("export CA cert");?>" class="btn btn-default btn-xs"><span class="glyphicon glyphicon-download"></span></a>
                        <?php if ($ca['prv']) :
?>
							<a href="system_camanager.php?act=expkey&amp;id=<?=$i;
?>" data-toggle="tooltip" data-placement="left" title="<?=gettext("export CA private key");?>" class="btn btn-default btn-xs"><span class="glyphicon glyphicon-download"></span></a>
							<?php
endif; ?>
                        <a href="system_camanager.php?act=del&amp;id=<?=$i;
?>" data-toggle="tooltip" data-placement="left" onclick="return confirm('<?=gettext("Do you really want to delete this Certificate Authority and its CRLs, and unreference any associated certificates?");
?>')" title="<?=gettext("delete ca");?>" class="btn btn-default btn-xs"><span class="glyphicon glyphicon-remove"></span></a>
                    </td>
836 837
					</tr>
					<?php
838 839 840
                        $i++;
                    endforeach;
                    ?>
841 842 843 844 845


					</tbody>
				</table>

846 847
				<?php
endif; ?>
848

849 850 851 852 853 854 855 856


                </div>
            </section>
        </div>
	</div>
</section>

Ad Schellevis's avatar
Ad Schellevis committed
857 858 859 860 861 862 863 864
<script type="text/javascript">
//<![CDATA[

method_change();

//]]>
</script>

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