2010-02-12 03:09:17 -05:00
|
|
|
ca-scripts
|
|
|
|
==========
|
|
|
|
|
|
|
|
A set of `bash(1)` scripts for working with SSL Certificate Authorities.
|
|
|
|
|
|
|
|
These scripts are designed to provide a configurable wrapping layer around
|
|
|
|
[openssl](http://www.openssl.org/), similar to CA.pl. They're potentially a
|
|
|
|
little heavyweight if you just need a single self-signed certificate to secure
|
|
|
|
an HTTPs webserver, but they may come in handy if you want to:
|
|
|
|
|
|
|
|
* Generate multiple service certificates signed by a single authority
|
|
|
|
* Provide signed client certificates to end users for authentication purposes
|
|
|
|
* Provide client certificates for S/MIME encrypted e-mail or code signing
|
|
|
|
* Easily set extensions such as x509v3 subjectAltName in your certificates
|
|
|
|
|
|
|
|
Installation
|
|
|
|
------------
|
|
|
|
|
|
|
|
There aren't any tarballs as yet. Nor will the `make` command below work until
|
|
|
|
I've written a Makefile. It's coming, sometime. Sorry ;-)
|
|
|
|
|
|
|
|
$ git clone git://github.com/fluffle/ca-scripts
|
|
|
|
$ cd ca-scripts
|
|
|
|
$ make; sudo make install
|
|
|
|
|
|
|
|
This will by default install to `/usr/local`, either `export PREFIX=/path` or
|
|
|
|
`make PREFIX=/path; sudo make PREFIX=/path install` to change this to an
|
|
|
|
alternative location.
|
|
|
|
|
|
|
|
Creating a Certificate Authority
|
|
|
|
--------------------------------
|
|
|
|
|
2010-02-14 01:50:25 -05:00
|
|
|
Before running **ca-init**(1), a configuration file for the CA scripts must be
|
2010-02-12 03:09:17 -05:00
|
|
|
created. This configuration file sets up some templating variables that will
|
|
|
|
be present in certificates created for this CA, such as the domain, CA name,
|
|
|
|
and the root directory which will be populated with the generated certificates.
|
|
|
|
An example configuration file is provided with the scripts, and the comments
|
|
|
|
should be self-explanatory.
|
|
|
|
|
|
|
|
By default the CA scripts will read `/etc/ca-scripts.conf`. This is fine for
|
|
|
|
creating a single CA serving a single domain with no intermediary certificates,
|
|
|
|
but for a more complex setup a directory of configuration files will probably
|
2010-02-14 01:50:25 -05:00
|
|
|
be needed. Some settings are required, namely the **CA\_HOME**, **CA\_DOMAIN**,
|
|
|
|
and **CA\_DN\_\*** variables, while others can be inferred from these or have
|
|
|
|
sensible defaults set. See **ca-scripts.conf**(5) for more detail on these.
|
2010-02-12 03:09:17 -05:00
|
|
|
|
|
|
|
Once the configuration has been created the initial CA setup can be performed
|
2010-02-14 01:50:25 -05:00
|
|
|
with **ca-init(1)**, but please note that the path set in **CA\_HOME** must exist
|
|
|
|
and be writeable before it will run correctly. It is recommended (but not in an
|
|
|
|
way required) to create an unprivileged "ssl" user to run all the scripts as, so
|
2010-02-12 03:09:17 -05:00
|
|
|
the permissions are correctly set. A number of subdirectories will be set
|
|
|
|
up underneath this root, and an openssl configuration file, certificate and
|
|
|
|
private key will be generated. This key can be 3DES encrypted for security.
|
|
|
|
|
|
|
|
Optionally, it is possible to split the initial setup process so that the
|
|
|
|
directory structure and openssl configuration generation can be done in a
|
|
|
|
seperate step to the generation of the CA certificates, so that the config can
|
|
|
|
be manually edited. To fully understand it's contents you're unfortunately
|
2010-02-14 01:50:25 -05:00
|
|
|
going to need to read the following:
|
|
|
|
|
|
|
|
* [**ca**(1ssl)](http://www.openssl.org/docs/apps/ca.html)
|
|
|
|
* [**req**(1ssl)](http://www.openssl.org/docs/apps/req.html)
|
|
|
|
* [**x509**(1ssl)](http://www.openssl.org/docs/apps/x509.html)
|
|
|
|
* [**config**(5ssl)](http://www.openssl.org/docs/apps/config.html)
|
|
|
|
* [**x509v3\_config**(5ssl)](http://www.openssl.org/docs/apps/x509v3_config.html)
|
|
|
|
|
|
|
|
Particularly important are the x509v3 extensions present in the certificate,
|
|
|
|
which are defined in the "ca\_x509\_extensions" section of the config file.
|
2010-02-12 03:09:17 -05:00
|
|
|
|
|
|
|
Creating a certificate
|
|
|
|
----------------------
|
|
|
|
|
2010-02-14 01:50:25 -05:00
|
|
|
The **ca-create-cert**(1) script can generate three "types" of certificate:
|
|
|
|
*server* certificates for securing a service with SSL/TLS; *client* certificates
|
|
|
|
for authenticating a client to these services; and *user* certificates for
|
2010-02-12 03:09:17 -05:00
|
|
|
authentication, S/MIME e-mail signing or encryption, and code signing. There
|
|
|
|
are minor but important differences in the key usage extensions present in
|
2010-02-14 01:50:25 -05:00
|
|
|
these different certificate types, details can be found in the documentation
|
|
|
|
for **ca-create-cert**(1).
|
2010-02-12 03:09:17 -05:00
|
|
|
|
2010-02-14 01:50:25 -05:00
|
|
|
**ca-create-cert**(1) takes a number of options to customise the generated
|
|
|
|
certificate. The *--type* option is mandatory, and for *server* certs it is very
|
|
|
|
likely that the *--alt-name* option will be useful to set X.509v3 subjectAltName
|
2010-02-12 03:09:17 -05:00
|
|
|
DNS records for other hostnames for the server. Both the server hostname and
|
2010-02-14 01:50:25 -05:00
|
|
|
any alternative names will be fully-qualified to **CA\_DOMAIN** if they do not
|
2010-02-12 03:09:17 -05:00
|
|
|
contain any dots, but if unqualified names are passed in they are also
|
|
|
|
preserved as alternative DNS names in the certificate. The private key may be
|
|
|
|
encrypted with 3DES, and optionally the certificate, key, and CA certificate
|
|
|
|
can be bundled together into a PKCS#12 format certificate archive. By default
|
|
|
|
certificates are valid for 365 days from signing, but this may be changed with
|
2010-02-14 01:50:25 -05:00
|
|
|
the *--days* option.
|
2010-02-12 03:09:17 -05:00
|
|
|
|
|
|
|
The certificate's DN can be completely changed from the defaults provided by
|
2010-02-14 01:50:25 -05:00
|
|
|
**ca-scripts.conf**(5), but be wary as by default the generated openssl config
|
2010-02-12 03:09:17 -05:00
|
|
|
file requires that the country (C) and organisation (O) fields match those of
|
|
|
|
the CA certificate. A comment may also be set that will show up in user browsers
|
|
|
|
when they click on their padlock icons to examine the certificate's properties.
|
|
|
|
As with the CA setup, the steps to generate the certificate can be split up so
|
|
|
|
that configurations that are created from templates can be edited beforehand.
|
|
|
|
|
|
|
|
Renewing a certificate
|
|
|
|
----------------------
|
|
|
|
|
2010-02-14 01:50:25 -05:00
|
|
|
Certificates are renewed using **ca-renew-cert**(1). This script currently
|
|
|
|
does some painful certificate manipulation that is not strictly necessary in
|
|
|
|
most cases, and may in fact decrease SSL security slightly. This is done because
|
2010-02-12 03:09:17 -05:00
|
|
|
the normal renewal process re-generates the certificate signing request and
|
|
|
|
thus creates a new public/private keypair. If the certificates are used for
|
|
|
|
S/MIME encryption or code signing, this renders all the encrypted e-mail
|
|
|
|
unreadable and requires you to re-sign the code with your new private key.
|
|
|
|
|
2010-02-14 01:50:25 -05:00
|
|
|
To avoid this, **ca-renew-cert**(1) re-signs the old certificate request with
|
2010-02-12 03:09:17 -05:00
|
|
|
a new expiry date using the extensions generated when the old certificate was
|
|
|
|
signed. In the future it is possible (even likely) that this renewal method
|
2010-02-14 01:50:25 -05:00
|
|
|
will only be used on *user* type certificates, and the *server* and *client*
|
2010-02-12 03:09:17 -05:00
|
|
|
types will be renewed normally. If the current renewal method doesn't provide
|
|
|
|
sufficient security, the current certificate should be revoked and a new one
|
2010-02-14 01:50:25 -05:00
|
|
|
generated that is valid for the correct period of time using the *--days* option
|
|
|
|
to **ca-create-cert**(1).
|
2010-02-12 03:09:17 -05:00
|
|
|
|
2010-02-14 01:50:25 -05:00
|
|
|
As with the certificate creation script the *--type* option is mandatory for
|
|
|
|
**ca-renew-cert**(1), but the argument may be either a hostname, a username or a
|
2010-02-12 03:09:17 -05:00
|
|
|
path to a certificate. Internally this will be resolved to the correct
|
|
|
|
information required for certificate renewal.
|
|
|
|
|
|
|
|
Revoking a certificate
|
|
|
|
----------------------
|
|
|
|
|
|
|
|
To revoke a certificate and re-generate the CA certficate revocation list in
|
2010-02-14 01:50:25 -05:00
|
|
|
both PEM and DER encodings, invoke **ca-revoke-cert**(1), again providing the
|
|
|
|
*--type* option and either the hostname, username or the path to the certificate
|
|
|
|
to be revoked. Along with **ca-init**(1) this script can optionally generate a
|
2010-02-12 03:09:17 -05:00
|
|
|
basic HTML template to serve the CA certificate and CRL with verifiable MD5 and
|
|
|
|
SHA1 checksums.
|