certidude/README.rst

427 lines
11 KiB
ReStructuredText
Raw Normal View History

2015-07-12 19:22:10 +00:00
Certidude
=========
2015-10-08 11:23:33 +00:00
.. image:: https://travis-ci.org/laurivosandi/certidude.svg?branch=master
:target: https://travis-ci.org/laurivosandi/certidude
.. image:: http://codecov.io/github/laurivosandi/certidude/coverage.svg?branch=master
:target: http://codecov.io/github/laurivosandi/certidude?branch=master
2015-07-26 20:34:46 +00:00
Introduction
------------
Certidude is a novel X.509 Certificate Authority management tool
2015-08-16 15:09:06 +00:00
with privilege isolation mechanism and Kerberos authentication aiming to
2015-07-26 20:34:46 +00:00
eventually support PKCS#11 and in far future WebCrypto.
2015-08-16 15:09:06 +00:00
.. figure:: doc/usecase-diagram.png
2015-07-26 20:34:46 +00:00
Certidude is mainly designed for VPN gateway operators to make
desktop/laptop VPN setup as easy as possible.
User certificate management eg. for HTTPS is also made reasonably simple.
2015-08-22 20:19:30 +00:00
For a full-blown CA you might want to take a look at
`EJBCA <http://www.ejbca.org/features.html>`_ or
`OpenCA <https://pki.openca.org/>`_.
2015-07-26 20:34:46 +00:00
Features
--------
Common:
2015-07-26 20:34:46 +00:00
* Standard request, sign, revoke workflow via web interface.
* Kerberos and basic auth based web interface authentication.
* PAM and Active Directory compliant authentication backends: Kerberos single sign-on, LDAP simple bind.
* POSIX groups and Active Directory (LDAP) group membership based authorization.
* Command-line interface, check out ``certidude list``.
2015-07-26 20:34:46 +00:00
* Privilege isolation, separate signer process is spawned per private key isolating
private key use from the the web interface.
* Certificate serial numbers are intentionally randomized to avoid leaking information about business practices.
* Server-side events support via `nchan <https://nchan.slact.net/>`_.
* E-mail notifications about pending, signed and revoked certificates.
2015-07-26 20:34:46 +00:00
Virtual private networking:
2015-07-26 20:34:46 +00:00
* OpenVPN integration, check out ``certidude setup openvpn server`` and ``certidude setup openvpn client``.
* strongSwan integration, check out ``certidude setup strongswan server`` and ``certidude setup strongswan client``.
* NetworkManager integration, check out ``certidude setup openvpn networkmanager`` and ``certidude setup strongswan networkmanager``.
2015-07-26 20:34:46 +00:00
HTTPS:
* P12 bundle generation for web browsers, seems to work well with Android
* HTTPS server setup with client verification, check out ``certidude setup nginx``
2015-08-22 20:19:30 +00:00
TODO
----
* `OCSP <https://tools.ietf.org/html/rfc4557>`_ support, needs a bit hacking since OpenSSL wrappers are not exposing the functionality.
* `SECP <https://tools.ietf.org/html/draft-nourse-scep-23>`_ support, a client implementation available `here <https://github.com/certnanny/sscep>`_. Not sure if we can implement server-side events within current standard.
2015-07-26 20:34:46 +00:00
* Deep mailbox integration, eg fetch CSR-s from mailbox via IMAP.
* WebCrypto support, meanwhile check out `hwcrypto.js <https://github.com/open-eid/hwcrypto.js>`_.
* Certificate push/pull, making it possible to sign offline.
* PKCS#11 hardware token support for signatures at command-line.
2015-08-22 20:19:30 +00:00
* Ability to send ``.ovpn`` bundle URL tokens via e-mail, for simplified VPN adoption.
* Cronjob for deleting expired certificates
* Signer process logging.
2015-07-12 19:22:10 +00:00
2015-07-12 19:22:10 +00:00
Install
-------
To install Certidude:
.. code:: bash
apt-get install -y python python-pip python-dev cython python-configparser \
python-pysqlite2 python-mysql.connector python-ldap \
build-essential libffi-dev libssl-dev libkrb5-dev \
ldap-utils krb5-user \
libsasl2-modules-gssapi-mit
pip install certidude
2015-08-13 08:11:08 +00:00
Make sure you're running PyOpenSSL 0.15+ from PyPI,
not the outdated one provided by APT.
2015-08-13 08:11:08 +00:00
Create a system user for ``certidude``:
2015-07-27 12:30:50 +00:00
.. code:: bash
2015-08-13 08:11:08 +00:00
adduser --system --no-create-home --group certidude
mkdir /etc/certidude
2015-07-27 12:30:50 +00:00
2015-07-12 19:22:10 +00:00
Setting up authority
--------------------
2015-07-12 19:22:10 +00:00
First make sure the machine used for certificate authority has fully qualified
domain name set up properly.
You can check it with:
.. code:: bash
hostname -f
The command should return ca.example.com
Certidude can set up certificate authority relatively easily,
following will set up certificate authority in /var/lib/certidude/hostname.domain.tld:
2015-07-12 19:22:10 +00:00
.. code:: bash
certidude setup authority
2015-07-12 19:22:10 +00:00
2016-01-10 17:51:54 +00:00
Tweak the configuration in /etc/certidude/server.conf until you meet your requirements and
spawn the signer process:
2015-08-13 08:11:08 +00:00
.. code:: bash
2016-01-15 09:18:27 +00:00
certidude signer spawn
2015-08-13 08:11:08 +00:00
2015-07-12 19:22:10 +00:00
Finally serve the certificate authority via web:
.. code:: bash
certidude serve
2015-07-26 20:34:46 +00:00
Certificate management
----------------------
Use following command to request a certificate on a machine:
.. code::
certidude setup client ca.example.com
2015-07-26 20:34:46 +00:00
2016-01-10 17:51:54 +00:00
Use following to list signing requests, certificates and revoked certificates on server:
2015-07-26 20:34:46 +00:00
.. code::
certidude list
2016-01-10 17:51:54 +00:00
Use web interface or following to sign a certificate on server:
2015-07-26 20:34:46 +00:00
.. code::
certidude sign client-hostname-or-common-name
2015-07-27 12:30:50 +00:00
Production deployment
---------------------
2015-08-16 15:09:06 +00:00
Install ``nginx`` and ``uwsgi``:
2015-07-27 12:30:50 +00:00
.. code:: bash
apt-get install nginx uwsgi uwsgi-plugin-python
2015-07-27 12:30:50 +00:00
2015-08-16 15:09:06 +00:00
For easy setup following is reccommended:
2015-08-13 08:11:08 +00:00
.. code:: bash
certidude setup production
2015-08-16 15:09:06 +00:00
Otherwise manually configure ``uwsgi`` application in ``/etc/uwsgi/apps-available/certidude.ini``:
2015-07-27 12:30:50 +00:00
.. code:: ini
[uwsgi]
master = true
processes = 1
vaccum = true
uid = certidude
gid = certidude
plugins = python
2015-07-27 12:30:50 +00:00
chdir = /tmp
module = certidude.wsgi
callable = app
chmod-socket = 660
chown-socket = certidude:www-data
2015-08-16 15:09:06 +00:00
buffer-size = 32768
env = LANG=C.UTF-8
env = LC_ALL=C.UTF-8
2016-01-10 17:51:54 +00:00
env = KRB5_KTNAME=/etc/certidude/server.keytab
env = KRB5CCNAME=/run/certidude/krb5cc
2015-07-27 12:30:50 +00:00
Also enable the application:
.. code:: bash
ln -s ../apps-available/certidude.ini /etc/uwsgi/apps-enabled/certidude.ini
2015-07-26 20:34:46 +00:00
We support `nchan <https://nchan.slact.net/>`_,
configure the site in /etc/nginx/sites-available/certidude:
2015-07-27 12:30:50 +00:00
.. code::
upstream certidude_api {
server unix:///run/uwsgi/app/certidude/socket;
2015-07-27 12:30:50 +00:00
}
server {
server_name localhost;
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;
root /usr/local/lib/python2.7/dist-packages/certidude/static;
2015-07-27 12:30:50 +00:00
location /api/ {
include uwsgi_params;
uwsgi_pass certidude_api;
}
# Add following three if you wish to enable push server on this machine
location /pub {
allow 127.0.0.1;
nchan_publisher http;
nchan_store_messages off;
nchan_channel_id $arg_id;
2015-07-27 12:30:50 +00:00
}
location ~ "^/lp/(.*)" {
nchan_subscriber longpoll;
nchan_channel_id $1;
2015-07-27 12:30:50 +00:00
}
location ~ "^/ev/(.*)" {
nchan_subscriber eventsource;
nchan_channel_id $1;
}
2015-07-27 12:30:50 +00:00
}
Enable the site:
.. code:: bash
ln -s ../sites-available/certidude /etc/nginx/sites-enabled/certidude
2015-07-27 12:30:50 +00:00
Also adjust ``/etc/nginx/nginx.conf``:
2015-07-26 20:34:46 +00:00
.. code::
user www-data;
worker_processes 4;
pid /run/nginx.pid;
events {
2015-07-27 15:49:50 +00:00
worker_connections 768;
2015-07-26 20:34:46 +00:00
}
http {
2015-07-27 15:49:50 +00:00
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
include /etc/nginx/mime.types;
default_type application/octet-stream;
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
gzip on;
gzip_disable "msie6";
include /etc/nginx/conf.d/*;
2015-07-27 15:49:50 +00:00
include /etc/nginx/sites-enabled/*;
2015-07-26 20:34:46 +00:00
}
In your Certidude server's /etc/certidude/server.conf make sure Certidude
is aware of your nginx setup:
.. code::
push_server = http://push.example.com/
2015-07-27 12:30:50 +00:00
Restart the services:
2015-07-26 20:34:46 +00:00
.. code:: bash
2015-07-27 12:30:50 +00:00
service uwsgi restart
service nginx restart
Setting up Active Directory authentication
------------------------------------------
Following assumes you have already set up Kerberos infrastructure and
Certidude is simply one of the servers making use of that infrastructure.
Install dependencies:
.. code:: bash
apt-get install samba-common-bin krb5-user ldap-utils
Make sure Certidude machine's fully qualified hostname is correct in ``/etc/hosts``:
.. code::
127.0.0.1 localhost
127.0.1.1 ca.example.lan ca
Reset Samba client configuration in ``/etc/samba/smb.conf``:
.. code:: ini
[global]
security = ads
netbios name = CA
workgroup = EXAMPLE
realm = EXAMPLE.LAN
kerberos method = system keytab
Reset Kerberos configuration in ``/etc/krb5.conf``:
.. code:: ini
[libdefaults]
default_realm = EXAMPLE.LAN
dns_lookup_realm = true
dns_lookup_kdc = true
Initialize Kerberos credentials:
.. code:: bash
kinit administrator
Join the machine to domain:
.. code:: bash
net ads join -k
Set up Kerberos keytab for the web service:
.. code:: bash
KRB5_KTNAME=FILE:/etc/certidude/server.keytab net ads keytab add HTTP -k
chown root:certidude /etc/certidude/server.keytab
chmod 640 /etc/certidude/server.keytab
Reconfigure /etc/certidude/server.conf:
.. code:: ini
[authentication]
backends = kerberos
[authorization]
backend = ldap
ldap gssapi credential cache = /run/certidude/krb5cc
ldap user filter = (&(objectclass=user)(objectcategory=person)(samaccountname=%s))
ldap admin filter = (&(memberOf=cn=Domain Admins,cn=Users,dc=example,dc=com)(samaccountname=%s))
User filter here specified which users can log in to Certidude web interface
at all eg. for generating user certificates for HTTPS.
Admin filter specifies which users are allowed to sign and revoke certificates.
Adjust admin filter according to your setup.
Also make sure there is cron.hourly job for creating GSSAPI credential cache -
that's necessary for querying LDAP using Certidude machine's credentials.
Automating certificate setup
----------------------------
Ubuntu 14.04 based desktops come with NetworkManager installed.
Create ``/etc/NetworkManager/dispatcher.d/certidude`` with following content:
.. code:: bash
#!/bin/sh -e
# Set up certificates for IPSec connection
case "$2" in
up)
LANG=C.UTF-8 /usr/local/bin/certidude request spawn -k
;;
esac
Finally make it executable:
.. code:: bash
chmod +x /etc/NetworkManager/dispatcher.d/certidude
Whenever a wired or wireless connection is brought up,
the dispatcher invokes ``certidude`` in order to generate RSA keys,
submit CSR, fetch signed certificate,
create NetworkManager configuration for the VPN connection.
2016-01-25 09:18:19 +00:00
Development
-----------
Clone the repository:
.. code:: bash
git clone https://github.com/laurivosandi/certidude
cd certidude
Install dependencies as shown above and additionally:
.. code:: bash
pip install -r requirements.txt
2016-01-25 09:18:19 +00:00
To generate templates:
.. code:: bash
apt-get install npm nodejs
sudo ln -s nodejs /usr/bin/node # Fix 'env node' on Ubuntu 14.04
npm install -g nunjucks
nunjucks-precompile --include "\\.html$" --include "\\.svg$" certidude/static/ > certidude/static/js/templates.js
2016-01-25 09:18:19 +00:00
To run from source tree:
.. code:: bash
PYTHONPATH=. KRB5_KTNAME=/etc/certidude/server.keytab LANG=C.UTF-8 python misc/certidude
2016-01-25 09:18:19 +00:00
To install the package from the source:
.. code:: bash
python setup.py install --single-version-externally-managed --root /