3
# Copyright (C) 2007 Canonical Ltd
5
# This program is free software; you can redistribute it and/or modify
6
# it under the terms of the GNU General Public License as published by
7
# the Free Software Foundation; either version 2 of the License, or
8
# (at your option) any later version.
10
# This program is distributed in the hope that it will be useful,
11
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
# GNU General Public License for more details.
15
# You should have received a copy of the GNU General Public License
16
# along with this program; if not, write to the Free Software
17
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19
"""create_ssls.py -- create sll keys and certificates for tests.
21
The https server requires at least a key and a certificate to start.
23
SSL keys and certificates are created with openssl which may not be available
24
everywhere we want to run the test suite.
26
To simplify test writing, the necessary keys and certificates are generated by
27
this script and used by the tests.
29
Since creating these test keys and certificates requires a good knowledge of
30
openssl and a lot of typing, we record all the needed parameters here.
32
Since this will be used rarely, no effort has been made to handle exotic
33
errors, the basic policy is that openssl should be available in the path and
34
the parameters should be correct, any error will abort the script. Feel free to
37
This script provides options for building any individual files or two options
38
to build the certificate authority files (--ca) or the server files (--server).
41
from cStringIO import StringIO
44
from subprocess import (
53
from bzrlib.tests import (
61
def needs(request, *paths):
62
"""Errors out if the specified path does not exists"""
63
missing = [p for p in paths if not os.path.exists(p)]
65
error('%s needs: %s' % (request, ','.join(missing)))
75
def _openssl(args, input=None):
76
"""Execute a command in a subproces feeding stdin with the provided input.
78
:return: (returncode, stdout, stderr)
80
cmd = ['openssl'] + args
81
proc = Popen(cmd, stdin=PIPE)
82
(stdout, stderr) = proc.communicate(input)
84
# Basic error handling, all commands should succeed
85
raise CalledProcessError(proc.returncode, cmd)
86
return proc.returncode, stdout, stderr
91
server_pass='I will protect the communications',
92
server_challenge_pass='Challenge for the CA',
93
ca_pass='I am the authority for the whole... localhost',
98
ca_organization='Distributed',
100
ca_name='Master fo certificates',
101
ca_email='cert@no.spam',
103
server_country_code='LH',
104
server_state='Internet',
105
server_locality='LocalHost',
106
server_organization='Testing Ltd',
107
server_section='https server',
108
server_name='127.0.0.1', # Always accessed under that name
109
server_email='https_server@locahost',
110
server_optional_company_name='',
115
"""Generate an ssl certificate authority private key."""
116
key_path = ssl_certs.build_path('ca.key')
118
_openssl(['genrsa', '-passout', 'stdin', '-des3', '-out', key_path, '4096'],
119
'%(ca_pass)s\n%(ca_pass)s\n' % ssl_params)
122
def build_ca_certificate():
123
"""Generate an ssl certificate authority private key."""
124
key_path = ssl_certs.build_path('ca.key')
125
needs('Building ca.crt', key_path)
126
cert_path = ssl_certs.build_path('ca.crt')
128
_openssl(['req', '-passin', 'stdin', '-new', '-x509',
129
# Will need to be generated again in 10 years -- vila 20071122
131
'-key', key_path, '-out', cert_path],
133
'%(ca_country_code)s\n'
136
'%(ca_organization)s\n'
143
def build_server_key():
144
"""Generate an ssl server private key.
146
We generates a key with a password and then copy it without password so
147
that as server can user it without prompting.
149
key_path = ssl_certs.build_path('server_with_pass.key')
151
_openssl(['genrsa', '-passout', 'stdin', '-des3', '-out', key_path, '4096'],
152
'%(server_pass)s\n%(server_pass)s\n' % ssl_params)
154
key_nopass_path = ssl_certs.build_path('server_without_pass.key')
155
rm_f(key_nopass_path)
156
_openssl(['rsa', '-passin', 'stdin', '-in', key_path,
157
'-out', key_nopass_path,],
158
'%(server_pass)s\n' % ssl_params)
161
def build_server_signing_request():
162
"""Create a CSR (certificate signing request) to get signed by the CA"""
163
key_path = ssl_certs.build_path('server_with_pass.key')
164
needs('Building server.csr', key_path)
165
server_csr_path = ssl_certs.build_path('server.csr')
166
rm_f(server_csr_path)
167
_openssl(['req', '-passin', 'stdin', '-new', '-key', key_path,
168
'-out', server_csr_path],
170
'%(server_country_code)s\n'
172
'%(server_locality)s\n'
173
'%(server_organization)s\n'
174
'%(server_section)s\n'
177
'%(server_challenge_pass)s\n'
178
'%(server_optional_company_name)s\n'
182
def sign_server_certificate():
183
"""CA signs server csr"""
184
server_csr_path = ssl_certs.build_path('server.csr')
185
ca_cert_path = ssl_certs.build_path('ca.crt')
186
ca_key_path = ssl_certs.build_path('ca.key')
187
needs('Signing server.crt', server_csr_path, ca_cert_path, ca_key_path)
188
server_cert_path = ssl_certs.build_path('server.crt')
189
rm_f(server_cert_path)
190
_openssl(['x509', '-req', '-passin', 'stdin',
191
# Will need to be generated again in 10 years -- vila 20071122
193
'-in', server_csr_path,
194
'-CA', ca_cert_path, '-CAkey', ca_key_path,
196
'-out', server_cert_path,],
197
'%(ca_pass)s\n' % ssl_params)
200
def build_ssls(name, options, builders):
201
if options is not None:
203
builder = builders.get(item, None)
205
error('%s is not a known %s' % (item, name))
209
opt_parser = optparse.OptionParser(usage="usage: %prog [options]")
210
opt_parser.set_defaults(ca=False)
211
opt_parser.set_defaults(server=False)
212
opt_parser.add_option(
213
"--ca", dest="ca", action="store_true",
214
help="Generate CA key and certificate")
215
opt_parser.add_option(
216
"--server", dest="server", action="store_true",
217
help="Generate server key, certificate signing request and certificate")
218
opt_parser.add_option(
219
"-k", "--key", dest="keys", action="append", metavar="KEY",
220
help="generate a new KEY (several -k options can be specified)")
221
opt_parser.add_option(
222
"-c", "--certificate", dest="certificates", action="append",
223
metavar="CERTIFICATE",
224
help="generate a new CERTIFICATE (several -c options can be specified)")
225
opt_parser.add_option(
226
"-r", "--sign-request", dest="signing_requests", action="append",
228
help="generate a new signing REQUEST (several -r options can be specified)")
229
opt_parser.add_option(
230
"-s", "--sign", dest="signings", action="append",
232
help="generate a new SIGNING (several -s options can be specified)")
235
key_builders = dict(ca=build_ca_key, server=build_server_key,)
236
certificate_builders = dict(ca=build_ca_certificate,)
237
signing_request_builders = dict(server=build_server_signing_request,)
238
signing_builders = dict(server=sign_server_certificate,)
241
if __name__ == '__main__':
242
(Options, args) = opt_parser.parse_args()
243
if (Options.ca or Options.server):
244
if (Options.keys or Options.certificates or Options.signing_requests
245
or Options.signings):
246
error("--ca and --server can't be used with other options")
249
build_ca_certificate()
252
build_server_signing_request()
253
sign_server_certificate()
255
build_ssls('key', Options.keys, key_builders)
256
build_ssls('certificate', Options.certificates, certificate_builders)
257
build_ssls('signing request', Options.signing_requests,
258
signing_request_builders)
259
build_ssls('signing', Options.signings, signing_builders)