do not keep CSRs
[lets-encrypt-tiny.git] / letsencrypt-tiny
1 #!/usr/bin/env python3
2 ## Call with "--help" for documentation.
3
4 import argparse, configparser, itertools, stat, os, os.path, sys, subprocess, datetime
5
6 ## Helper functions
7 def readConfig(fname, defSection = 'DEFAULT'):
8     config = configparser.ConfigParser()
9     with open(fname) as file:
10         stream = itertools.chain(("["+defSection+"]\n",), file)
11         config.read_file(stream)
12     return config
13
14 def certfile(name):
15     global config
16     return os.path.join(config['dirs']['certs'], name + ".crt" )
17
18 def keyfile(name):
19     global config
20     return os.path.join(config['dirs']['keys'], name + ".key")
21
22 def csrfile(name):
23     global config
24     return os.path.join(config['dirs']['keys'], name + ".csr.tmp")
25
26 def make_backup(fname):
27     if os.path.exists(fname):
28         backupname = os.path.basename(fname) + "." + str(datetime.date.today())
29         i = 0
30         while True:
31             backupfile = os.path.join(config['dirs']['backups'], backupname + "." + str(i))
32             if not os.path.exists(backupfile):
33                 os.rename(fname, backupfile)
34                 break
35             elif i >= 100:
36                 print("Somehow it's really hard to find a name for the backup file...")
37             i += 1
38     assert not os.path.exists(fname)
39
40 def trigger_hook(hook):
41     global config
42     exe = config['hooks'][hook]
43     if exe is not None:
44         subprocess.check_call([exe])
45
46 def key_mtime(name):
47     return datetime.datetime.fromtimestamp(os.stat(keyfile(name)).st_mtime)
48
49 def cert_expiry(name):
50     from certcheck import cert_expiry_date
51     return cert_expiry_date(certfile(name))
52
53 ## The interesting work
54 def acme(name, domains):
55     global config
56     # Generating the CSR is done by a shell script
57     exe = os.path.join(os.path.dirname(__file__), 'gencsr')
58     csr = subprocess.check_output([exe, keyfile(name)] + domains)
59     with open(csrfile(name), 'wb') as file:
60         file.write(csr)
61     # call acme-tiny as a script
62     acme_tiny = os.path.join(config['acme']['acme-tiny'], 'acme_tiny.py')
63     signed_crt = subprocess.check_output(["python", acme_tiny, "--quiet", "--account-key", config['acme']['account-key'], "--csr", csrfile(name), "--acme-dir", config['acme']['challenge-dir']])
64     # save new certificate
65     make_backup(certfile(name))
66     with open(certfile(name), 'wb') as f:
67         f.write(signed_crt)
68     # clean up
69     os.remove(csrfile(name))
70
71 def request_cert(name):
72     global config
73     if not os.path.exists(keyfile(name)):
74         raise Exception("No such key: {}".format(name))
75     domains = config['DEFAULT']['domains'].split()
76     print("Obtaining certificate '{}' for domains: {}".format(name, ' '.join(domains)))
77     acme(name, domains)
78
79 def generate_key(name):
80     print("Generating new private key '{}'".format(name))
81     with subprocess.Popen(["openssl", "genrsa", str(int(config['DEFAULT']['key-length']))], stdout=subprocess.PIPE, stderr=subprocess.PIPE) as f:
82         (stdout, stderr) = f.communicate()
83         if f.returncode:
84             sys.stderr.write(stderr)
85             raise Exception("Error while generating private key")
86     # now we have a key, save it
87     make_backup(keyfile(name))
88     with open(keyfile(name), 'wb') as f:
89         f.write(stdout)
90
91 def check_staging():
92     '''Returns 0 if nothing was done, 1 if a stage key is present but has to be kept, 2 is a stage key was unstaged.'''
93     live = config['files']['live']
94     staging = config['files'].get('staging')
95     if staging is None or not os.path.exists(keyfile(staging)):
96         return 0
97     
98     staging_time = datetime.timedelta(hours = int(config['timing']['staging-hours']))
99     key_age = datetime.datetime.now() - key_mtime(staging)
100     if key_age < staging_time:
101         return 1
102     print("Unstaging '{}' to '{}'".format(staging, live))
103     # unstage the key!
104     make_backup(keyfile(live))
105     os.rename(keyfile(staging), keyfile(live))
106     make_backup(certfile(live))
107     os.rename(certfile(staging), certfile(live))
108     return 2
109
110 def auto_renewal():
111     '''Returns 0 if nothing was done, 1 if only certs were changed, 2 if certs and keys were changed.'''
112     live = config['files']['live']
113     staging = config['files'].get('staging')
114     
115     max_key_age = datetime.timedelta(days = int(config['timing']['max-key-age-days']))
116     renew_cert_time = datetime.timedelta(days = int(config['timing']['renew-cert-before-expiry-days']))
117     
118     # determine what to do
119     now = datetime.datetime.now()
120     key_age = now - key_mtime(live)
121     cert_validity = cert_expiry(live) - now
122     need_new_key = key_age >= max_key_age
123     need_new_cert = cert_validity <= renew_cert_time
124     if need_new_cert and key_age + renew_cert_time >= max_key_age:
125         # We are about to request a new certificate, and within <renew_cert_time>, we need a new key: Get the new key now
126         need_new_key = True
127     
128     # Do it
129     if need_new_key:
130         new_key_name = (live if staging is None else staging)
131         generate_key(new_key_name)
132         request_cert(new_key_name)
133         return 2
134     elif need_new_cert:
135         request_cert(live)
136         return 1
137     else:
138         return 0
139
140 ## Main
141 if __name__ == "__main__":
142     # allow overwriting some values on the command-line
143     parser = argparse.ArgumentParser(description='Generate and (automatically) renew certificates, optionally providing staging for new keys')
144     parser.add_argument("-c", "--config",
145                         dest="config",
146                         help="The configuration file")
147     parser.add_argument("-k", "--hooks",
148                         dest="hooks", action="store_true",
149                         help="Trigger hooks.")
150     parser.add_argument("action", metavar='ACTION', nargs=1,
151                         help="The action to perform. Possible values: init, renew, cron")
152     args = parser.parse_args()
153     
154     # read config
155     if not os.path.isfile(args.config):
156         raise Exception("The config file does not exist: "+args.config)
157     global config
158     config = readConfig(args.config)
159     
160     if args.action[0] == 'renew':
161         live = config['files']['live']
162         staging = config['files'].get('staging')
163         
164         request_cert(live)
165         if staging is not None and os.path.exists(keyfile(staging)):
166             request_cert(staging)
167         # trigger the "new cert" hook
168         if args.hooks:
169             trigger_hook('post-certchange')
170     elif args.action[0] == 'cron':
171         # First, check if we need to unstage a staging key
172         unstaged = check_staging()
173         if unstaged >= 1:
174             # A staging eky is present, do *not* check for renewal
175             if unstaged >= 2 and args.hooks:
176                 # trigger all the hooks
177                 trigger_hook('post-certchange')
178                 trigger_hook('post-keychange')
179         else:
180             # Check if we need to renew anything
181             renewed = auto_renewal()
182             if args.hooks:
183                 if renewed >= 1:
184                     trigger_hook('post-certchange')
185                 if renewed >= 2:
186                     trigger_hook('post-keychange')
187     elif args.action[0] == 'init':
188         # create directories with appropriate permissions
189         try:
190             os.makedirs(config['dirs']['certs'], mode = 0o755, exist_ok = True)
191             os.makedirs(config['dirs']['keys'], mode = 0o710, exist_ok = True)
192             os.makedirs(config['dirs']['csrs'], mode = 0o755, exist_ok = True)
193             os.makedirs(config['dirs']['backups'], mode = 0o700, exist_ok = True)
194         except OSError:
195             pass
196         # if necessary, generate key + certificate
197         live = config['files']['live']
198         if not os.path.exists(keyfile(live)):
199             generate_key(live)
200             request_cert(live)
201             if args.hooks:
202                 trigger_hook('post-certchange')
203                 trigger_hook('post-keychange')
204     else:
205         raise Exception("Unknown action {}".format(args.action))