summaryrefslogtreecommitdiff
path: root/tools/Utils/generate_test_certificates.py
blob: ea37eeb4cc0ba23b824785c92c5179191450839e (plain)
1
2
3
4
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
30
31
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
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
#!/usr/bin/env python2
# -*- coding: utf-8 -*-

"""Generate certificates for testing
  Usage:
    generate_test_certificate.py --dir=<name of directory>
"""

import os
import subprocess
import tempfile
import shutil
from argparse import ArgumentParser
from subprocess import check_call

def run(command, *args):
    """Application caller
    wrap console call 'command args'
    """
    args_str = " " + " ".join(str(s) for s in list(args[0]))
    if len(args_str) > 0 :
        command += " " + args_str
    print "Running", command
    retcode = check_call(command, shell=True)
    if retcode < 0:
        raise RuntimeError("Child was terminated by signal")

def openssl(*args):
    """OpenSSL caller
    wrap console call 'openssl args'
    """
    run("openssl", args)

def gen_rsa_key(out_key_file, key_size):
    """Private key generator
    wrap console call 'openssl genrsa -out $out_key_file $key_size'
    """
    openssl("genrsa", "-out", out_key_file, key_size)

def gen_root_cert(out_cert_file, key_file, days, answer):
    """Root certificate generator
    wrap console call 'openssl req -x509 -new -key $key_file -days $days -out $out_cert_file -subj $answer'
    """
    openssl("req -x509 -new -key", key_file, "-days", days, "-out", out_cert_file, "-subj", answer)

def gen_ca_cert(out_cert_file, key_file, ca_cert_file, ca_key_file, days, answer):
    request_file = out_cert_file + ".req"
    openssl("req -new -key", key_file, "-days", days, "-out", request_file, "-subj", answer)

    temp_dir = tempfile.mkdtemp()
    config_file_path = os.path.join(temp_dir, "ca.conf")
    config_file = open(config_file_path, 'w')
    config_file.write("""[ v3_intermediate_ca ]
        basicConstraints = critical, CA:true\n""")
    config_file.close()

    openssl("x509 -hash -req -in", request_file, "-CA", ca_cert_file, "-CAkey", ca_key_file, \
        "-CAcreateserial -out", out_cert_file, "-days", days, "-extfile", config_file_path, "-extensions v3_intermediate_ca")

    shutil.rmtree(temp_dir)

def gen_cert(out_cert_file, key_file, ca_cert_file, ca_key_file, days, answer):
    """Certificate generator
    wrap console call
    'openssl req -new -key $key_file -days $days -out $out_cert_file -subj $answer'
    'openssl x509 -req -in $out_cert_file -CA $ca_cert_file -CAkey ca_key_file -CAcreateserial -out $out_cert_file -days 5000'
    """
    request_file = out_cert_file + ".req"
    openssl("req -new -key", key_file, "-days", days, "-out", request_file, "-subj", answer)

    openssl("x509 -hash -req -in", request_file, "-CA", ca_cert_file, "-CAkey", ca_key_file, \
        "-CAcreateserial -out", out_cert_file, "-days", days)

