Merge branch 'geni-v3' of ssh://git.onelab.eu/git/sfa into geni-v3
[sfa.git] / sfa / trust / certificate.py
1 #----------------------------------------------------------------------
2 # Copyright (c) 2008 Board of Trustees, Princeton University
3 #
4 # Permission is hereby granted, free of charge, to any person obtaining
5 # a copy of this software and/or hardware specification (the "Work") to
6 # deal in the Work without restriction, including without limitation the
7 # rights to use, copy, modify, merge, publish, distribute, sublicense,
8 # and/or sell copies of the Work, and to permit persons to whom the Work
9 # is furnished to do so, subject to the following conditions:
10 #
11 # The above copyright notice and this permission notice shall be
12 # included in all copies or substantial portions of the Work.
13 #
14 # THE WORK IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 
15 # OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 
16 # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 
17 # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT 
18 # HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 
19 # WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
20 # OUT OF OR IN CONNECTION WITH THE WORK OR THE USE OR OTHER DEALINGS 
21 # IN THE WORK.
22 #----------------------------------------------------------------------
23
24 ##
25 # SFA uses two crypto libraries: pyOpenSSL and M2Crypto to implement
26 # the necessary crypto functionality. Ideally just one of these libraries
27 # would be used, but unfortunately each of these libraries is independently
28 # lacking. The pyOpenSSL library is missing many necessary functions, and
29 # the M2Crypto library has crashed inside of some of the functions. The
30 # design decision is to use pyOpenSSL whenever possible as it seems more
31 # stable, and only use M2Crypto for those functions that are not possible
32 # in pyOpenSSL.
33 #
34 # This module exports two classes: Keypair and Certificate.
35 ##
36 #
37
38 import functools
39 import os
40 import tempfile
41 import base64
42 from tempfile import mkstemp
43
44 from OpenSSL import crypto
45 import M2Crypto
46 from M2Crypto import X509
47
48 from sfa.util.faults import CertExpired, CertMissingParent, CertNotSignedByParent
49 from sfa.util.sfalogging import logger
50
51 # this tends to generate quite some logs for little or no value
52 debug_verify_chain = False
53
54 glo_passphrase_callback = None
55
56 ##
57 # A global callback may be implemented for requesting passphrases from the
58 # user. The function will be called with three arguments:
59 #
60 #    keypair_obj: the keypair object that is calling the passphrase
61 #    string: the string containing the private key that's being loaded
62 #    x: unknown, appears to be 0, comes from pyOpenSSL and/or m2crypto
63 #
64 # The callback should return a string containing the passphrase.
65
66 def set_passphrase_callback(callback_func):
67     global glo_passphrase_callback
68
69     glo_passphrase_callback = callback_func
70
71 ##
72 # Sets a fixed passphrase.
73
74 def set_passphrase(passphrase):
75     set_passphrase_callback( lambda k,s,x: passphrase )
76
77 ##
78 # Check to see if a passphrase works for a particular private key string.
79 # Intended to be used by passphrase callbacks for input validation.
80
81 def test_passphrase(string, passphrase):
82     try:
83         crypto.load_privatekey(crypto.FILETYPE_PEM, string, (lambda x: passphrase))
84         return True
85     except:
86         return False
87
88 def convert_public_key(key):
89     keyconvert_path = "/usr/bin/keyconvert.py"
90     if not os.path.isfile(keyconvert_path):
91         raise IOError, "Could not find keyconvert in %s" % keyconvert_path
92
93     # we can only convert rsa keys
94     if "ssh-dss" in key:
95         raise Exception, "keyconvert: dss keys are not supported"
96
97     (ssh_f, ssh_fn) = tempfile.mkstemp()
98     ssl_fn = tempfile.mktemp()
99     os.write(ssh_f, key)
100     os.close(ssh_f)
101
102     cmd = keyconvert_path + " " + ssh_fn + " " + ssl_fn
103     os.system(cmd)
104
105     # this check leaves the temporary file containing the public key so
106     # that it can be expected to see why it failed.
107     # TODO: for production, cleanup the temporary files
108     if not os.path.exists(ssl_fn):
109         raise Exception, "keyconvert: generated certificate not found. keyconvert may have failed."
110
111     k = Keypair()
112     try:
113         k.load_pubkey_from_file(ssl_fn)
114         return k
115     except:
116         logger.log_exc("convert_public_key caught exception")
117         raise
118     finally:
119         # remove the temporary files
120         if os.path.exists(ssh_fn):
121             os.remove(ssh_fn)
122         if os.path.exists(ssl_fn):
123             os.remove(ssl_fn)
124
125 ##
126 # Public-private key pairs are implemented by the Keypair class.
127 # A Keypair object may represent both a public and private key pair, or it
128 # may represent only a public key (this usage is consistent with OpenSSL).
129
130 class Keypair:
131     key = None       # public/private keypair
132     m2key = None     # public key (m2crypto format)
133
134     ##
135     # Creates a Keypair object
136     # @param create If create==True, creates a new public/private key and
137     #     stores it in the object
138     # @param string If string!=None, load the keypair from the string (PEM)
139     # @param filename If filename!=None, load the keypair from the file
140
141     def __init__(self, create=False, string=None, filename=None):
142         if create:
143             self.create()
144         if string:
145             self.load_from_string(string)
146         if filename:
147             self.load_from_file(filename)
148
149     ##
150     # Create a RSA public/private key pair and store it inside the keypair object
151
152     def create(self):
153         self.key = crypto.PKey()
154         self.key.generate_key(crypto.TYPE_RSA, 1024)
155
156     ##
157     # Save the private key to a file
158     # @param filename name of file to store the keypair in
159
160     def save_to_file(self, filename):
161         open(filename, 'w').write(self.as_pem())
162         self.filename=filename
163
164     ##
165     # Load the private key from a file. Implicity the private key includes the public key.
166
167     def load_from_file(self, filename):
168         self.filename=filename
169         buffer = open(filename, 'r').read()
170         self.load_from_string(buffer)
171
172     ##
173     # Load the private key from a string. Implicitly the private key includes the public key.
174
175     def load_from_string(self, string):
176         if glo_passphrase_callback:
177             self.key = crypto.load_privatekey(crypto.FILETYPE_PEM, string, functools.partial(glo_passphrase_callback, self, string) )
178             self.m2key = M2Crypto.EVP.load_key_string(string, functools.partial(glo_passphrase_callback, self, string) )
179         else:
180             self.key = crypto.load_privatekey(crypto.FILETYPE_PEM, string)
181             self.m2key = M2Crypto.EVP.load_key_string(string)
182
183     ##
184     #  Load the public key from a string. No private key is loaded.
185
186     def load_pubkey_from_file(self, filename):
187         # load the m2 public key
188         m2rsakey = M2Crypto.RSA.load_pub_key(filename)
189         self.m2key = M2Crypto.EVP.PKey()
190         self.m2key.assign_rsa(m2rsakey)
191
192         # create an m2 x509 cert
193         m2name = M2Crypto.X509.X509_Name()
194         m2name.add_entry_by_txt(field="CN", type=0x1001, entry="junk", len=-1, loc=-1, set=0)
195         m2x509 = M2Crypto.X509.X509()
196         m2x509.set_pubkey(self.m2key)
197         m2x509.set_serial_number(0)
198         m2x509.set_issuer_name(m2name)
199         m2x509.set_subject_name(m2name)
200         ASN1 = M2Crypto.ASN1.ASN1_UTCTIME()
201         ASN1.set_time(500)
202         m2x509.set_not_before(ASN1)
203         m2x509.set_not_after(ASN1)
204         # x509v3 so it can have extensions
205         # prob not necc since this cert itself is junk but still...
206         m2x509.set_version(2)
207         junk_key = Keypair(create=True)
208         m2x509.sign(pkey=junk_key.get_m2_pkey(), md="sha1")
209
210         # convert the m2 x509 cert to a pyopenssl x509
211         m2pem = m2x509.as_pem()
212         pyx509 = crypto.load_certificate(crypto.FILETYPE_PEM, m2pem)
213
214         # get the pyopenssl pkey from the pyopenssl x509
215         self.key = pyx509.get_pubkey()
216         self.filename=filename
217
218     ##
219     # Load the public key from a string. No private key is loaded.
220
221     def load_pubkey_from_string(self, string):
222         (f, fn) = tempfile.mkstemp()
223         os.write(f, string)
224         os.close(f)
225         self.load_pubkey_from_file(fn)
226         os.remove(fn)
227
228     ##
229     # Return the private key in PEM format.
230
231     def as_pem(self):
232         return crypto.dump_privatekey(crypto.FILETYPE_PEM, self.key)
233
234     ##
235     # Return an M2Crypto key object
236
237     def get_m2_pkey(self):
238         if not self.m2key:
239             self.m2key = M2Crypto.EVP.load_key_string(self.as_pem())
240         return self.m2key
241
242     ##
243     # Returns a string containing the public key represented by this object.
244
245     def get_pubkey_string(self):
246         m2pkey = self.get_m2_pkey()
247         return base64.b64encode(m2pkey.as_der())
248
249     ##
250     # Return an OpenSSL pkey object
251
252     def get_openssl_pkey(self):
253         return self.key
254
255     ##
256     # Given another Keypair object, return TRUE if the two keys are the same.
257
258     def is_same(self, pkey):
259         return self.as_pem() == pkey.as_pem()
260
261     def sign_string(self, data):
262         k = self.get_m2_pkey()
263         k.sign_init()
264         k.sign_update(data)
265         return base64.b64encode(k.sign_final())
266
267     def verify_string(self, data, sig):
268         k = self.get_m2_pkey()
269         k.verify_init()
270         k.verify_update(data)
271         return M2Crypto.m2.verify_final(k.ctx, base64.b64decode(sig), k.pkey)
272
273     def compute_hash(self, value):
274         return self.sign_string(str(value))
275
276     # only informative
277     def get_filename(self):
278         return getattr(self,'filename',None)
279
280     def dump (self, *args, **kwargs):
281         print self.dump_string(*args, **kwargs)
282
283     def dump_string (self):
284         result=""
285         result += "KEYPAIR: pubkey=%40s..."%self.get_pubkey_string()
286         filename=self.get_filename()
287         if filename: result += "Filename %s\n"%filename
288         return result
289
290 ##
291 # The certificate class implements a general purpose X509 certificate, making
292 # use of the appropriate pyOpenSSL or M2Crypto abstractions. It also adds
293 # several addition features, such as the ability to maintain a chain of
294 # parent certificates, and storage of application-specific data.
295 #
296 # Certificates include the ability to maintain a chain of parents. Each
297 # certificate includes a pointer to it's parent certificate. When loaded
298 # from a file or a string, the parent chain will be automatically loaded.
299 # When saving a certificate to a file or a string, the caller can choose
300 # whether to save the parent certificates as well.
301
302 class Certificate:
303     digest = "md5"
304
305 #    x509 = None
306 #    issuerKey = None
307 #    issuerSubject = None
308 #    parent = None
309     isCA = None # will be a boolean once set
310
311     separator="-----parent-----"
312
313     ##
314     # Create a certificate object.
315     #
316     # @param lifeDays life of cert in days - default is 1825==5 years
317     # @param create If create==True, then also create a blank X509 certificate.
318     # @param subject If subject!=None, then create a blank certificate and set
319     #     it's subject name.
320     # @param string If string!=None, load the certficate from the string.
321     # @param filename If filename!=None, load the certficiate from the file.
322     # @param isCA If !=None, set whether this cert is for a CA
323
324     def __init__(self, lifeDays=1825, create=False, subject=None, string=None, filename=None, isCA=None):
325         # these used to be defined in the class !
326         self.x509 = None
327         self.issuerKey = None
328         self.issuerSubject = None
329         self.parent = None
330
331         self.data = {}
332         if create or subject:
333             self.create(lifeDays)
334         if subject:
335             self.set_subject(subject)
336         if string:
337             self.load_from_string(string)
338         if filename:
339             self.load_from_file(filename)
340
341         # Set the CA bit if a value was supplied
342         if isCA != None:
343             self.set_is_ca(isCA)
344
345     # Create a blank X509 certificate and store it in this object.
346
347     def create(self, lifeDays=1825):
348         self.x509 = crypto.X509()
349         # FIXME: Use different serial #s
350         self.x509.set_serial_number(3)
351         self.x509.gmtime_adj_notBefore(0) # 0 means now
352         self.x509.gmtime_adj_notAfter(lifeDays*60*60*24) # five years is default
353         self.x509.set_version(2) # x509v3 so it can have extensions
354
355
356     ##
357     # Given a pyOpenSSL X509 object, store that object inside of this
358     # certificate object.
359
360     def load_from_pyopenssl_x509(self, x509):
361         self.x509 = x509
362
363     ##
364     # Load the certificate from a string
365
366     def load_from_string(self, string):
367         # if it is a chain of multiple certs, then split off the first one and
368         # load it (support for the ---parent--- tag as well as normal chained certs)
369
370         string = string.strip()
371         
372         # If it's not in proper PEM format, wrap it
373         if string.count('-----BEGIN CERTIFICATE') == 0:
374             string = '-----BEGIN CERTIFICATE-----\n%s\n-----END CERTIFICATE-----' % string
375
376         # If there is a PEM cert in there, but there is some other text first
377         # such as the text of the certificate, skip the text
378         beg = string.find('-----BEGIN CERTIFICATE')
379         if beg > 0:
380             # skipping over non cert beginning                                                                                                              
381             string = string[beg:]
382
383         parts = []
384
385         if string.count('-----BEGIN CERTIFICATE-----') > 1 and \
386                string.count(Certificate.separator) == 0:
387             parts = string.split('-----END CERTIFICATE-----',1)
388             parts[0] += '-----END CERTIFICATE-----'
389         else:
390             parts = string.split(Certificate.separator, 1)
391
392         self.x509 = crypto.load_certificate(crypto.FILETYPE_PEM, parts[0])
393
394         # if there are more certs, then create a parent and let the parent load
395         # itself from the remainder of the string
396         if len(parts) > 1 and parts[1] != '':
397             self.parent = self.__class__()
398             self.parent.load_from_string(parts[1])
399
400     ##
401     # Load the certificate from a file
402
403     def load_from_file(self, filename):
404         file = open(filename)
405         string = file.read()
406         self.load_from_string(string)
407         self.filename=filename
408
409     ##
410     # Save the certificate to a string.
411     #
412     # @param save_parents If save_parents==True, then also save the parent certificates.
413
414     def save_to_string(self, save_parents=True):
415         string = crypto.dump_certificate(crypto.FILETYPE_PEM, self.x509)
416         if save_parents and self.parent:
417             string = string + self.parent.save_to_string(save_parents)
418         return string
419
420     ##
421     # Save the certificate to a file.
422     # @param save_parents If save_parents==True, then also save the parent certificates.
423
424     def save_to_file(self, filename, save_parents=True, filep=None):
425         string = self.save_to_string(save_parents=save_parents)
426         if filep:
427             f = filep
428         else:
429             f = open(filename, 'w')
430         f.write(string)
431         f.close()
432         self.filename=filename
433
434     ##
435     # Save the certificate to a random file in /tmp/
436     # @param save_parents If save_parents==True, then also save the parent certificates.
437     def save_to_random_tmp_file(self, save_parents=True):
438         fp, filename = mkstemp(suffix='cert', text=True)
439         fp = os.fdopen(fp, "w")
440         self.save_to_file(filename, save_parents=True, filep=fp)
441         return filename
442
443     ##
444     # Sets the issuer private key and name
445     # @param key Keypair object containing the private key of the issuer
446     # @param subject String containing the name of the issuer
447     # @param cert (optional) Certificate object containing the name of the issuer
448
449     def set_issuer(self, key, subject=None, cert=None):
450         self.issuerKey = key
451         if subject:
452             # it's a mistake to use subject and cert params at the same time
453             assert(not cert)
454             if isinstance(subject, dict) or isinstance(subject, str):
455                 req = crypto.X509Req()
456                 reqSubject = req.get_subject()
457                 if (isinstance(subject, dict)):
458                     for key in reqSubject.keys():
459                         setattr(reqSubject, key, subject[key])
460                 else:
461                     setattr(reqSubject, "CN", subject)
462                 subject = reqSubject
463                 # subject is not valid once req is out of scope, so save req
464                 self.issuerReq = req
465         if cert:
466             # if a cert was supplied, then get the subject from the cert
467             subject = cert.x509.get_subject()
468         assert(subject)
469         self.issuerSubject = subject
470
471     ##
472     # Get the issuer name
473
474     def get_issuer(self, which="CN"):
475         x = self.x509.get_issuer()
476         return getattr(x, which)
477
478     ##
479     # Set the subject name of the certificate
480
481     def set_subject(self, name):
482         req = crypto.X509Req()
483         subj = req.get_subject()
484         if (isinstance(name, dict)):
485             for key in name.keys():
486                 setattr(subj, key, name[key])
487         else:
488             setattr(subj, "CN", name)
489         self.x509.set_subject(subj)
490
491     ##
492     # Get the subject name of the certificate
493
494     def get_subject(self, which="CN"):
495         x = self.x509.get_subject()
496         return getattr(x, which)
497
498     ##
499     # Get a pretty-print subject name of the certificate
500     # let's try to make this a little more usable as is makes logs hairy
501     pretty_fields = ['email']
502     def filter_chunk(self, chunk):
503         for field in self.pretty_fields:
504             if field in chunk:
505                 return " "+chunk
506
507     def pretty_cert(self):
508         message = "[Cert."
509         x = self.x509.get_subject()
510         ou = getattr(x, "OU")
511         if ou: message += " OU: {}".format(ou)
512         cn = getattr(x, "CN")
513         if cn: message += " CN: {}".format(cn)
514         data = self.get_data(field='subjectAltName')
515         if data:
516             message += " SubjectAltName:"
517             counter = 0
518             filtered = [self.filter_chunk(chunk) for chunk in data.split()]
519             message += " ".join( [f for f in filtered if f])
520             omitted = len ([f for f in filtered if not f])
521             if omitted:
522                 message += "..+{} omitted".format(omitted)
523         message += "]"
524         return message
525
526     ##
527     # Get the public key of the certificate.
528     #
529     # @param key Keypair object containing the public key
530
531     def set_pubkey(self, key):
532         assert(isinstance(key, Keypair))
533         self.x509.set_pubkey(key.get_openssl_pkey())
534
535     ##
536     # Get the public key of the certificate.
537     # It is returned in the form of a Keypair object.
538
539     def get_pubkey(self):
540         m2x509 = X509.load_cert_string(self.save_to_string())
541         pkey = Keypair()
542         pkey.key = self.x509.get_pubkey()
543         pkey.m2key = m2x509.get_pubkey()
544         return pkey
545
546     def set_intermediate_ca(self, val):
547         return self.set_is_ca(val)
548
549     # Set whether this cert is for a CA. All signers and only signers should be CAs.
550     # The local member starts unset, letting us check that you only set it once
551     # @param val Boolean indicating whether this cert is for a CA
552     def set_is_ca(self, val):
553         if val is None:
554             return
555
556         if self.isCA != None:
557             # Can't double set properties
558             raise Exception, "Cannot set basicConstraints CA:?? more than once. Was %s, trying to set as %s" % (self.isCA, val)
559
560         self.isCA = val
561         if val:
562             self.add_extension('basicConstraints', 1, 'CA:TRUE')
563         else:
564             self.add_extension('basicConstraints', 1, 'CA:FALSE')
565
566
567
568     ##
569     # Add an X509 extension to the certificate. Add_extension can only be called
570     # once for a particular extension name, due to limitations in the underlying
571     # library.
572     #
573     # @param name string containing name of extension
574     # @param value string containing value of the extension
575
576     def add_extension(self, name, critical, value):
577         oldExtVal = None
578         try:
579             oldExtVal = self.get_extension(name)
580         except:
581             # M2Crypto LookupError when the extension isn't there (yet)
582             pass
583
584         # This code limits you from adding the extension with the same value
585         # The method comment says you shouldn't do this with the same name
586         # But actually it (m2crypto) appears to allow you to do this.
587         if oldExtVal and oldExtVal == value:
588             # don't add this extension again
589             # just do nothing as here
590             return
591         # FIXME: What if they are trying to set with a different value?
592         # Is this ever OK? Or should we raise an exception?
593 #        elif oldExtVal:
594 #            raise "Cannot add extension %s which had val %s with new val %s" % (name, oldExtVal, value)
595
596         ext = crypto.X509Extension (name, critical, value)
597         self.x509.add_extensions([ext])
598
599     ##
600     # Get an X509 extension from the certificate
601
602     def get_extension(self, name):
603
604         # pyOpenSSL does not have a way to get extensions
605         m2x509 = X509.load_cert_string(self.save_to_string())
606         value = m2x509.get_ext(name).get_value()
607
608         return value
609
610     ##
611     # Set_data is a wrapper around add_extension. It stores the parameter str in
612     # the X509 subject_alt_name extension. Set_data can only be called once, due
613     # to limitations in the underlying library.
614
615     def set_data(self, str, field='subjectAltName'):
616         # pyOpenSSL only allows us to add extensions, so if we try to set the
617         # same extension more than once, it will not work
618         if self.data.has_key(field):
619             raise "Cannot set ", field, " more than once"
620         self.data[field] = str
621         self.add_extension(field, 0, str)
622
623     ##
624     # Return the data string that was previously set with set_data
625
626     def get_data(self, field='subjectAltName'):
627         if self.data.has_key(field):
628             return self.data[field]
629
630         try:
631             uri = self.get_extension(field)
632             self.data[field] = uri
633         except LookupError:
634             return None
635
636         return self.data[field]
637
638     ##
639     # Sign the certificate using the issuer private key and issuer subject previous set with set_issuer().
640
641     def sign(self):
642         logger.debug('certificate.sign')
643         assert self.x509 != None
644         assert self.issuerSubject != None
645         assert self.issuerKey != None
646         self.x509.set_issuer(self.issuerSubject)
647         self.x509.sign(self.issuerKey.get_openssl_pkey(), self.digest)
648
649     ##
650     # Verify the authenticity of a certificate.
651     # @param pkey is a Keypair object representing a public key. If Pkey
652     #     did not sign the certificate, then an exception will be thrown.
653
654     def verify(self, pkey):
655         # pyOpenSSL does not have a way to verify signatures
656         m2x509 = X509.load_cert_string(self.save_to_string())
657         m2pkey = pkey.get_m2_pkey()
658         # verify it
659         return m2x509.verify(m2pkey)
660
661         # XXX alternatively, if openssl has been patched, do the much simpler:
662         # try:
663         #   self.x509.verify(pkey.get_openssl_key())
664         #   return 1
665         # except:
666         #   return 0
667
668     ##
669     # Return True if pkey is identical to the public key that is contained in the certificate.
670     # @param pkey Keypair object
671
672     def is_pubkey(self, pkey):
673         return self.get_pubkey().is_same(pkey)
674
675     ##
676     # Given a certificate cert, verify that this certificate was signed by the
677     # public key contained in cert. Throw an exception otherwise.
678     #
679     # @param cert certificate object
680
681     def is_signed_by_cert(self, cert):
682         k = cert.get_pubkey()
683         result = self.verify(k)
684         return result
685
686     ##
687     # Set the parent certficiate.
688     #
689     # @param p certificate object.
690
691     def set_parent(self, p):
692         self.parent = p
693
694     ##
695     # Return the certificate object of the parent of this certificate.
696
697     def get_parent(self):
698         return self.parent
699
700     ##
701     # Verification examines a chain of certificates to ensure that each parent
702     # signs the child, and that some certificate in the chain is signed by a
703     # trusted certificate.
704     #
705     # Verification is a basic recursion: <pre>
706     #     if this_certificate was signed by trusted_certs:
707     #         return
708     #     else
709     #         return verify_chain(parent, trusted_certs)
710     # </pre>
711     #
712     # At each recursion, the parent is tested to ensure that it did sign the
713     # child. If a parent did not sign a child, then an exception is thrown. If
714     # the bottom of the recursion is reached and the certificate does not match
715     # a trusted root, then an exception is thrown.
716     # Also require that parents are CAs.
717     #
718     # @param Trusted_certs is a list of certificates that are trusted.
719     #
720
721     def verify_chain(self, trusted_certs = None):
722         # Verify a chain of certificates. Each certificate must be signed by
723         # the public key contained in it's parent. The chain is recursed
724         # until a certificate is found that is signed by a trusted root.
725
726         # verify expiration time
727         if self.x509.has_expired():
728             if debug_verify_chain:
729                 logger.debug("verify_chain: NO, Certificate %s has expired" % self.pretty_cert())
730             raise CertExpired(self.pretty_cert(), "client cert")
731
732         # if this cert is signed by a trusted_cert, then we are set
733         for trusted_cert in trusted_certs:
734             if self.is_signed_by_cert(trusted_cert):
735                 # verify expiration of trusted_cert ?
736                 if not trusted_cert.x509.has_expired():
737                     if debug_verify_chain: 
738                         logger.debug("verify_chain: YES. Cert %s signed by trusted cert %s"%(
739                             self.pretty_cert(), trusted_cert.pretty_cert()))
740                     return trusted_cert
741                 else:
742                     if debug_verify_chain:
743                         logger.debug("verify_chain: NO. Cert %s is signed by trusted_cert %s, but that signer is expired..."%(
744                             self.pretty_cert(),trusted_cert.pretty_cert()))
745                     raise CertExpired(self.pretty_cert()," signer trusted_cert %s"%trusted_cert.pretty_cert())
746
747         # if there is no parent, then no way to verify the chain
748         if not self.parent:
749             if debug_verify_chain:
750                 logger.debug("verify_chain: NO. %s has no parent and issuer %s is not in %d trusted roots"%\
751                              (self.pretty_cert(), self.get_issuer(), len(trusted_certs)))
752             raise CertMissingParent(self.pretty_cert() + \
753                                     ": Issuer %s is not one of the %d trusted roots, and cert has no parent." %\
754                                     (self.get_issuer(), len(trusted_certs)))
755
756         # if it wasn't signed by the parent...
757         if not self.is_signed_by_cert(self.parent):
758             if debug_verify_chain:
759                 logger.debug("verify_chain: NO. %s is not signed by parent %s, but by %s"%\
760                              (self.pretty_cert(), 
761                               self.parent.pretty_cert(), 
762                               self.get_issuer()))
763             raise CertNotSignedByParent("%s: Parent %s, issuer %s"\
764                                             % (self.pretty_cert(), 
765                                                self.parent.pretty_cert(),
766                                                self.get_issuer()))
767
768         # Confirm that the parent is a CA. Only CAs can be trusted as
769         # signers.
770         # Note that trusted roots are not parents, so don't need to be
771         # CAs.
772         # Ugly - cert objects aren't parsed so we need to read the
773         # extension and hope there are no other basicConstraints
774         if not self.parent.isCA and not (self.parent.get_extension('basicConstraints') == 'CA:TRUE'):
775             logger.warn("verify_chain: cert %s's parent %s is not a CA" % \
776                             (self.pretty_cert(), self.parent.pretty_cert()))
777             raise CertNotSignedByParent("%s: Parent %s not a CA" % (self.pretty_cert(),
778                                                                     self.parent.pretty_cert()))
779
780         # if the parent isn't verified...
781         if debug_verify_chain:
782             logger.debug("verify_chain: .. %s, -> verifying parent %s"%\
783                          (self.pretty_cert(),self.parent.pretty_cert()))
784         self.parent.verify_chain(trusted_certs)
785
786         return
787
788     ### more introspection
789     def get_extensions(self):
790         # pyOpenSSL does not have a way to get extensions
791         triples = []
792         m2x509 = X509.load_cert_string(self.save_to_string())
793         nb_extensions = m2x509.get_ext_count()
794         logger.debug("X509 had %d extensions"%nb_extensions)
795         for i in range(nb_extensions):
796             ext=m2x509.get_ext_at(i)
797             triples.append( (ext.get_name(), ext.get_value(), ext.get_critical(),) )
798         return triples
799
800     def get_data_names(self):
801         return self.data.keys()
802
803     def get_all_datas (self):
804         triples = self.get_extensions()
805         for name in self.get_data_names():
806             triples.append( (name,self.get_data(name),'data',) )
807         return triples
808
809     # only informative
810     def get_filename(self):
811         return getattr(self,'filename',None)
812
813     def dump (self, *args, **kwargs):
814         print self.dump_string(*args, **kwargs)
815
816     def dump_string (self,show_extensions=False):
817         result = ""
818         result += "CERTIFICATE for %s\n"%self.pretty_cert()
819         result += "Issued by %s\n"%self.get_issuer()
820         filename=self.get_filename()
821         if filename: result += "Filename %s\n"%filename
822         if show_extensions:
823             all_datas = self.get_all_datas()
824             result += " has %d extensions/data attached"%len(all_datas)
825             for (n, v, c) in all_datas:
826                 if c=='data':
827                     result += "   data: %s=%s\n"%(n,v)
828                 else:
829                     result += "    ext: %s (crit=%s)=<<<%s>>>\n"%(n,c,v)
830         return result