#!/usr/bin/python import base64 import hashlib import ldap import os import sys import textwrap CERTS_DIR = '/var/lib/scripts-certs' ll = ldap.initialize('ldapi://%2fvar%2frun%2fslapd-scripts.socket/') with open('/etc/signup-ldap-pw') as pw_file: ll.simple_bind_s("cn=Directory Manager", pw_file.read()) if not os.path.exists(CERTS_DIR): os.mkdir(CERTS_DIR) vhosts = ll.search_s( 'ou=VirtualHosts,dc=scripts,dc=mit,dc=edu', ldap.SCOPE_SUBTREE, '(&(objectClass=scriptsVhost)(scriptsVhostCertificate=*))', ['scriptsVhostName', 'scriptsVhostAlias', 'scriptsVhostCertificate', 'scriptsVhostCertificateKeyFile']) vhosts.sort(key=lambda (dn, vhost): vhost['scriptsVhostName']) def conf(vhost): name, = vhost['scriptsVhostName'] aliases = vhost.get('scriptsVhostAlias', []) certs, = vhost['scriptsVhostCertificate'] key_filename, = vhost['scriptsVhostCertificateKeyFile'] certs = ''.join('-----BEGIN CERTIFICATE-----\n' + '\n'.join(textwrap.wrap(cert, 64)) + '\n-----END CERTIFICATE-----\n' for cert in certs.split()) cert_filename = os.path.join(CERTS_DIR, base64.urlsafe_b64encode(hashlib.sha256(certs).digest()).strip() + '.pem') if not os.path.exists(cert_filename): with open(cert_filename + '.new', 'w') as cert_file: cert_file.write(certs) os.rename(cert_filename + '.new', cert_filename) for port in 443, 444: yield '\n'.format(port) yield '\tServerName {}\n'.format(name) if aliases: yield '\tServerAlias {}\n'.format(' '.join(aliases)) yield '\tInclude conf.d/vhost_ldap.conf\n' yield '\tInclude conf.d/vhosts-common-ssl.conf\n' if port == 444: yield '\tInclude conf.d/vhosts-common-ssl-cert.conf\n' yield '\tSSLCertificateFile {}\n'.format(cert_filename) yield '\tSSLCertificateKeyFile {}\n'.format(os.path.join('/etc/pki/tls/private', key_filename)) yield '\n' with open(os.path.join(CERTS_DIR, 'vhosts.conf.new'), 'w') as vhosts_file: vhosts_file.write('# Generated by {}. Manual changes will be lost.\n\n'.format(os.path.realpath(__file__))) vhosts_file.write(''.join(l for dn, vhost in vhosts for l in conf(vhost))) os.rename(os.path.join(CERTS_DIR, 'vhosts.conf.new'), os.path.join(CERTS_DIR, 'vhosts.conf'))