def gen_expire_cert(out_cert_file, key_file, ca_cert_file, ca_key_file, days, answer):
    """Expired certificate generator
    wrap console call
    'openssl req -new -key $key_file -days $days -out $out_cert_file -subj $answer'
    'openssl ca -batch -config $config_file_path -in $request_file -out $out_cert_file,
        "-cert",  ca_cert_file, "-keyfile", ca_key_file, "-startdate 150101000000Z -enddate 150314092653Z'
    """
    request_file = out_cert_file + ".req"
    openssl("req -new -key", key_file, "-days", days, "-out", request_file, "-subj", answer)

    # Create temporary files needed for expired certificate generation
    temp_dir = tempfile.mkdtemp()
    config_file_path = os.path.join(temp_dir, "database.conf")
    database_file_path = os.path.join(temp_dir, "database")
    serial_file_path = os.path.join(temp_dir, "serial")
    # create file
    open(database_file_path, 'w').close()

    serial_file = open(serial_file_path, 'w')
    serial_file.write("01")
    serial_file.close();

    current_dir = os.getcwd()
    config_file = open(config_file_path, 'w')
    config_file.write(
        """[ ca ]
        default_ca = ca_default

        [ ca_default ]
        dir = %s""" % (temp_dir, ) + """
        certs = %s""" % (current_dir, ) + """
        new_certs_dir =  %s""" % (current_dir, ) + """
        database = %s""" % (database_file_path, ) + """
        serial = %s""" % (serial_file_path, ) + """
        RANDFILE = $dir/ca.db.rand
        certificate =  %s""" % (os.path.abspath(ca_cert_file), ) + """
        private_key =  %s""" % (os.path.abspath(ca_key_file), ) + """
        default_days = 365
        default_crl_days = 30
        default_md = sha256
        preserve = no
        policy = generic_policy
        [ generic_policy ]
        countryName = optional
        stateOrProvinceName = optional
        localityName = optional
        organizationName = optional
        organizationalUnitName = optional
        commonName = supplied
        emailAddress = optional\n""")
    config_file.close();

    openssl("ca -batch -config", config_file_path, "-in", request_file, "-out", out_cert_file,
        "-startdate 150101000000Z -enddate 150314092653Z")

    shutil.rmtree(temp_dir)

def gen_pkcs12(out, key_file, cert_file, verification_certificate) :
    """Pem to PKCS#12 standard
    wrap console call
    'openssl pkcs12 -export -out $out -inkey $key_file -in $cert_file -name 'SPT key and certificates' -certfile $certs'
    """
    openssl("pkcs12 -export -out", out, "-inkey", key_file, "-in", cert_file, \
       "-name 'SPT key and certificates'", "-CAfile ", verification_certificate, \
       " -passout pass:")

def gen_pem_file(out, key_file, cert_file, verification_certificate) :
    """Join $key_file, $cert_file, $verification_certificate in pem file named $out"""
    files = [key_file, cert_file, verification_certificate]
    with open(out, "wb") as cert:
        for fl in files:
            with open(fl) as infile:
                cert.write(infile.read())

def answers(name, app_id, country, state, locality, organization, unit, email) :
    """Answer string generator
    Generate answer for certificate creation with openssl
    Country argument need to be 2 symbol size
    """
    if len(country) != 2 :
        raise ValueError("Country argument need to be 2 symbol size")
    answer ="'/C={0}/ST={1}/L={2}/O={3}".format(country, state, locality, organization)
    answer +="/OU={0}/CN={1}/emailAddress={2}'".format(unit, name, email)
    if len(app_id) > 0:
        answer += "/serialNumber={0}".format(app_id)
    return answer

def concat_files(out_file_name, *args) :
    print "Concatenate text files", args, "into", out_file_name
    with open(out_file_name, 'w') as outfile:
        for fname in args :
            with open(fname) as infile :
                outfile.write(infile.read())


def main():
    soft_verify_file  = os.path.join("server", "server_root.key")
    arg_parser = ArgumentParser(description='Welcome to SDL test certificate generator.')
    arg_parser.add_argument('-d', '--dir', help="directory for certificate generating")
    arg_parser.add_argument('-s', '--soft', help="do not override existing certificates if '%s' exists" % soft_verify_file, action='store_true' )
    args = arg_parser.parse_args()
    if args.dir:
        if not os.path.exists(args.dir):
            raise OSError("Input directory does not exist")
        os.chdir(args.dir)
    if args.soft:
        if os.path.exists(soft_verify_file):
            print "Root key file '%s' exists. Generation skipped according to soft mode." % (soft_verify_file, )
            return

    server_root_answer = answers("server_root", "", "US", "California", "Silicon Valley", "CAcert.org", "CAcert", "sample@cacert.org")
    client_root_answer = answers("client_root", "", "US", "California", "Silicon Valley", "CAcert.org", "CAcert", "sample@cacert.org")
    ford_server_answer = answers("FORD", "", "US", "Michigan", "Detroit", "FORD_SERVER", "FORD_SDL_SERVER" ,"sample@ford.com")
    ford_client_answer = answers("FORD_CLIENT", "", "US", "Michigan", "Detroit", "FORD_CLIENT", "FORD_SDL_CLIENT" ,"sample@ford.com")
    client_answer  = answers("client", "SPT", "RU", "Russia", "St. Petersburg", "Luxoft", "HeadUnit" ,"sample@luxoft.com")
    server_answer  = answers("server", "SPT", "RU", "Russia", "St. Petersburg", "Luxoft", "Mobile" ,"sample@luxoft.com")
    server_unsigned_answer  = answers("server", "SPT", "RU", "Russia", "St. Petersburg", "Luxoft", "Mobile_unsigned" ,"sample@luxoft.com")
    server_expired_answer  = answers("server", "SPT", "RU", "Russia", "St. Petersburg", "Luxoft", "Mobile_expired" ,"sample@luxoft.com")
    client_unsigned_answer  = answers("client", "SPT", "RU", "Russia", "St. Petersburg", "Luxoft", "Mobile_unsigned" ,"sample@luxoft.com")
    client_expired_answer  = answers("client", "SPT", "RU", "Russia", "St. Petersburg", "Luxoft", "Mobile_expired" ,"sample@luxoft.com")
    days = 10000

    server_dir = "server"
    client_dir = "client"
    if not os.path.exists(server_dir):
        os.mkdir(server_dir)
    if not os.path.exists(client_dir):
        os.mkdir(client_dir)

    print " --== Root certificate generating SERVER==-- "
    server_root_key_file  = os.path.join(server_dir, "server_root.key")
    assert soft_verify_file == server_root_key_file, 'Update soft key file path'
    server_root_cert_file = os.path.join(server_dir, "server_root.crt")
    gen_rsa_key(server_root_key_file, 2048)
    gen_root_cert(server_root_cert_file, server_root_key_file, days, server_root_answer)

    print " --== Root certificate generating CLIENT==-- "
    client_root_key_file  = os.path.join(client_dir, "client_root.key")
    client_root_cert_file = os.path.join(client_dir, "client_root.crt")
    gen_rsa_key(client_root_key_file, 2048)
    gen_root_cert(client_root_cert_file, client_root_key_file, days, client_root_answer)

    print
    print " --== Ford server CA certificate generating ==-- "
    ford_server_key_file  = os.path.join(server_dir, "ford_server.key")
    ford_server_cert_file = os.path.join(server_dir, "ford_server.crt")
    gen_rsa_key(ford_server_key_file, 2048)
    gen_ca_cert(ford_server_cert_file, ford_server_key_file, server_root_cert_file, server_root_key_file, days, ford_server_answer)

    print
    print " --== Ford client CA certificate generating ==-- "
    ford_client_key_file  = os.path.join(client_dir, "ford_client.key")
    ford_client_cert_file = os.path.join(client_dir, "ford_client.crt")
    gen_rsa_key(ford_client_key_file, 2048)
    gen_ca_cert(ford_client_cert_file, ford_client_key_file, client_root_cert_file, client_root_key_file, days, ford_client_answer)

    print
    print " --== SDL and SPT adjustment  ==-- "
    server_verification_ca_cert_file = os.path.join(server_dir, "server_verification_ca_cetrificates.crt")
    client_verification_ca_cert_file = os.path.join(client_dir,  "client_verification_ca_cetrificates.crt")
    concat_files(server_verification_ca_cert_file, server_root_cert_file, ford_server_cert_file)
    concat_files(client_verification_ca_cert_file, client_root_cert_file, ford_client_cert_file)


    print
    print " --== Client certificate generating ==-- "
    client_key_file  = os.path.join(client_dir, "client.key")
    client_cert_file = os.path.join(client_dir, "client.crt")
    gen_rsa_key(client_key_file, 2048)
    gen_cert(client_cert_file, client_key_file, ford_client_cert_file, ford_client_key_file, days, client_answer)


    print
    print " --== Server certificate generating ==-- "
    server_key_file = os.path.join(server_dir, "server.key")
    server_cert_file = os.path.join(server_dir, "server.crt")
    server_pkcs12_file = os.path.join(server_dir, "spt_credential.p12")
    server_pem_file = os.path.join(server_dir, "spt_credential.pem")
    gen_rsa_key(server_key_file, 2048)
    gen_cert(server_cert_file, server_key_file, ford_server_cert_file, ford_server_key_file, days, server_answer)
    gen_pkcs12(server_pkcs12_file, server_key_file, server_cert_file, client_verification_ca_cert_file)
    gen_pem_file(server_pem_file, server_key_file, server_cert_file, client_verification_ca_cert_file)

    print
    print " --== Server unsigned certificate generating ==-- "
    server_unsigned_cert_file = os.path.join(server_dir, "server_unsigned.crt")
    server_pkcs12_unsigned_file = os.path.join(server_dir, "spt_credential_unsigned.p12")
    server_pem_unsigned_file = os.path.join(server_dir, "spt_credential_unsigned.pem")
    gen_root_cert(server_unsigned_cert_file, server_key_file, days, server_unsigned_answer)
    gen_pkcs12(server_pkcs12_unsigned_file, server_key_file, server_unsigned_cert_file, client_verification_ca_cert_file)
    gen_pem_file(server_pem_unsigned_file, server_key_file, server_unsigned_cert_file, client_verification_ca_cert_file)

    print
    print " --== Server expired certificate generating ==-- "
    server_expired_cert_file = os.path.join(server_dir, "server_expired.crt")
    server_pkcs12_expired_file = os.path.join(server_dir, "spt_credential_expired.p12")
    server_pem_expired_file = os.path.join(server_dir, "spt_credential_expired.pem")
    gen_expire_cert(server_expired_cert_file, server_key_file, ford_server_cert_file, ford_server_key_file, days, server_expired_answer)
    gen_pkcs12(server_pkcs12_expired_file, server_key_file, server_expired_cert_file, client_verification_ca_cert_file)
    gen_pem_file(server_pem_expired_file, server_key_file, server_expired_cert_file, client_verification_ca_cert_file)


    print
    print " --== Client pkcs12 certificate generating ==-- "
    client_key_file = os.path.join(client_dir, "client.key")
    client_cert_file = os.path.join(client_dir, "client.crt")
    client_pkcs12_file = os.path.join(client_dir, "client_credential.pem")
    gen_rsa_key(client_key_file, 2048)
    gen_cert(client_cert_file, client_key_file, ford_client_cert_file, ford_client_key_file, days, client_answer)
    gen_pem_file(client_pkcs12_file, client_key_file, client_cert_file, server_verification_ca_cert_file)

    print
    print " --== Client pkcs12 unsigned certificate generating ==-- "
    client_unsigned_cert_file = os.path.join(client_dir, "client_unsigned.crt")
    client_pkcs12_unsigned_file = os.path.join(client_dir, "client_credential_unsigned.pem")
    gen_root_cert(client_unsigned_cert_file, client_key_file, days, client_unsigned_answer)
    gen_pem_file(client_pkcs12_unsigned_file, client_key_file, client_unsigned_cert_file, server_verification_ca_cert_file)

    print
    print " --== Client pkcs12 expired certificate generating ==-- "
    client_expired_cert_file = os.path.join(client_dir, "client_expired.crt")
    client_pkcs12_expired_file = os.path.join(client_dir, "client_credential_expired.pem")
    gen_expire_cert(client_expired_cert_file, client_key_file, ford_client_cert_file, ford_client_key_file, days, client_expired_answer)
    gen_pem_file(client_pkcs12_expired_file, client_key_file, client_expired_cert_file, server_verification_ca_cert_file)

    subprocess.call(["c_rehash", server_dir])
    subprocess.call(["c_rehash", client_dir])
    print
    print "All certificates have been generated"

if __name__ == "__main__":
    main()